diff -Nru geany-plugins-1.24.0+20140222+git/aclocal.m4 geany-plugins-1.24.1+dfsg/aclocal.m4 --- geany-plugins-1.24.0+20140222+git/aclocal.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/aclocal.m4 2014-04-13 17:12:38.000000000 +0000 @@ -0,0 +1,1245 @@ +# generated automatically by aclocal 1.14.1 -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. + +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, +[m4_warning([this file was generated for autoconf 2.69. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically 'autoreconf'.])]) + +# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.14' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.14.1], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.14.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is '.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ([2.52])dnl + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], + [$1], [CXX], [depcc="$CXX" am_compiler_list=], + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], + [$1], [UPC], [depcc="$UPC" am_compiler_list=], + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE([dependency-tracking], [dnl +AS_HELP_STRING( + [--enable-dependency-tracking], + [do not reject slow dependency extractors]) +AS_HELP_STRING( + [--disable-dependency-tracking], + [speeds up one-time build])]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each '.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. +m4_define([AC_PROG_CC], +m4_defn([AC_PROG_CC]) +[_AM_PROG_CC_C_O +]) + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.65])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[AC_DIAGNOSE([obsolete], + [$0: two- and three-arguments forms are deprecated.]) +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if( + m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), + [ok:ok],, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +AM_MISSING_PROG([AUTOCONF], [autoconf]) +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +AM_MISSING_PROG([AUTOHEADER], [autoheader]) +AM_MISSING_PROG([MAKEINFO], [makeinfo]) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES([CC])], + [m4_define([AC_PROG_CC], + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES([CXX])], + [m4_define([AC_PROG_CXX], + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES([OBJC])], + [m4_define([AC_PROG_OBJC], + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], + [_AM_DEPENDENCIES([OBJCXX])], + [m4_define([AC_PROG_OBJCXX], + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl +]) +AC_REQUIRE([AM_SILENT_RULES])dnl +dnl The testsuite driver may need to know about EXEEXT, so add the +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: . + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) + fi +fi]) + +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST([install_sh])]) + +# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it is modern enough. +# If it is, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + AC_MSG_WARN(['missing' script is too old or missing]) +fi +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_CC_C_O +# --------------- +# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC +# to automatically call this. +AC_DEFUN([_AM_PROG_CC_C_O], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +AC_LANG_PUSH([C])dnl +AC_CACHE_CHECK( + [whether $CC understands -c and -o together], + [am_cv_prog_cc_c_o], + [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i]) +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +AC_LANG_POP([C])]) + +# For backward compatibility. +AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi + if test "$[2]" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT([yes]) +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi +AC_CONFIG_COMMANDS_PRE( + [AC_MSG_CHECKING([that generated files are newer than configure]) + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + AC_MSG_RESULT([done])]) +rm -f conftest.file +]) + +# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# ("yes" being less verbose, "no" or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], [dnl +AS_HELP_STRING( + [--enable-silent-rules], + [less verbose build output (undo: "make V=1")]) +AS_HELP_STRING( + [--disable-silent-rules], + [verbose build output (undo: "make V=0")])dnl +]) +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +dnl +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor 'install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in "make install-strip", and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of 'v7', 'ustar', or 'pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +# +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' + +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + + [m4_case([$1], + [ustar], + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) + if test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) + if test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi], + + [pax], + [], + + [m4_fatal([Unknown tar format])]) + + AC_MSG_CHECKING([how to create a $1 tar archive]) + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_$1-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +# Autoconf support for the Vala compiler + +# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the Vala compiler exists in $PATH. If it is found, the +# variable VALAC is set pointing to its absolute path. Otherwise, it is +# simply set to 'valac'. +# Optionally a minimum release number of the compiler can be requested. +# If the ACTION-IF-FOUND parameter is given, it will be run if a proper +# Vala compiler is found. +# Similarly, if the ACTION-IF-FOUND is given, it will be run if no proper +# Vala compiler is found. It defaults to simply print a warning about the +# situation, but otherwise proceeding with the configuration. +# +# AM_PROG_VALAC([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# -------------------------------------------------------------------------- +AC_DEFUN([AM_PROG_VALAC], + [AC_PATH_PROG([VALAC], [valac], [valac]) + AS_IF([test "$VALAC" != valac && test -n "$1"], + [AC_MSG_CHECKING([whether $VALAC is at least version $1]) + am__vala_version=`$VALAC --version | sed 's/Vala *//'` + AS_VERSION_COMPARE([$1], ["$am__vala_version"], + [AC_MSG_RESULT([yes])], + [AC_MSG_RESULT([yes])], + [AC_MSG_RESULT([no]) + VALAC=valac])]) + if test "$VALAC" = valac; then + m4_default([$3], + [AC_MSG_WARN([no proper vala compiler found]) + AC_MSG_WARN([you will not be able to compile vala source files])]) + else + m4_default([$2], [:]) + fi]) + +m4_include([geanypy/m4/ax_python_library.m4]) +m4_include([build/bundled/gpgme.m4]) +m4_include([build/addons.m4]) +m4_include([build/autoclose.m4]) +m4_include([build/cflags.m4]) +m4_include([build/codenav.m4]) +m4_include([build/commander.m4]) +m4_include([build/common.m4]) +m4_include([build/cppcheck.m4]) +m4_include([build/debugger.m4]) +m4_include([build/defineformat.m4]) +m4_include([build/devhelp.m4]) +m4_include([build/expansions.m4]) +m4_include([build/geany.m4]) +m4_include([build/geanydoc.m4]) +m4_include([build/geanyextrasel.m4]) +m4_include([build/geanygendoc.m4]) +m4_include([build/geanyinsertnum.m4]) +m4_include([build/geanylatex.m4]) +m4_include([build/geanylipsum.m4]) +m4_include([build/geanylua.m4]) +m4_include([build/geanymacro.m4]) +m4_include([build/geanyminiscript.m4]) +m4_include([build/geanynumberedbookmarks.m4]) +m4_include([build/geanypg.m4]) +m4_include([build/geanyprj.m4]) +m4_include([build/geanypy.m4]) +m4_include([build/geanysendmail.m4]) +m4_include([build/geanyvc.m4]) +m4_include([build/geniuspaste.m4]) +m4_include([build/gproject.m4]) +m4_include([build/gtk.m4]) +m4_include([build/i18n.m4]) +m4_include([build/markdown.m4]) +m4_include([build/multiterm.m4]) +m4_include([build/pairtaghighlighter.m4]) +m4_include([build/pohelper.m4]) +m4_include([build/pretty-printer.m4]) +m4_include([build/scope.m4]) +m4_include([build/shiftcolumn.m4]) +m4_include([build/spellcheck.m4]) +m4_include([build/status.m4]) +m4_include([build/tableconvert.m4]) +m4_include([build/treebrowser.m4]) +m4_include([build/unittests.m4]) +m4_include([build/updatechecker.m4]) +m4_include([build/webhelper.m4]) +m4_include([build/xmlsnippets.m4]) +m4_include([build/cache/ax_python_devel.m4]) +m4_include([build/cache/glib-gettext.m4]) +m4_include([build/cache/intltool.m4]) +m4_include([build/cache/libtool.m4]) +m4_include([build/cache/ltoptions.m4]) +m4_include([build/cache/ltsugar.m4]) +m4_include([build/cache/ltversion.m4]) +m4_include([build/cache/lt~obsolete.m4]) +m4_include([build/cache/nls.m4]) +m4_include([build/cache/pkg.m4]) diff -Nru geany-plugins-1.24.0+20140222+git/addons/Makefile.in geany-plugins-1.24.1+dfsg/addons/Makefile.in --- geany-plugins-1.24.0+20140222+git/addons/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = addons +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = addons +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign addons/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign addons/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/addons/src/addons.c geany-plugins-1.24.1+dfsg/addons/src/addons.c --- geany-plugins-1.24.0+20140222+git/addons/src/addons.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/src/addons.c 2014-04-12 14:28:39.000000000 +0000 @@ -504,7 +504,7 @@ _("Whether to show the tasks of all open documents in the list or only those of the current document.")); entry_tasks_tokens = gtk_entry_new(); - if (NZV(ao_info->tasks_token_list)) + if (!EMPTY(ao_info->tasks_token_list)) gtk_entry_set_text(GTK_ENTRY(entry_tasks_tokens), ao_info->tasks_token_list); ui_entry_add_clear_icon(GTK_ENTRY(entry_tasks_tokens)); ui_widget_set_tooltip_text(entry_tasks_tokens, diff -Nru geany-plugins-1.24.0+20140222+git/addons/src/ao_bookmarklist.c geany-plugins-1.24.1+dfsg/addons/src/ao_bookmarklist.c --- geany-plugins-1.24.0+20140222+git/addons/src/ao_bookmarklist.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/src/ao_bookmarklist.c 2014-04-12 14:28:39.000000000 +0000 @@ -178,7 +178,7 @@ AoBookmarkListPrivate *priv = AO_BOOKMARK_LIST_GET_PRIVATE(bm); line = g_strstrip(sci_get_line(sci, line_nr)); - if (! NZV(line)) + if (EMPTY(line)) line = g_strdup(_("(Empty Line)")); tooltip = g_markup_escape_text(line, -1); diff -Nru geany-plugins-1.24.0+20140222+git/addons/src/ao_openuri.c geany-plugins-1.24.1+dfsg/addons/src/ao_openuri.c --- geany-plugins-1.24.0+20140222+git/addons/src/ao_openuri.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/src/ao_openuri.c 2014-04-12 14:28:39.000000000 +0000 @@ -129,7 +129,7 @@ { AoOpenUriPrivate *priv = AO_OPEN_URI_GET_PRIVATE(self); - if (NZV(priv->uri)) + if (!EMPTY(priv->uri)) utils_open_browser(priv->uri); } @@ -139,7 +139,7 @@ { AoOpenUriPrivate *priv = AO_OPEN_URI_GET_PRIVATE(self); - if (NZV(priv->uri)) + if (!EMPTY(priv->uri)) gtk_clipboard_set_text(gtk_clipboard_get(gdk_atom_intern("CLIPBOARD", FALSE)), priv->uri, -1); } diff -Nru geany-plugins-1.24.0+20140222+git/addons/src/ao_tasks.c geany-plugins-1.24.1+dfsg/addons/src/ao_tasks.c --- geany-plugins-1.24.0+20140222+git/addons/src/ao_tasks.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/src/ao_tasks.c 2014-04-12 14:28:39.000000000 +0000 @@ -127,7 +127,7 @@ case PROP_TOKENS: { const gchar *t = g_value_get_string(value); - if (! NZV(t)) + if (EMPTY(t)) t = "TODO;FIXME"; /* fallback */ g_strfreev(priv->tokens); priv->tokens = g_strsplit(t, ";", -1); @@ -573,14 +573,14 @@ token = priv->tokens; while (*token != NULL) { - if (NZV(*token) && (task_start = strstr(line_buf, *token)) != NULL) + if (!EMPTY(*token) && (task_start = strstr(line_buf, *token)) != NULL) { /* skip the token and additional whitespace */ task_start += strlen(*token); while (*task_start == ' ' || *task_start == ':') task_start++; /* reset task_start in case there is no text following */ - if (! NZV(task_start)) + if (EMPTY(task_start)) task_start = line_buf; /* create the task */ create_task(t, doc, line, *token, line_buf, task_start, display_name); diff -Nru geany-plugins-1.24.0+20140222+git/addons/src/Makefile.in geany-plugins-1.24.1+dfsg/addons/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/addons/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/addons/src/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,834 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = addons/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +addons_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_addons_la_OBJECTS = addons.lo ao_blanklines.lo ao_doclist.lo \ + ao_openuri.lo ao_systray.lo ao_bookmarklist.lo ao_markword.lo \ + ao_tasks.lo ao_xmltagging.lo ao_wrapwords.lo +addons_la_OBJECTS = $(am_addons_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(addons_la_SOURCES) +DIST_SOURCES = $(addons_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = addons.la +addons_la_SOURCES = \ + addons.h \ + ao_blanklines.h \ + ao_doclist.h \ + ao_openuri.h \ + ao_systray.h \ + ao_bookmarklist.h \ + ao_markword.h \ + ao_tasks.h \ + ao_xmltagging.h \ + ao_wrapwords.h \ + addons.c \ + ao_blanklines.c \ + ao_doclist.c \ + ao_openuri.c \ + ao_systray.c \ + ao_bookmarklist.c \ + ao_markword.c \ + ao_tasks.c \ + ao_xmltagging.c \ + ao_wrapwords.c + +addons_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign addons/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign addons/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +addons.la: $(addons_la_OBJECTS) $(addons_la_DEPENDENCIES) $(EXTRA_addons_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(addons_la_OBJECTS) $(addons_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/addons.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_blanklines.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_bookmarklist.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_doclist.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_markword.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_openuri.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_systray.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_tasks.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_wrapwords.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ao_xmltagging.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/autoclose/Makefile.in geany-plugins-1.24.1+dfsg/autoclose/Makefile.in --- geany-plugins-1.24.0+20140222+git/autoclose/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/autoclose/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = autoclose +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = autoclose +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign autoclose/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign autoclose/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/autoclose/src/autoclose.c geany-plugins-1.24.1+dfsg/autoclose/src/autoclose.c --- geany-plugins-1.24.0+20140222+git/autoclose/src/autoclose.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/autoclose/src/autoclose.c 2014-04-13 13:33:33.000000000 +0000 @@ -87,6 +87,7 @@ static AutocloseInfo *ac_info = NULL; typedef struct { + gulong notify_handler[2]; /* used to place the caret after autoclosed items on tab (similar to eclipse) */ gint jump_on_tab; /* used to reset jump_on_tab when needed */ @@ -799,6 +800,7 @@ data->last_line = new_line; } + static void on_document_open(GObject *obj, GeanyDocument *doc, gpointer user_data) { @@ -808,15 +810,41 @@ sci = doc->editor->sci; data = g_new0(AutocloseUserData, 1); + g_return_if_fail(data); data->doc = doc; - plugin_signal_connect(geany_plugin, G_OBJECT(sci), "sci-notify", - FALSE, G_CALLBACK(on_sci_notify), data); - plugin_signal_connect(geany_plugin, G_OBJECT(sci), "key-press-event", - FALSE, G_CALLBACK(on_key_press), data); + data->notify_handler[0] = g_signal_connect(G_OBJECT(sci), "sci-notify", + G_CALLBACK(on_sci_notify), data); + data->notify_handler[1] = g_signal_connect(G_OBJECT(sci), "key-press-event", + G_CALLBACK(on_key_press), data); /* This will free the data when the sci is destroyed */ g_object_set_data_full(G_OBJECT(sci), "autoclose-userdata", data, g_free); } +static void +autoclose_handlers_cleanup(void) +{ + gint i; + + foreach_document(i) + { + gint j; + gpointer data; + ScintillaObject *sci; + AutocloseUserData *autoclose_data; + + sci = documents[i]->editor->sci; + data = g_object_get_data(G_OBJECT(sci), "autoclose-userdata"); + if(!data) + continue; + autoclose_data = (AutocloseUserData*)data; + for(j = 0; j < 2; j++) + { + gulong handler = autoclose_data->notify_handler[j]; + g_signal_handler_disconnect(sci, handler); + } + } +} + PluginCallback plugin_callbacks[] = { { "document-open", (GCallback) &on_document_open, FALSE, NULL }, @@ -885,7 +913,7 @@ void plugin_init(G_GNUC_UNUSED GeanyData *data) { - int i; + guint i; foreach_document(i) { on_document_open(NULL, documents[i], NULL); @@ -1100,6 +1128,7 @@ void plugin_cleanup(void) { + autoclose_handlers_cleanup(); g_free(ac_info->config_file); g_free(ac_info); } diff -Nru geany-plugins-1.24.0+20140222+git/autoclose/src/Makefile.in geany-plugins-1.24.1+dfsg/autoclose/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/autoclose/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/autoclose/src/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = autoclose/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +autoclose_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_autoclose_la_OBJECTS = autoclose.lo +autoclose_la_OBJECTS = $(am_autoclose_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(autoclose_la_SOURCES) +DIST_SOURCES = $(autoclose_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = autoclose.la +autoclose_la_SOURCES = autoclose.c +autoclose_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign autoclose/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign autoclose/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +autoclose.la: $(autoclose_la_OBJECTS) $(autoclose_la_DEPENDENCIES) $(EXTRA_autoclose_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(autoclose_la_OBJECTS) $(autoclose_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/autoclose.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/autogen.sh geany-plugins-1.24.1+dfsg/autogen.sh --- geany-plugins-1.24.0+20140222+git/autogen.sh 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -#!/bin/sh -e - -mkdir -p build/cache -intltoolize -c -f -autoreconf -vfi - -if [ "$NOCONFIGURE" = 1 ]; then - echo "Done. configure skipped." - exit 0; -fi -exec ./configure "$@" diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/ax_python_devel.m4 geany-plugins-1.24.1+dfsg/build/cache/ax_python_devel.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/ax_python_devel.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/ax_python_devel.m4 2014-04-13 17:12:30.000000000 +0000 @@ -0,0 +1,324 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_python_devel.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_PYTHON_DEVEL([version]) +# +# DESCRIPTION +# +# Note: Defines as a precious variable "PYTHON_VERSION". Don't override it +# in your configure.ac. +# +# This macro checks for Python and tries to get the include path to +# 'Python.h'. It provides the $(PYTHON_CPPFLAGS) and $(PYTHON_LDFLAGS) +# output variables. It also exports $(PYTHON_EXTRA_LIBS) and +# $(PYTHON_EXTRA_LDFLAGS) for embedding Python in your code. +# +# You can search for some particular version of Python by passing a +# parameter to this macro, for example ">= '2.3.1'", or "== '2.4'". Please +# note that you *have* to pass also an operator along with the version to +# match, and pay special attention to the single quotes surrounding the +# version number. Don't use "PYTHON_VERSION" for this: that environment +# variable is declared as precious and thus reserved for the end-user. +# +# This macro should work for all versions of Python >= 2.1.0. As an end +# user, you can disable the check for the python version by setting the +# PYTHON_NOVERSIONCHECK environment variable to something else than the +# empty string. +# +# If you need to use this macro for an older Python version, please +# contact the authors. We're always open for feedback. +# +# LICENSE +# +# Copyright (c) 2009 Sebastian Huber +# Copyright (c) 2009 Alan W. Irwin +# Copyright (c) 2009 Rafael Laboissiere +# Copyright (c) 2009 Andrew Collier +# Copyright (c) 2009 Matteo Settenvini +# Copyright (c) 2009 Horst Knorr +# Copyright (c) 2013 Daniel Mullner +# +# 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 3 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, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 16 + +AU_ALIAS([AC_PYTHON_DEVEL], [AX_PYTHON_DEVEL]) +AC_DEFUN([AX_PYTHON_DEVEL],[ + # + # Allow the use of a (user set) custom python version + # + AC_ARG_VAR([PYTHON_VERSION],[The installed Python + version to use, for example '2.3'. This string + will be appended to the Python interpreter + canonical name.]) + + AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]]) + if test -z "$PYTHON"; then + AC_MSG_ERROR([Cannot find python$PYTHON_VERSION in your system path]) + PYTHON_VERSION="" + fi + + # + # Check for a version of Python >= 2.1.0 + # + AC_MSG_CHECKING([for a version of Python >= '2.1.0']) + ac_supports_python_ver=`$PYTHON -c "import sys; \ + ver = sys.version.split ()[[0]]; \ + print (ver >= '2.1.0')"` + if test "$ac_supports_python_ver" != "True"; then + if test -z "$PYTHON_NOVERSIONCHECK"; then + AC_MSG_RESULT([no]) + AC_MSG_FAILURE([ +This version of the AC@&t@_PYTHON_DEVEL macro +doesn't work properly with versions of Python before +2.1.0. You may need to re-run configure, setting the +variables PYTHON_CPPFLAGS, PYTHON_LDFLAGS, PYTHON_SITE_PKG, +PYTHON_EXTRA_LIBS and PYTHON_EXTRA_LDFLAGS by hand. +Moreover, to disable this check, set PYTHON_NOVERSIONCHECK +to something else than an empty string. +]) + else + AC_MSG_RESULT([skip at user request]) + fi + else + AC_MSG_RESULT([yes]) + fi + + # + # if the macro parameter ``version'' is set, honour it + # + if test -n "$1"; then + AC_MSG_CHECKING([for a version of Python $1]) + ac_supports_python_ver=`$PYTHON -c "import sys; \ + ver = sys.version.split ()[[0]]; \ + print (ver $1)"` + if test "$ac_supports_python_ver" = "True"; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + AC_MSG_ERROR([this package requires Python $1. +If you have it installed, but it isn't the default Python +interpreter in your system path, please pass the PYTHON_VERSION +variable to configure. See ``configure --help'' for reference. +]) + PYTHON_VERSION="" + fi + fi + + # + # Check if you have distutils, else fail + # + AC_MSG_CHECKING([for the distutils Python package]) + ac_distutils_result=`$PYTHON -c "import distutils" 2>&1` + if test -z "$ac_distutils_result"; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + AC_MSG_ERROR([cannot import Python module "distutils". +Please check your Python installation. The error was: +$ac_distutils_result]) + PYTHON_VERSION="" + fi + + # + # Check for Python include path + # + AC_MSG_CHECKING([for Python include path]) + if test -z "$PYTHON_CPPFLAGS"; then + python_path=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_inc ());"` + plat_python_path=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_inc (plat_specific=1));"` + if test -n "${python_path}"; then + if test "${plat_python_path}" != "${python_path}"; then + python_path="-I$python_path -I$plat_python_path" + else + python_path="-I$python_path" + fi + fi + PYTHON_CPPFLAGS=$python_path + fi + AC_MSG_RESULT([$PYTHON_CPPFLAGS]) + AC_SUBST([PYTHON_CPPFLAGS]) + + # + # Check for Python library path + # + AC_MSG_CHECKING([for Python library path]) + if test -z "$PYTHON_LDFLAGS"; then + # (makes two attempts to ensure we've got a version number + # from the interpreter) + ac_python_version=`cat<]], + [[Py_Initialize();]]) + ],[pythonexists=yes],[pythonexists=no]) + AC_LANG_POP([C]) + # turn back to default flags + CPPFLAGS="$ac_save_CPPFLAGS" + LIBS="$ac_save_LIBS" + + AC_MSG_RESULT([$pythonexists]) + + if test ! "x$pythonexists" = "xyes"; then + AC_MSG_FAILURE([ + Could not link test program to Python. Maybe the main Python library has been + installed in some non-standard library path. If so, pass it to configure, + via the LDFLAGS environment variable. + Example: ./configure LDFLAGS="-L/usr/non-standard-path/python/lib" + ============================================================================ + ERROR! + You probably have to install the development version of the Python package + for your distribution. The exact name of this package varies among them. + ============================================================================ + ]) + PYTHON_VERSION="" + fi + + # + # all done! + # +]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/glib-gettext.m4 geany-plugins-1.24.1+dfsg/build/cache/glib-gettext.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/glib-gettext.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/glib-gettext.m4 2014-04-13 17:12:30.000000000 +0000 @@ -0,0 +1,435 @@ +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, Inc. +# +# This file is free software, distributed under the terms of the GNU +# General Public License. As a special exception to the GNU General +# Public License, this file may be distributed as part of a program +# that contains a configuration script generated by Autoconf, under +# the same distribution terms as the rest of that program. +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# +# Macro to add for using GNU gettext. +# Ulrich Drepper , 1995, 1996 +# +# Modified to never use included libintl. +# Owen Taylor , 12/15/1998 +# +# Major rework to remove unused code +# Owen Taylor , 12/11/2002 +# +# Added better handling of ALL_LINGUAS from GNU gettext version +# written by Bruno Haible, Owen Taylor 5/30/3002 +# +# Modified to require ngettext +# Matthias Clasen 08/06/2004 +# +# We need this here as well, since someone might use autoconf-2.5x +# to configure GLib then an older version to configure a package +# using AM_GLIB_GNU_GETTEXT +AC_PREREQ(2.53) + +dnl +dnl We go to great lengths to make sure that aclocal won't +dnl try to pull in the installed version of these macros +dnl when running aclocal in the glib directory. +dnl +m4_copy([AC_DEFUN],[glib_DEFUN]) +m4_copy([AC_REQUIRE],[glib_REQUIRE]) +dnl +dnl At the end, if we're not within glib, we'll define the public +dnl definitions in terms of our private definitions. +dnl + +# GLIB_LC_MESSAGES +#-------------------- +glib_DEFUN([GLIB_LC_MESSAGES], + [AC_CHECK_HEADERS([locale.h]) + if test $ac_cv_header_locale_h = yes; then + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include ], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your file defines LC_MESSAGES.]) + fi + fi]) + +# GLIB_PATH_PROG_WITH_TEST +#---------------------------- +dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl +]) + +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, + [AC_TRY_LINK([ +#include +], + [return !ngettext ("","", 1)], + gt_cv_func_ngettext_libc=yes, + gt_cv_func_ngettext_libc=no) + ]) + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, + [AC_TRY_LINK([ +#include +], + [return !dgettext ("","")], + gt_cv_func_dgettext_libc=yes, + gt_cv_func_dgettext_libc=no) + ]) + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CHECK_FUNCS(bind_textdomain_codeset) + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) + AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], + :,-liconv) + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + AC_CHECK_FUNCS(bind_textdomain_codeset) + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + AC_DEFINE(HAVE_GETTEXT,1, + [Define if the GNU gettext() function is already present or preinstalled.]) + GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + AC_CHECK_FUNCS(dcgettext) + MSGFMT_OPTS= + AC_MSG_CHECKING([if msgfmt accepts -c]) + GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test \n" +"Language-Team: C \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) + AC_SUBST(MSGFMT_OPTS) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr], + [CATOBJEXT=.gmo + DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share and + dnl and CATOBJEXT=.gmo in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo + DATADIRNAME=lib]) + ;; + *-*-openbsd*) + CATOBJEXT=.mo + DATADIRNAME=share + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + ]) + + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) + fi + + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is not GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) + + dnl These rules are solely for the distribution goal. While doing this + dnl we only have to keep exactly one list of the available catalogs + dnl in configure.ac. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + dnl Make all variables we use known to autoconf. + AC_SUBST(CATALOGS) + AC_SUBST(CATOBJEXT) + AC_SUBST(DATADIRNAME) + AC_SUBST(GMOFILES) + AC_SUBST(INSTOBJEXT) + AC_SUBST(INTLLIBS) + AC_SUBST(PO_IN_DATADIR_TRUE) + AC_SUBST(PO_IN_DATADIR_FALSE) + AC_SUBST(POFILES) + AC_SUBST(POSUB) + ]) + +# AM_GLIB_GNU_GETTEXT +# ------------------- +# Do checks necessary for use of gettext. If a suitable implementation +# of gettext is found in either in libintl or in the C library, +# it will set INTLLIBS to the libraries needed for use of gettext +# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +# on various variables needed by the Makefile.in.in installed by +# glib-gettextize. +dnl +glib_DEFUN([GLIB_GNU_GETTEXT], + [AC_REQUIRE([AC_PROG_CC])dnl + + GLIB_LC_MESSAGES + GLIB_WITH_NLS + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + AC_MSG_CHECKING(for catalogs to be installed) + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + AC_MSG_RESULT($LINGUAS) + fi + + dnl Construct list of names of catalog files to be constructed. + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) + + dnl Generate list of files to be processed by xgettext which will + dnl be included in po/Makefile. + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + ]) + +# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +# ------------------------------- +# Define VARIABLE to the location where catalog files will +# be installed by po/Makefile. +glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +glib_save_prefix="$prefix" +glib_save_exec_prefix="$exec_prefix" +glib_save_datarootdir="$datarootdir" +test "x$prefix" = xNONE && prefix=$ac_default_prefix +test "x$exec_prefix" = xNONE && exec_prefix=$prefix +datarootdir=`eval echo "${datarootdir}"` +if test "x$CATOBJEXT" = "x.mo" ; then + localedir=`eval echo "${libdir}/locale"` +else + localedir=`eval echo "${datadir}/locale"` +fi +prefix="$glib_save_prefix" +exec_prefix="$glib_save_exec_prefix" +datarootdir="$glib_save_datarootdir" +AC_DEFINE_UNQUOTED($1, "$localedir", + [Define the location where the catalogs will be installed]) +]) + +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_ac,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl + +# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) +# +# Create a temporary file with TEST-FILE as its contents and pass the +# file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with +# 0 and perform ACTION-IF-FAIL for any other exit status. +AC_DEFUN([GLIB_RUN_PROG], +[cat >conftest.foo <<_ACEOF +$2 +_ACEOF +if AC_RUN_LOG([$1 conftest.foo]); then + m4_ifval([$3], [$3], [:]) +m4_ifvaln([$4], [else $4])dnl +echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD +sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD +fi]) + diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/intltool.m4 geany-plugins-1.24.1+dfsg/build/cache/intltool.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/intltool.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/intltool.m4 2014-04-13 17:12:24.000000000 +0000 @@ -0,0 +1,237 @@ +## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*- +## Copyright (C) 2001 Eazel, Inc. +## Author: Maciej Stachowiak +## Kenneth Christiansen +## +## 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +## +## As a special exception to the GNU General Public License, if you +## distribute this file as part of a program that contains a +## configuration script generated by Autoconf, you may include it under +## the same distribution terms that you use for the rest of that program. + +dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) +# serial 42 IT_PROG_INTLTOOL +AC_DEFUN([IT_PROG_INTLTOOL], [ +AC_PREREQ([2.50])dnl +AC_REQUIRE([AM_NLS])dnl + +case "$am__api_version" in + 1.[01234]) + AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) + ;; + *) + ;; +esac + +INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` +INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` +INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` +if test -n "$1"; then + AC_MSG_CHECKING([for intltool >= $1]) + AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || + AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) +fi + +AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) +AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) +AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) +if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then + AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) +fi + +if test -z "$AM_DEFAULT_VERBOSITY"; then + AM_DEFAULT_VERBOSITY=1 +fi +AC_SUBST([AM_DEFAULT_VERBOSITY]) + +INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' +INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' +INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' +AC_SUBST(INTLTOOL_V_MERGE) +AC_SUBST(INTLTOOL__v_MERGE_) +AC_SUBST(INTLTOOL__v_MERGE_0) + +INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' +intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' +intltool__v_merge_options_0='-q' +AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) +AC_SUBST(intltool__v_merge_options_) +AC_SUBST(intltool__v_merge_options_0) + + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@' + INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@' +else + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir' +fi + INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + +_IT_SUBST(INTLTOOL_DESKTOP_RULE) +_IT_SUBST(INTLTOOL_DIRECTORY_RULE) +_IT_SUBST(INTLTOOL_KEYS_RULE) +_IT_SUBST(INTLTOOL_PROP_RULE) +_IT_SUBST(INTLTOOL_OAF_RULE) +_IT_SUBST(INTLTOOL_PONG_RULE) +_IT_SUBST(INTLTOOL_SERVER_RULE) +_IT_SUBST(INTLTOOL_SHEET_RULE) +_IT_SUBST(INTLTOOL_SOUNDLIST_RULE) +_IT_SUBST(INTLTOOL_UI_RULE) +_IT_SUBST(INTLTOOL_XAM_RULE) +_IT_SUBST(INTLTOOL_KBD_RULE) +_IT_SUBST(INTLTOOL_XML_RULE) +_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) +_IT_SUBST(INTLTOOL_CAVES_RULE) +_IT_SUBST(INTLTOOL_SCHEMAS_RULE) +_IT_SUBST(INTLTOOL_THEME_RULE) +_IT_SUBST(INTLTOOL_SERVICE_RULE) +_IT_SUBST(INTLTOOL_POLICY_RULE) + +# Check the gettext tools to make sure they are GNU +AC_PATH_PROG(XGETTEXT, xgettext) +AC_PATH_PROG(MSGMERGE, msgmerge) +AC_PATH_PROG(MSGFMT, msgfmt) +AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) +if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then + AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) +fi +xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" +mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" +mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" +if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then + AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) +fi + +AC_PATH_PROG(INTLTOOL_PERL, perl) +if test -z "$INTLTOOL_PERL"; then + AC_MSG_ERROR([perl not found]) +fi +AC_MSG_CHECKING([for perl >= 5.8.1]) +$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 +if test $? -ne 0; then + AC_MSG_ERROR([perl 5.8.1 is required for intltool]) +else + IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` + AC_MSG_RESULT([$IT_PERL_VERSION]) +fi +if test "x$2" != "xno-xml"; then + AC_MSG_CHECKING([for XML::Parser]) + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + AC_MSG_RESULT([ok]) + else + AC_MSG_ERROR([XML::Parser perl module is required for intltool]) + fi +fi + +# Substitute ALL_LINGUAS so we can use it in po/Makefile +AC_SUBST(ALL_LINGUAS) + +# Set DATADIRNAME correctly if it is not set yet +# (copied from glib-gettext.m4) +if test -z "$DATADIRNAME"; then + AC_LINK_IFELSE( + [AC_LANG_PROGRAM([[]], + [[extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr]])], + [DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share + dnl in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [DATADIRNAME=share], [DATADIRNAME=lib]) + ;; + *) + [DATADIRNAME=lib] + ;; + esac]) +fi +AC_SUBST(DATADIRNAME) + +IT_PO_SUBDIR([po]) + +]) + + +# IT_PO_SUBDIR(DIRNAME) +# --------------------- +# All po subdirs have to be declared with this macro; the subdir "po" is +# declared by IT_PROG_INTLTOOL. +# +AC_DEFUN([IT_PO_SUBDIR], +[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. +dnl +dnl The following CONFIG_COMMANDS should be executed at the very end +dnl of config.status. +AC_CONFIG_COMMANDS_PRE([ + AC_CONFIG_COMMANDS([$1/stamp-it], [ + if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then + AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) + fi + rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" + >"$1/stamp-it.tmp" + [sed '/^#/d + s/^[[].*] *// + /^[ ]*$/d + '"s|^| $ac_top_srcdir/|" \ + "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" + ] + [sed '/^POTFILES =/,/[^\\]$/ { + /^POTFILES =/!d + r $1/POTFILES + } + ' "$1/Makefile.in" >"$1/Makefile"] + rm -f "$1/Makefile.tmp" + mv "$1/stamp-it.tmp" "$1/stamp-it" + ]) +])dnl +]) + +# _IT_SUBST(VARIABLE) +# ------------------- +# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST +# +AC_DEFUN([_IT_SUBST], +[ +AC_SUBST([$1]) +m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) +] +) + +# deprecated macros +AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) +# A hint is needed for aclocal from Automake <= 1.9.4: +# AC_DEFUN([AC_PROG_INTLTOOL], ...) + diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/libtool.m4 geany-plugins-1.24.1+dfsg/build/cache/libtool.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/libtool.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/libtool.m4 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,7997 @@ +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool 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. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/lt~obsolete.m4 geany-plugins-1.24.1+dfsg/build/cache/lt~obsolete.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/lt~obsolete.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/lt~obsolete.m4 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,98 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/ltoptions.m4 geany-plugins-1.24.1+dfsg/build/cache/ltoptions.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/ltoptions.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/ltoptions.m4 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,384 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/ltsugar.m4 geany-plugins-1.24.1+dfsg/build/cache/ltsugar.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/ltsugar.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/ltsugar.m4 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,123 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/ltversion.m4 geany-plugins-1.24.1+dfsg/build/cache/ltversion.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/ltversion.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/ltversion.m4 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/nls.m4 geany-plugins-1.24.1+dfsg/build/cache/nls.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/nls.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/nls.m4 2014-04-13 17:12:30.000000000 +0000 @@ -0,0 +1,32 @@ +# nls.m4 serial 5 (gettext-0.18) +dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, +dnl Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2003. + +AC_PREREQ([2.50]) + +AC_DEFUN([AM_NLS], +[ + AC_MSG_CHECKING([whether NLS is requested]) + dnl Default is enabled NLS + AC_ARG_ENABLE([nls], + [ --disable-nls do not use Native Language Support], + USE_NLS=$enableval, USE_NLS=yes) + AC_MSG_RESULT([$USE_NLS]) + AC_SUBST([USE_NLS]) +]) diff -Nru geany-plugins-1.24.0+20140222+git/build/cache/pkg.m4 geany-plugins-1.24.1+dfsg/build/cache/pkg.m4 --- geany-plugins-1.24.0+20140222+git/build/cache/pkg.m4 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/cache/pkg.m4 2014-04-13 17:12:30.000000000 +0000 @@ -0,0 +1,159 @@ +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# serial 1 (pkg-config-0.24) +# +# Copyright © 2004 Scott James Remnant . +# +# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) +m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) +AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) +AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_default([$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +# only at the first occurence in configure.ac, so if the first place +# it's called might be skipped (such as if it is within an "if", you +# have to call PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_default([$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$$1"; then + pkg_cv_[]$1="$$1" + elif test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes ], + [pkg_failed=yes]) + else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# _PKG_SHORT_ERRORS_SUPPORTED +# ----------------------------- +AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi[]dnl +])# _PKG_SHORT_ERRORS_SUPPORTED + + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $1]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS +and $1[]_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details.]) + +if test $pkg_failed = yes; then + AC_MSG_RESULT([no]) + _PKG_SHORT_ERRORS_SUPPORTED + if test $_pkg_short_errors_supported = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` + else + $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD + + m4_default([$4], [AC_MSG_ERROR( +[Package requirements ($2) were not met: + +$$1_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +_PKG_TEXT])[]dnl + ]) +elif test $pkg_failed = untried; then + AC_MSG_RESULT([no]) + m4_default([$4], [AC_MSG_FAILURE( +[The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +_PKG_TEXT + +To get pkg-config, see .])[]dnl + ]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + $3 +fi[]dnl +])# PKG_CHECK_MODULES diff -Nru geany-plugins-1.24.0+20140222+git/build/geany-plugins.nsi geany-plugins-1.24.1+dfsg/build/geany-plugins.nsi --- geany-plugins-1.24.0+20140222+git/build/geany-plugins.nsi 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/geany-plugins.nsi 1970-01-01 00:00:00.000000000 +0000 @@ -1,369 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; geany-plugins.nsi - this file is part of the geany-plugins project -; -; Copyright 2009-2011 Enrico Tröger -; Copyright 2009-2011 Nick Treleaven -; -; 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. -; -; Installer script for geany-plugins (Windows Installer), based on Geany's installer script -; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - - -; Do a Cyclic Redundancy Check to make sure the installer was not corrupted by the download -CRCCheck force -RequestExecutionLevel highest ; set execution level for Windows Vista - -;;;;;;;;;;;;;;;;;;; -; helper defines ; -;;;;;;;;;;;;;;;;;;; -!define PRODUCT_NAME "Geany-Plugins" -!define PRODUCT_VERSION "1.23" -!define PRODUCT_VERSION_ID "1.23.0.0" -!define PRODUCT_PUBLISHER "The Geany developer team" -!define PRODUCT_WEB_SITE "http://www.geany.org/" -!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" -!define PRODUCT_DIR_REGKEY "Software\Geany-Plugins" -!define GEANY_DIR_REGKEY "Software\Geany" -!define REQUIRED_GEANY_VERSION "1.23" -!define RESOURCEDIR "geany-plugins-${PRODUCT_VERSION}" - -;;;;;;;;;;;;;;;;;;;;; -; Version resource ; -;;;;;;;;;;;;;;;;;;;;; -VIProductVersion "${PRODUCT_VERSION_ID}" -VIAddVersionKey "ProductName" "${PRODUCT_NAME}" -VIAddVersionKey "FileVersion" "${PRODUCT_VERSION}" -VIAddVersionKey "ProductVersion" "${PRODUCT_VERSION}" -VIAddVersionKey "LegalCopyright" "Copyright 2009-2012 by the Geany developer team" -VIAddVersionKey "FileDescription" "${PRODUCT_NAME} Installer" - -BrandingText "$(^NAME) installer (NSIS 2.46)" -Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" -SetCompressor /SOLID lzma -ShowInstDetails hide -ShowUnInstDetails hide -XPStyle on -OutFile "geany-plugins-${PRODUCT_VERSION}_setup.exe" - -Var Answer -Var UserName -Var UNINSTDIR - -;;;;;;;;;;;;;;;; -; MUI Settings ; -;;;;;;;;;;;;;;;; -!include "MUI2.nsh" - -!define MUI_ABORTWARNING -; FIXME hard-coded path...should we add geany.ico to the geany-plugins repo? -!define MUI_ICON "\geany_svn\icons\geany.ico" -!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall-full.ico" - -; Welcome page -!insertmacro MUI_PAGE_WELCOME -; License page -; FIXME -!insertmacro MUI_PAGE_LICENSE "${RESOURCEDIR}\doc\plugins\addons\Copying.txt" -; Components page -!insertmacro MUI_PAGE_COMPONENTS -; Directory page -!define MUI_PAGE_CUSTOMFUNCTION_LEAVE OnDirLeave -!insertmacro MUI_PAGE_DIRECTORY -; Instfiles page -!insertmacro MUI_PAGE_INSTFILES -!insertmacro MUI_PAGE_FINISH - -!insertmacro MUI_UNPAGE_INSTFILES ; Uninstaller page -!insertmacro MUI_LANGUAGE "English" ; Language file - -;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Sections and InstTypes ; -;;;;;;;;;;;;;;;;;;;;;;;;;;; -InstType "Full" - -Section "!Program Files" SEC01 - SectionIn RO 1 2 - SetOverwrite ifnewer - - SetOutPath "$INSTDIR\" - File "${RESOURCEDIR}\ReadMe.Windows.txt" - - SetOutPath "$INSTDIR\lib" - File /r "${RESOURCEDIR}\lib\*" - - SetOutPath "$INSTDIR\share\geany-plugins" - File /r "${RESOURCEDIR}\share\geany-plugins\*" -SectionEnd - -Section "Language Files" SEC02 - SectionIn 1 - SetOutPath "$INSTDIR\share\locale" - File /r "${RESOURCEDIR}\share\locale\*" -SectionEnd - -Section "Documentation" SEC03 - SectionIn 1 - SetOverwrite ifnewer - SetOutPath "$INSTDIR" - File /r "${RESOURCEDIR}\doc" -SectionEnd - -Section "Dependencies" SEC04 - SectionIn 1 - SetOverwrite ifnewer - SetOutPath "$INSTDIR" - File /r "contrib\" -SectionEnd - -Section -Post - WriteUninstaller "$INSTDIR\uninst-plugins.exe" - WriteRegStr SHCTX "${PRODUCT_DIR_REGKEY}" Path "$INSTDIR" - ${if} $Answer == "yes" ; if user is admin - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst-plugins.exe" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\bin\Geany.exe" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "URLUpdateInfo" "${PRODUCT_WEB_SITE}" - WriteRegStr SHCTX "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" - WriteRegDWORD SHCTX "${PRODUCT_UNINST_KEY}" "NoModify" 0x00000001 - WriteRegDWORD SHCTX "${PRODUCT_UNINST_KEY}" "NoRepair" 0x00000001 - ${endif} -SectionEnd - -Section Uninstall - Delete "$INSTDIR\ReadMe.Windows.txt" - Delete "$INSTDIR\uninst-plugins.exe" - Delete "$INSTDIR\lib\addons.dll" - Delete "$INSTDIR\lib\codenav.dll" - Delete "$INSTDIR\lib\commander.dll" - Delete "$INSTDIR\lib\geanydoc.dll" - Delete "$INSTDIR\lib\geanyextrasel.dll" - Delete "$INSTDIR\lib\geanygendoc.dll" - Delete "$INSTDIR\lib\geanyinsertnum.dll" - Delete "$INSTDIR\lib\geanylatex.dll" - Delete "$INSTDIR\lib\geanylipsum.dll" - Delete "$INSTDIR\lib\geanylua.dll" - Delete "$INSTDIR\lib\geanymacro.dll" - Delete "$INSTDIR\lib\geanyminiscript.dll" - Delete "$INSTDIR\lib\geanynumberedbookmarks.dll" - Delete "$INSTDIR\lib\geanyprj.dll" - Delete "$INSTDIR\lib\geanysendmail.dll" - Delete "$INSTDIR\lib\geanyvc.dll" - Delete "$INSTDIR\lib\geniuspaste.dll" - Delete "$INSTDIR\lib\gproject.dll" - Delete "$INSTDIR\lib\pretty-printer.dll" - Delete "$INSTDIR\lib\scope.dll" - Delete "$INSTDIR\lib\shiftcolumn.dll" - Delete "$INSTDIR\lib\spellcheck.dll" - Delete "$INSTDIR\lib\tableconvert.dll" - Delete "$INSTDIR\lib\treebrowser.dll" - Delete "$INSTDIR\lib\updatechecker.dll" - Delete "$INSTDIR\lib\xmlsnippets.dll" - - - Delete "$INSTDIR\bin\ctpl-2.dll" - Delete "$INSTDIR\bin\libenchant.dll" - Delete "$INSTDIR\bin\libsoup-2.4-1.dll" - Delete "$INSTDIR\bin\libxml2-2.dll" - Delete "$INSTDIR\bin\lua5.1.dll" - - RMDir /r "$INSTDIR\doc\plugins" - RMDir /r "$INSTDIR\lib\geany-plugins" - RMDir /r "$INSTDIR\share\geany-plugins" - RMDir /r "$INSTDIR\lib\enchant" - RMDir /r "$INSTDIR\share\enchant" - - FindFirst $0 $1 "$INSTDIR\share\locale\*" - loop: - StrCmp $1 "" done - Delete "$INSTDIR\share\locale\$1\LC_MESSAGES\geany-plugins.mo" - RMDir "$INSTDIR\share\locale\$1\LC_MESSAGES" - RMDir "$INSTDIR\share\locale\$1" - FindNext $0 $1 - Goto loop - done: - FindClose $0 - - ; only if empty - RMDir "$INSTDIR\doc" - RMDir "$INSTDIR\lib" - RMDir "$INSTDIR\share\locale" - RMDir "$INSTDIR\share" - RMDir "$INSTDIR" - - DeleteRegKey SHCTX "${PRODUCT_DIR_REGKEY}" - DeleteRegKey HKCU "${PRODUCT_DIR_REGKEY}" - DeleteRegKey SHCTX "${PRODUCT_UNINST_KEY}" - DeleteRegKey HKCU "${PRODUCT_UNINST_KEY}" - - SetAutoClose true -SectionEnd - -;;;;;;;;;;;;;;;;;;;;;;;;; -; Section descriptions ; -;;;;;;;;;;;;;;;;;;;;;;;;; -!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN -!insertmacro MUI_DESCRIPTION_TEXT ${SEC01} "Required plugin files. You cannot skip these files." -!insertmacro MUI_DESCRIPTION_TEXT ${SEC02} "Various translations for the included plugins." -!insertmacro MUI_DESCRIPTION_TEXT ${SEC03} "Various documentation files for the included plugins." -!insertmacro MUI_DESCRIPTION_TEXT ${SEC04} "Dependency files for various plugins (currently libenchant for Spell Check, Lua for GeanyLua, libxml2 for PrettyPrinter, CTPL for GeanyGenDoc)." -!insertmacro MUI_FUNCTION_DESCRIPTION_END - -;;;;;;;;;;;;;;;;;;;;; -; helper functions ; -;;;;;;;;;;;;;;;;;;;;; - -; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi) -!macro IsUserAdmin Result UName - ClearErrors - UserInfo::GetName - IfErrors Win9x - Pop $0 - StrCpy ${UName} $0 - UserInfo::GetAccountType - Pop $1 - ${if} $1 == "Admin" - StrCpy ${Result} "yes" - ${else} - StrCpy ${Result} "no" - ${endif} - Goto done - -Win9x: - StrCpy ${Result} "yes" -done: -!macroend - -Function CheckForGeany - ; find and read Geany's installation directory and use it as our installation directory - ReadRegStr $INSTDIR SHCTX "${GEANY_DIR_REGKEY}" "Path" - StrCmp $INSTDIR "" 0 +3 - MessageBox MB_OK|MB_ICONSTOP "Geany could not be found. Please install Geany first." /SD IDOK - Abort - - ; check Geany's version - GetDLLVersion "$INSTDIR\bin\geany.exe" $R0 $R1 - IntOp $R2 $R0 >> 16 - IntOp $R2 $R2 & 0x0000FFFF ; $R2 now contains major version - IntOp $R3 $R0 & 0x0000FFFF ; $R3 now contains minor version - StrCpy $0 "$R2.$R3" - StrCmp $0 ${REQUIRED_GEANY_VERSION} version_check_done 0 - MessageBox MB_YESNO|MB_ICONEXCLAMATION \ - "You have Geany $0 installed but you need Geany ${REQUIRED_GEANY_VERSION}.$\nDo you really want to continue?" \ - /SD IDNO IDNO stop IDYES ignore -stop: - Abort -ignore: - MessageBox MB_OK|MB_ICONEXCLAMATION \ - "Using another version than Geany ${REQUIRED_GEANY_VERSION} may cause unloadable plugins or crashes." \ - /SD IDOK - -version_check_done: -FunctionEnd - -Function .onInit - ; (from http://jabref.svn.sourceforge.net/viewvc/jabref/trunk/jabref/src/windows/nsis/setup.nsi) - ; If the user does *not* have administrator privileges, abort - StrCpy $Answer "" - StrCpy $UserName "" - !insertmacro IsUserAdmin $Answer $UserName ; macro from LyXUtils.nsh - ${if} $Answer == "yes" - SetShellVarContext all ; set that e.g. shortcuts will be created for all users - ${else} - SetShellVarContext current - ; TODO is this really what we want? $PROGRAMFILES is not much better because - ; probably the unprivileged user can't write it anyways - StrCpy $INSTDIR "$PROFILE\$(^Name)" - ${endif} - - ; prevent running multiple instances of the installer - System::Call 'kernel32::CreateMutexA(i 0, i 0, t "geany_plugins_installer") i .r1 ?e' - Pop $R0 - StrCmp $R0 0 +3 - MessageBox MB_OK|MB_ICONEXCLAMATION "The installer is already running." /SD IDOK - Abort - - Call CheckForGeany - - ; warn about a new install over an existing installation - ReadRegStr $R0 SHCTX "${PRODUCT_UNINST_KEY}" "UninstallString" - StrCmp $R0 "" finish - - MessageBox MB_YESNO|MB_ICONEXCLAMATION \ - "Geany-Plugins has already been installed. $\nDo you want to remove the previous version before installing $(^Name) ?" \ - /SD IDYES IDYES remove IDNO finish - -remove: - ; run the uninstaller - ClearErrors - ; we read the installation path of the old installation from the Registry - ReadRegStr $UNINSTDIR SHCTX "${PRODUCT_DIR_REGKEY}" "Path" - IfSilent dosilent nonsilent -dosilent: - ExecWait '$R0 /S _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file - Goto finish -nonsilent: - ExecWait '$R0 _?=$UNINSTDIR' ;Do not copy the uninstaller to a temp file -finish: -FunctionEnd - -Function un.onUninstSuccess - HideWindow - MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." \ - /SD IDOK -FunctionEnd - -Function un.onInit - ; If the user does *not* have administrator privileges, abort - StrCpy $Answer "" - !insertmacro IsUserAdmin $Answer $UserName - ${if} $Answer == "yes" - SetShellVarContext all - ${else} - ; check if the Geany has been installed with admin permisions - ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY}" "Publisher" - ${if} $0 != "" - MessageBox MB_OK|MB_ICONSTOP \ - "You need administrator privileges to uninstall Geany-Plugins!" /SD IDOK - Abort - ${endif} - SetShellVarContext current - ${endif} - - MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 \ - "Are you sure you want to completely remove $(^Name) and all of its components?" \ - /SD IDYES IDYES +2 - Abort -FunctionEnd - -Function OnDirLeave - ClearErrors - SetOutPath "$INSTDIR" ; what about IfError creating $INSTDIR? - GetTempFileName $1 "$INSTDIR" ; creates tmp file (or fails) - FileOpen $0 "$1" "w" ; error to open? - FileWriteByte $0 "0" - IfErrors notPossible possible - -notPossible: - RMDir "$INSTDIR" ; removes folder if empty - MessageBox MB_OK "The given directory is not writeable. Please choose another one!" /SD IDOK - Abort -possible: - FileClose $0 - Delete "$1" -FunctionEnd diff -Nru geany-plugins-1.24.0+20140222+git/build/wafutils.py geany-plugins-1.24.1+dfsg/build/wafutils.py --- geany-plugins-1.24.0+20140222+git/build/wafutils.py 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/build/wafutils.py 2014-04-13 13:33:33.000000000 +0000 @@ -182,45 +182,20 @@ return sorted(plugins) -def get_svn_rev(conf): - def in_git(): - cmd = 'git ls-files >/dev/null 2>&1' - return (conf.exec_command(cmd) == 0) - - def in_svn(): - return os.path.exists('.svn') - - # try GIT - if in_git(): - cmds = [ 'git svn find-rev HEAD 2>/dev/null', - 'git svn find-rev origin/trunk 2>/dev/null', - 'git svn find-rev trunk 2>/dev/null', - 'git svn find-rev master 2>/dev/null' - ] - for cmd in cmds: - try: - stdout = conf.cmd_and_log(cmd) - if stdout: - return int(stdout.strip()) - except WafError: - pass - except ValueError: - Logs.pprint('RED', 'Unparseable revision number') - # try SVN - elif in_svn(): - try: - _env = None if target_is_win32(conf) else dict(LANG='C') - stdout = conf.cmd_and_log(cmd='svn info --non-interactive', env=_env) - lines = stdout.splitlines(True) - for line in lines: - if line.startswith('Last Changed Rev'): - value = line.split(': ', 1)[1] - return int(value.strip()) - except WafError: - pass - except (IndexError, ValueError): - Logs.pprint('RED', 'Unparseable revision number') - return 0 +def get_git_rev(conf): + if conf.options.no_scm: + return + + if not os.path.isdir('.git'): + return + + try: + cmd = 'git rev-parse --short --revs-only HEAD' + revision = conf.cmd_and_log(cmd).strip() + except WafError: + return None + else: + return revision def install_docs(ctx, name, files): diff -Nru geany-plugins-1.24.0+20140222+git/codenav/Makefile.in geany-plugins-1.24.1+dfsg/codenav/Makefile.in --- geany-plugins-1.24.0+20140222+git/codenav/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/codenav/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = codenav +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = codenav +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign codenav/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign codenav/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/codenav/src/Makefile.in geany-plugins-1.24.1+dfsg/codenav/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/codenav/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/codenav/src/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,815 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = codenav/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +codenav_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_codenav_la_OBJECTS = codenavigation.lo goto_file.lo \ + switch_head_impl.lo utils.lo +codenav_la_OBJECTS = $(am_codenav_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(codenav_la_SOURCES) +DIST_SOURCES = $(codenav_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = codenav.la +codenav_la_SOURCES = \ + codenavigation.c \ + codenavigation.h \ + goto_file.c \ + goto_file.h \ + switch_head_impl.c \ + switch_head_impl.h \ + utils.c \ + utils.h + +codenav_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign codenav/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign codenav/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +codenav.la: $(codenav_la_OBJECTS) $(codenav_la_DEPENDENCIES) $(EXTRA_codenav_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(codenav_la_OBJECTS) $(codenav_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/codenavigation.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/goto_file.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/switch_head_impl.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/commander/Makefile.in geany-plugins-1.24.1+dfsg/commander/Makefile.in --- geany-plugins-1.24.0+20140222+git/commander/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/commander/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = commander +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = commander +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign commander/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign commander/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/commander/src/Makefile.in geany-plugins-1.24.1+dfsg/commander/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/commander/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/commander/src/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,823 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = commander/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +commander_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_commander_la_OBJECTS = commander_la-commander-plugin.lo +commander_la_OBJECTS = $(am_commander_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +commander_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(commander_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(commander_la_SOURCES) +DIST_SOURCES = $(commander_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = commander +geanyplugins_LTLIBRARIES = commander.la +commander_la_SOURCES = commander-plugin.c +commander_la_CPPFLAGS = $(AM_CPPFLAGS) \ + -DPLUGIN=\"$(plugin)\" \ + -DG_LOG_DOMAIN=\"Commander\" + +commander_la_CFLAGS = $(AM_CFLAGS) \ + $(COMMANDER_CFLAGS) + +commander_la_LIBADD = $(COMMONLIBS) \ + $(COMMANDER_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign commander/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign commander/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +commander.la: $(commander_la_OBJECTS) $(commander_la_DEPENDENCIES) $(EXTRA_commander_la_DEPENDENCIES) + $(AM_V_CCLD)$(commander_la_LINK) -rpath $(geanypluginsdir) $(commander_la_OBJECTS) $(commander_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commander_la-commander-plugin.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +commander_la-commander-plugin.lo: commander-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(commander_la_CPPFLAGS) $(CPPFLAGS) $(commander_la_CFLAGS) $(CFLAGS) -MT commander_la-commander-plugin.lo -MD -MP -MF $(DEPDIR)/commander_la-commander-plugin.Tpo -c -o commander_la-commander-plugin.lo `test -f 'commander-plugin.c' || echo '$(srcdir)/'`commander-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/commander_la-commander-plugin.Tpo $(DEPDIR)/commander_la-commander-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='commander-plugin.c' object='commander_la-commander-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(commander_la_CPPFLAGS) $(CPPFLAGS) $(commander_la_CFLAGS) $(CFLAGS) -c -o commander_la-commander-plugin.lo `test -f 'commander-plugin.c' || echo '$(srcdir)/'`commander-plugin.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/compile geany-plugins-1.24.1+dfsg/compile --- geany-plugins-1.24.0+20140222+git/compile 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/compile 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,347 @@ +#! /bin/sh +# Wrapper for compilers which do not understand '-c -o'. + +scriptversion=2012-10-14.11; # UTC + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Written by Tom Tromey . +# +# 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, 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, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +nl=' +' + +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent tools from complaining about whitespace usage. +IFS=" "" $nl" + +file_conv= + +# func_file_conv build_file lazy +# Convert a $build file to $host form and store it in $file +# Currently only supports Windows hosts. If the determined conversion +# type is listed in (the comma separated) LAZY, no conversion will +# take place. +func_file_conv () +{ + file=$1 + case $file in + / | /[!/]*) # absolute file, and not a UNC file + if test -z "$file_conv"; then + # lazily determine how to convert abs files + case `uname -s` in + MINGW*) + file_conv=mingw + ;; + CYGWIN*) + file_conv=cygwin + ;; + *) + file_conv=wine + ;; + esac + fi + case $file_conv/,$2, in + *,$file_conv,*) + ;; + mingw/*) + file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` + ;; + cygwin/*) + file=`cygpath -m "$file" || echo "$file"` + ;; + wine/*) + file=`winepath -w "$file" || echo "$file"` + ;; + esac + ;; + esac +} + +# func_cl_dashL linkdir +# Make cl look for libraries in LINKDIR +func_cl_dashL () +{ + func_file_conv "$1" + if test -z "$lib_path"; then + lib_path=$file + else + lib_path="$lib_path;$file" + fi + linker_opts="$linker_opts -LIBPATH:$file" +} + +# func_cl_dashl library +# Do a library search-path lookup for cl +func_cl_dashl () +{ + lib=$1 + found=no + save_IFS=$IFS + IFS=';' + for dir in $lib_path $LIB + do + IFS=$save_IFS + if $shared && test -f "$dir/$lib.dll.lib"; then + found=yes + lib=$dir/$lib.dll.lib + break + fi + if test -f "$dir/$lib.lib"; then + found=yes + lib=$dir/$lib.lib + break + fi + if test -f "$dir/lib$lib.a"; then + found=yes + lib=$dir/lib$lib.a + break + fi + done + IFS=$save_IFS + + if test "$found" != yes; then + lib=$lib.lib + fi +} + +# func_cl_wrapper cl arg... +# Adjust compile command to suit cl +func_cl_wrapper () +{ + # Assume a capable shell + lib_path= + shared=: + linker_opts= + for arg + do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + eat=1 + case $2 in + *.o | *.[oO][bB][jJ]) + func_file_conv "$2" + set x "$@" -Fo"$file" + shift + ;; + *) + func_file_conv "$2" + set x "$@" -Fe"$file" + shift + ;; + esac + ;; + -I) + eat=1 + func_file_conv "$2" mingw + set x "$@" -I"$file" + shift + ;; + -I*) + func_file_conv "${1#-I}" mingw + set x "$@" -I"$file" + shift + ;; + -l) + eat=1 + func_cl_dashl "$2" + set x "$@" "$lib" + shift + ;; + -l*) + func_cl_dashl "${1#-l}" + set x "$@" "$lib" + shift + ;; + -L) + eat=1 + func_cl_dashL "$2" + ;; + -L*) + func_cl_dashL "${1#-L}" + ;; + -static) + shared=false + ;; + -Wl,*) + arg=${1#-Wl,} + save_ifs="$IFS"; IFS=',' + for flag in $arg; do + IFS="$save_ifs" + linker_opts="$linker_opts $flag" + done + IFS="$save_ifs" + ;; + -Xlinker) + eat=1 + linker_opts="$linker_opts $2" + ;; + -*) + set x "$@" "$1" + shift + ;; + *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) + func_file_conv "$1" + set x "$@" -Tp"$file" + shift + ;; + *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) + func_file_conv "$1" mingw + set x "$@" "$file" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift + done + if test -n "$linker_opts"; then + linker_opts="-link$linker_opts" + fi + exec "$@" $linker_opts + exit 1 +} + +eat= + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: compile [--help] [--version] PROGRAM [ARGS] + +Wrapper for compilers which do not understand '-c -o'. +Remove '-o dest.o' from ARGS, run PROGRAM with the remaining +arguments, and rename the output as expected. + +If you are trying to build a whole package this is not the +right script to run: please start by reading the file 'INSTALL'. + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "compile $scriptversion" + exit $? + ;; + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) + func_cl_wrapper "$@" # Doesn't return... + ;; +esac + +ofile= +cfile= + +for arg +do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + # So we strip '-o arg' only if arg is an object. + eat=1 + case $2 in + *.o | *.obj) + ofile=$2 + ;; + *) + set x "$@" -o "$2" + shift + ;; + esac + ;; + *.c) + cfile=$1 + set x "$@" "$1" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift +done + +if test -z "$ofile" || test -z "$cfile"; then + # If no '-o' option was seen then we might have been invoked from a + # pattern rule where we don't need one. That is ok -- this is a + # normal compilation that the losing compiler can handle. If no + # '.c' file was seen then we are probably linking. That is also + # ok. + exec "$@" +fi + +# Name of file we expect compiler to create. +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` + +# Create the lock directory. +# Note: use '[/\\:.-]' here to ensure that we don't use the same name +# that we are using for the .o file. Also, base the name on the expected +# object file name, since that is what matters with a parallel build. +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d +while true; do + if mkdir "$lockdir" >/dev/null 2>&1; then + break + fi + sleep 1 +done +# FIXME: race condition here if user kills between mkdir and trap. +trap "rmdir '$lockdir'; exit 1" 1 2 15 + +# Run the compile. +"$@" +ret=$? + +if test -f "$cofile"; then + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" +fi + +rmdir "$lockdir" +exit $ret + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/config.guess geany-plugins-1.24.1+dfsg/config.guess --- geany-plugins-1.24.0+20140222+git/config.guess 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/config.guess 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,1558 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright 1992-2013 Free Software Foundation, Inc. + +timestamp='2013-06-10' + +# This file 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 3 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, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# +# Please send patches with a ChangeLog entry to config-patches@gnu.org. + + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright 1992-2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +case "${UNAME_SYSTEM}" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval $set_cc_for_build + cat <<-EOF > $dummy.c + #include + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + ;; +esac + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="gnulibc1" ; fi + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi + else + echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-${LIBC} + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-${LIBC} + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + i*86:Linux:*:*) + echo ${UNAME_MACHINE}-pc-linux-${LIBC} + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + ;; + or1k:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-${LIBC} + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-${LIBC} + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; + PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; + *) echo hppa-unknown-linux-${LIBC} ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-${LIBC} + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-${LIBC} + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-${LIBC} + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-${LIBC} + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux-${LIBC} + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-${LIBC} + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + eval $set_cc_for_build + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + fi + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/config.h.in geany-plugins-1.24.1+dfsg/config.h.in --- geany-plugins-1.24.0+20140222+git/config.h.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/config.h.in 2014-04-13 17:12:40.000000000 +0000 @@ -0,0 +1,112 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* always defined to indicate that i18n is enabled */ +#undef ENABLE_NLS + +/* Location of Python library to dlopen() */ +#undef GEANYPY_PYTHON_LIBRARY + +/* The domain to use with gettext */ +#undef GETTEXT_PACKAGE + +/* Define to 1 if you have the `bind_textdomain_codeset' function. */ +#undef HAVE_BIND_TEXTDOMAIN_CODESET + +/* Define to 1 if you have the `dcgettext' function. */ +#undef HAVE_DCGETTEXT + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the `fdopen' function. */ +#undef HAVE_FDOPEN + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT + +/* Whether we have GIO */ +#undef HAVE_GIO + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define if your file defines LC_MESSAGES. */ +#undef HAVE_LC_MESSAGES + +/* Define to 1 if you have the header file. */ +#undef HAVE_LOCALE_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MKDIO_H + +/* If available, contains the Python version number currently in use. */ +#undef HAVE_PYTHON + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* GtkSpell support */ +#undef USE_GTKSPELL + +/* Version number of package */ +#undef VERSION + +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES diff -Nru geany-plugins-1.24.0+20140222+git/config.sub geany-plugins-1.24.1+dfsg/config.sub --- geany-plugins-1.24.0+20140222+git/config.sub 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/config.sub 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,1791 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright 1992-2013 Free Software Foundation, Inc. + +timestamp='2013-08-10' + +# This file 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 3 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, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). + + +# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright 1992-2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arceb \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | c8051 | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 | nios2eb | nios2el \ + | ns16k | ns32k \ + | open8 \ + | or1k | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | c8051-* | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipsr5900-* | mipsr5900el-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* | nios2eb-* | nios2el-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; + mingw32) + basic_machine=i686-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i686-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* | -plan9* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + c8051-*) + os=-elf + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or1k-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/configure geany-plugins-1.24.1+dfsg/configure --- geany-plugins-1.24.0+20140222+git/configure 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/configure 2014-04-13 17:12:39.000000000 +0000 @@ -0,0 +1,23291 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for geany-plugins 1.24. +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, +$0: including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + +as_awk_strverscmp=' + # Use only awk features that work with 7th edition Unix awk (1978). + # My, what an old awk you have, Mr. Solaris! + END { + while (length(v1) && length(v2)) { + # Set d1 to be the next thing to compare from v1, and likewise for d2. + # Normally this is a single character, but if v1 and v2 contain digits, + # compare them as integers and fractions as strverscmp does. + if (v1 ~ /^[0-9]/ && v2 ~ /^[0-9]/) { + # Split v1 and v2 into their leading digit string components d1 and d2, + # and advance v1 and v2 past the leading digit strings. + for (len1 = 1; substr(v1, len1 + 1) ~ /^[0-9]/; len1++) continue + for (len2 = 1; substr(v2, len2 + 1) ~ /^[0-9]/; len2++) continue + d1 = substr(v1, 1, len1); v1 = substr(v1, len1 + 1) + d2 = substr(v2, 1, len2); v2 = substr(v2, len2 + 1) + if (d1 ~ /^0/) { + if (d2 ~ /^0/) { + # Compare two fractions. + while (d1 ~ /^0/ && d2 ~ /^0/) { + d1 = substr(d1, 2); len1-- + d2 = substr(d2, 2); len2-- + } + if (len1 != len2 && ! (len1 && len2 && substr(d1, 1, 1) == substr(d2, 1, 1))) { + # The two components differ in length, and the common prefix + # contains only leading zeros. Consider the longer to be less. + d1 = -len1 + d2 = -len2 + } else { + # Otherwise, compare as strings. + d1 = "x" d1 + d2 = "x" d2 + } + } else { + # A fraction is less than an integer. + exit 1 + } + } else { + if (d2 ~ /^0/) { + # An integer is greater than a fraction. + exit 2 + } else { + # Compare two integers. + d1 += 0 + d2 += 0 + } + } + } else { + # The normal case, without worrying about digits. + d1 = substr(v1, 1, 1); v1 = substr(v1, 2) + d2 = substr(v2, 1, 1); v2 = substr(v2, 2) + } + if (d1 < d2) exit 1 + if (d1 > d2) exit 2 + } + # Beware Solaris /usr/xgp4/bin/awk (at least through Solaris 10), + # which mishandles some comparisons of empty strings to integers. + if (length(v2)) exit 1 + if (length(v1)) exit 2 + } +' + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='geany-plugins' +PACKAGE_TARNAME='geany-plugins' +PACKAGE_VERSION='1.24' +PACKAGE_STRING='geany-plugins 1.24' +PACKAGE_BUGREPORT='' +PACKAGE_URL='' + +ac_unique_file="po/POTFILES.in" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +ENABLE_XMLSNIPPETS_FALSE +ENABLE_XMLSNIPPETS_TRUE +ENABLE_WEBHELPER_FALSE +ENABLE_WEBHELPER_TRUE +WEBHELPER_LIBS +WEBHELPER_CFLAGS +ENABLE_UPDATECHECKER_FALSE +ENABLE_UPDATECHECKER_TRUE +UPDATECHECKER_LIBS +UPDATECHECKER_CFLAGS +ENABLE_TABLECONVERT_FALSE +ENABLE_TABLECONVERT_TRUE +ENABLE_TREEBROWSER_FALSE +ENABLE_TREEBROWSER_TRUE +GIO_LIBS +GIO_CFLAGS +ENABLE_SPELLCHECK_FALSE +ENABLE_SPELLCHECK_TRUE +HAVE_ENCHANT_1_5_FALSE +HAVE_ENCHANT_1_5_TRUE +ENCHANT_LIBS +ENCHANT_CFLAGS +ENABLE_SHIFTCOLUMN_FALSE +ENABLE_SHIFTCOLUMN_TRUE +PTY_LIBS +ENABLE_SCOPE_FALSE +ENABLE_SCOPE_TRUE +ENABLE_PRETTY_PRINTER_FALSE +ENABLE_PRETTY_PRINTER_TRUE +LIBXML_LIBS +LIBXML_CFLAGS +ENABLE_POHELPER_FALSE +ENABLE_POHELPER_TRUE +ENABLE_PAIRTAGHIGHLIGHTER_FALSE +ENABLE_PAIRTAGHIGHLIGHTER_TRUE +ENABLE_MULTITERM_FALSE +ENABLE_MULTITERM_TRUE +MULTITERM_LIBS +MULTITERM_CFLAGS +VALAC +ENABLE_MARKDOWN_FALSE +ENABLE_MARKDOWN_TRUE +MARKDOWN_LIBS +MARKDOWN_CFLAGS +MARKDOWN_PEG_MARKDOWN_FALSE +MARKDOWN_PEG_MARKDOWN_TRUE +LIBMARKDOWN_LIBS +LIBMARKDOWN_CFLAGS +ENABLE_GPROJECT_FALSE +ENABLE_GPROJECT_TRUE +ENABLE_GENIUSPASTE_FALSE +ENABLE_GENIUSPASTE_TRUE +GENIUSPASTE_LIBS +GENIUSPASTE_CFLAGS +ENABLE_GEANYPG_FALSE +ENABLE_GEANYPG_TRUE +GPGME_LIBS +GPGME_CFLAGS +GPGME_CONFIG +GTKSPELL_LIBS +GTKSPELL_CFLAGS +ENABLE_GEANYVC_FALSE +ENABLE_GEANYVC_TRUE +ENABLE_GEANYSENDMAIL_FALSE +ENABLE_GEANYSENDMAIL_TRUE +ENABLE_GEANYPY_FALSE +ENABLE_GEANYPY_TRUE +PYTHON_LIBRARY +PYTHON_EXTRA_LDFLAGS +PYTHON_EXTRA_LIBS +PYTHON_SITE_PKG +PYTHON_LDFLAGS +PYTHON_CPPFLAGS +PYTHON +PYTHON_VERSION +PYGTK_LIBS +PYGTK_CFLAGS +ENABLE_GEANYPRJ_FALSE +ENABLE_GEANYPRJ_TRUE +ENABLE_GEANYNUMBEREDBOOKMARKS_FALSE +ENABLE_GEANYNUMBEREDBOOKMARKS_TRUE +ENABLE_GEANYMINISCRIPT_FALSE +ENABLE_GEANYMINISCRIPT_TRUE +ENABLE_GEANYMACRO_FALSE +ENABLE_GEANYMACRO_TRUE +ENABLE_GEANYLUA_FALSE +ENABLE_GEANYLUA_TRUE +GMODULE_LIBS +GMODULE_CFLAGS +LUA_LIBS +LUA_CFLAGS +ENABLE_GEANYLIPSUM_FALSE +ENABLE_GEANYLIPSUM_TRUE +ENABLE_GEANYLATEX_FALSE +ENABLE_GEANYLATEX_TRUE +ENABLE_GEANYINSERTNUM_FALSE +ENABLE_GEANYINSERTNUM_TRUE +ENABLE_GEANYGENDOC_FALSE +ENABLE_GEANYGENDOC_TRUE +BUILD_RST_FALSE +BUILD_RST_TRUE +RST2HTML +GEANYGENDOC_LIBS +GEANYGENDOC_CFLAGS +ENABLE_GEANYEXTRASEL_FALSE +ENABLE_GEANYEXTRASEL_TRUE +ENABLE_GEANYDOC_FALSE +ENABLE_GEANYDOC_TRUE +ENABLE_DEVHELP_FALSE +ENABLE_DEVHELP_TRUE +DEVHELP_LIBS +DEVHELP_CFLAGS +GLIB_MKENUMS +GLIB_GENMARSHAL +ENABLE_DEFINEFORMAT_FALSE +ENABLE_DEFINEFORMAT_TRUE +DEFINEFORMAT_LIBS +DEFINEFORMAT_CFLAGS +ENABLE_DEBUGGER_FALSE +ENABLE_DEBUGGER_TRUE +VTE_LIBS +VTE_CFLAGS +ENABLE_COMMANDER_FALSE +ENABLE_COMMANDER_TRUE +COMMANDER_LIBS +COMMANDER_CFLAGS +ENABLE_CODENAV_FALSE +ENABLE_CODENAV_TRUE +ENABLE_AUTOCLOSE_FALSE +ENABLE_AUTOCLOSE_TRUE +AUTOCLOSE_LIBS +AUTOCLOSE_CFLAGS +ENABLE_ADDONS_FALSE +ENABLE_ADDONS_TRUE +GP_CFLAGS +HAVE_CPPCHECK_FALSE +HAVE_CPPCHECK_TRUE +CPPCHECK +GP_GTK3_FALSE +GP_GTK3_TRUE +GP_GTK_VERSION_MAJOR +GP_GTK_VERSION +GP_GTK_PACKAGE +UNITTESTS_FALSE +UNITTESTS_TRUE +CHECK_LIBS +CHECK_CFLAGS +GEANY_VERSION +geanypluginsdir +GEANY_LIBS +GEANY_CFLAGS +PKG_CONFIG_LIBDIR +PKG_CONFIG_PATH +PKG_CONFIG +MKINSTALLDIRS +POSUB +POFILES +PO_IN_DATADIR_FALSE +PO_IN_DATADIR_TRUE +INTLLIBS +INSTOBJEXT +GMOFILES +CATOBJEXT +CATALOGS +MSGFMT_OPTS +LOCALEDIR +GETTEXT_PACKAGE +DATADIRNAME +ALL_LINGUAS +INTLTOOL_PERL +GMSGFMT +MSGFMT +MSGMERGE +XGETTEXT +INTLTOOL_POLICY_RULE +INTLTOOL_SERVICE_RULE +INTLTOOL_THEME_RULE +INTLTOOL_SCHEMAS_RULE +INTLTOOL_CAVES_RULE +INTLTOOL_XML_NOMERGE_RULE +INTLTOOL_XML_RULE +INTLTOOL_KBD_RULE +INTLTOOL_XAM_RULE +INTLTOOL_UI_RULE +INTLTOOL_SOUNDLIST_RULE +INTLTOOL_SHEET_RULE +INTLTOOL_SERVER_RULE +INTLTOOL_PONG_RULE +INTLTOOL_OAF_RULE +INTLTOOL_PROP_RULE +INTLTOOL_KEYS_RULE +INTLTOOL_DIRECTORY_RULE +INTLTOOL_DESKTOP_RULE +intltool__v_merge_options_0 +intltool__v_merge_options_ +INTLTOOL_V_MERGE_OPTIONS +INTLTOOL__v_MERGE_0 +INTLTOOL__v_MERGE_ +INTLTOOL_V_MERGE +INTLTOOL_EXTRACT +INTLTOOL_MERGE +INTLTOOL_UPDATE +USE_NLS +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +AM_BACKSLASH +AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_silent_rules +enable_dependency_tracking +enable_static +enable_shared +with_pic +enable_fast_install +with_gnu_ld +with_sysroot +enable_libtool_lock +enable_nls +with_geany_libdir +enable_cppcheck +enable_extra_c_warnings +enable_addons +enable_autoclose +enable_codenav +enable_commander +enable_debugger +enable_defineformat +enable_devhelp +enable_geanydoc +enable_geanyextrasel +enable_geanygendoc +enable_geanyinsertnum +enable_geanylatex +enable_geanylipsum +enable_geanylua +with_lua_pkg +enable_geanymacro +enable_geanyminiscript +enable_geanynumberedbookmarks +enable_geanyprj +enable_geanypy +enable_geanysendmail +enable_geanyvc +enable_gtkspell +enable_geanypg +with_gpgme_prefix +enable_largefile +enable_geniuspaste +enable_gproject +enable_markdown +enable_peg_markdown +enable_multiterm +enable_pairtaghighlighter +enable_pohelper +enable_pretty_printer +enable_scope +enable_shiftcolumn +enable_spellcheck +enable_treebrowser +enable_tableconvert +enable_updatechecker +enable_webhelper +enable_xmlsnippets +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP +PKG_CONFIG +PKG_CONFIG_PATH +PKG_CONFIG_LIBDIR +GEANY_CFLAGS +GEANY_LIBS +CHECK_CFLAGS +CHECK_LIBS +AUTOCLOSE_CFLAGS +AUTOCLOSE_LIBS +COMMANDER_CFLAGS +COMMANDER_LIBS +VTE_CFLAGS +VTE_LIBS +DEFINEFORMAT_CFLAGS +DEFINEFORMAT_LIBS +DEVHELP_CFLAGS +DEVHELP_LIBS +GEANYGENDOC_CFLAGS +GEANYGENDOC_LIBS +LUA_CFLAGS +LUA_LIBS +GMODULE_CFLAGS +GMODULE_LIBS +PYGTK_CFLAGS +PYGTK_LIBS +PYTHON_VERSION +GTKSPELL_CFLAGS +GTKSPELL_LIBS +GENIUSPASTE_CFLAGS +GENIUSPASTE_LIBS +MARKDOWN_CFLAGS +MARKDOWN_LIBS +MULTITERM_CFLAGS +MULTITERM_LIBS +LIBXML_CFLAGS +LIBXML_LIBS +ENCHANT_CFLAGS +ENCHANT_LIBS +GIO_CFLAGS +GIO_LIBS +UPDATECHECKER_CFLAGS +UPDATECHECKER_LIBS +WEBHELPER_CFLAGS +WEBHELPER_LIBS' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures geany-plugins 1.24 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/geany-plugins] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of geany-plugins 1.24:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: "make V=1") + --disable-silent-rules verbose build output (undo: "make V=0") + --enable-dependency-tracking + do not reject slow dependency extractors + --disable-dependency-tracking + speeds up one-time build + --enable-static[=PKGS] build static libraries [default=no] + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --disable-nls do not use Native Language Support + --enable-cppcheck use cppcheck to check the source code [default=auto] + --disable-extra-c-warnings + Disable extra C Compiler warnings + --disable-addons Do not build the Addons plugin + --disable-autoclose Do not build the Autoclose plugin + --disable-codenav Do not build the CodeNav plugin + --disable-commander Do not build the Commander plugin + --disable-debugger Do not build the Debugger plugin + --disable-defineformat Do not build the Defineformat plugin + --disable-devhelp Do not build the devhelp plugin + --disable-geanydoc Do not build the GeanyDoc plugin + --disable-geanyextrasel Do not build the GeanyExtraSel plugin + --disable-geanygendoc Do not build the GeanyGenDoc plugin + --disable-geanyinsertnum + Do not build the GeanyInsertNum plugin + --disable-geanylatex Do not build the GeanyLaTeX plugin + --disable-geanylipsum Do not build the GeanyLipsum plugin + --disable-geanylua Do not build the GeanyLua plugin + --disable-geanymacro Do not build the GeanyMacro plugin + --disable-geanyminiscript + Do not build the GeanyMiniScript plugin + --disable-geanynumberedbookmarks + Do not build the GeanyNumberedBookmarks plugin + --disable-geanyprj Do not build the GeanyPrj plugin + --disable-geanypy Do not build the Geanypy plugin + --disable-geanysendmail Do not build the GeanySendmail plugin + --disable-geanyvc Do not build the GeanyVC plugin + --enable-gtkspell=ARG Enable GtkSpell support in GeanyVC. [[default=auto]] + --disable-geanypg Do not build the geanypg plugin + --disable-largefile omit support for large files + --disable-geniuspaste Do not build the GeniusPaste plugin + --disable-gproject Do not build the GProject plugin + --disable-markdown Do not build the markdown plugin + --enable-peg-markdown Whether to use Peg-Markdown library [[default=auto]] + --disable-multiterm Do not build the multiterm plugin + --disable-pairtaghighlighter + Do not build the PairTagHighlighter plugin + --disable-pohelper Do not build the PoHelper plugin + --disable-pretty_printer + Do not build the pretty-printer plugin + --disable-scope Do not build the Scope plugin + --disable-shiftcolumn Do not build the ShiftColumn plugin + --disable-spellcheck Do not build the spellcheck plugin + --disable-treebrowser Do not build the Treebrowser plugin + --disable-tableconvert Do not build the Tableconvert plugin + --disable-updatechecker Do not build the Updatechecker plugin + --disable-webhelper Do not build the WebHelper plugin + --disable-xmlsnippets Do not build the XMLSnippets plugin + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot=DIR Search for dependent libraries within DIR + (or the compiler's sysroot if not specified). + --with-geany-libdir=PATH + Set Geany's installation libdir [[default=auto]] + --with-lua-pkg=ARG name of Lua pkg-config script [[default=lua5.1]] + --with-gpgme-prefix=PFX prefix where GPGME is installed (optional) + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + PKG_CONFIG path to pkg-config utility + PKG_CONFIG_PATH + directories to add to pkg-config's search path + PKG_CONFIG_LIBDIR + path overriding pkg-config's built-in search path + GEANY_CFLAGS + C compiler flags for GEANY, overriding pkg-config + GEANY_LIBS linker flags for GEANY, overriding pkg-config + CHECK_CFLAGS + C compiler flags for CHECK, overriding pkg-config + CHECK_LIBS linker flags for CHECK, overriding pkg-config + AUTOCLOSE_CFLAGS + C compiler flags for AUTOCLOSE, overriding pkg-config + AUTOCLOSE_LIBS + linker flags for AUTOCLOSE, overriding pkg-config + COMMANDER_CFLAGS + C compiler flags for COMMANDER, overriding pkg-config + COMMANDER_LIBS + linker flags for COMMANDER, overriding pkg-config + VTE_CFLAGS C compiler flags for VTE, overriding pkg-config + VTE_LIBS linker flags for VTE, overriding pkg-config + DEFINEFORMAT_CFLAGS + C compiler flags for DEFINEFORMAT, overriding pkg-config + DEFINEFORMAT_LIBS + linker flags for DEFINEFORMAT, overriding pkg-config + DEVHELP_CFLAGS + C compiler flags for DEVHELP, overriding pkg-config + DEVHELP_LIBS + linker flags for DEVHELP, overriding pkg-config + GEANYGENDOC_CFLAGS + C compiler flags for GEANYGENDOC, overriding pkg-config + GEANYGENDOC_LIBS + linker flags for GEANYGENDOC, overriding pkg-config + LUA_CFLAGS C compiler flags for LUA, overriding pkg-config + LUA_LIBS linker flags for LUA, overriding pkg-config + GMODULE_CFLAGS + C compiler flags for GMODULE, overriding pkg-config + GMODULE_LIBS + linker flags for GMODULE, overriding pkg-config + PYGTK_CFLAGS + C compiler flags for PYGTK, overriding pkg-config + PYGTK_LIBS linker flags for PYGTK, overriding pkg-config + PYTHON_VERSION + The installed Python version to use, for example '2.3'. This + string will be appended to the Python interpreter canonical + name. + GTKSPELL_CFLAGS + C compiler flags for GTKSPELL, overriding pkg-config + GTKSPELL_LIBS + linker flags for GTKSPELL, overriding pkg-config + GENIUSPASTE_CFLAGS + C compiler flags for GENIUSPASTE, overriding pkg-config + GENIUSPASTE_LIBS + linker flags for GENIUSPASTE, overriding pkg-config + MARKDOWN_CFLAGS + C compiler flags for MARKDOWN, overriding pkg-config + MARKDOWN_LIBS + linker flags for MARKDOWN, overriding pkg-config + MULTITERM_CFLAGS + C compiler flags for MULTITERM, overriding pkg-config + MULTITERM_LIBS + linker flags for MULTITERM, overriding pkg-config + LIBXML_CFLAGS + C compiler flags for LIBXML, overriding pkg-config + LIBXML_LIBS linker flags for LIBXML, overriding pkg-config + ENCHANT_CFLAGS + C compiler flags for ENCHANT, overriding pkg-config + ENCHANT_LIBS + linker flags for ENCHANT, overriding pkg-config + GIO_CFLAGS C compiler flags for GIO, overriding pkg-config + GIO_LIBS linker flags for GIO, overriding pkg-config + UPDATECHECKER_CFLAGS + C compiler flags for UPDATECHECKER, overriding pkg-config + UPDATECHECKER_LIBS + linker flags for UPDATECHECKER, overriding pkg-config + WEBHELPER_CFLAGS + C compiler flags for WEBHELPER, overriding pkg-config + WEBHELPER_LIBS + linker flags for WEBHELPER, overriding pkg-config + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to the package provider. +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +geany-plugins configure 1.24 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if eval \${$3+:} false; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.i conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_mongrel +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by geany-plugins $as_me 1.24, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +am__api_version='1.14' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken + alias in your environment" "$LINENO" 5 + fi + if test "$2" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi + +rm -f conftest.file + +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=1;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='geany-plugins' + VERSION='1.24' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +mkdir_p='$(MKDIR_P)' + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar plaintar pax cpio none' + +# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5 +$as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; } + if test $am_uid -le $am_max_uid; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + _am_tools=none + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5 +$as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; } + if test $am_gid -le $am_max_gid; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + _am_tools=none + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5 +$as_echo_n "checking how to create a ustar tar archive... " >&6; } + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_ustar-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + { echo "$as_me:$LINENO: $_am_tar --version" >&5 + ($_am_tar --version) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && break + done + am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x ustar -w "$$tardir"' + am__tar_='pax -L -x ustar -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H ustar -L' + am__tar_='find "$tardir" -print | cpio -o -H ustar -L' + am__untar='cpio -i -H ustar -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_ustar}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 + (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + rm -rf conftest.dir + if test -s conftest.tar; then + { echo "$as_me:$LINENO: $am__untar &5 + ($am__untar &5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { echo "$as_me:$LINENO: cat conftest.dir/file" >&5 + (cat conftest.dir/file) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + if ${am_cv_prog_tar_ustar+:} false; then : + $as_echo_n "(cached) " >&6 +else + am_cv_prog_tar_ustar=$_am_tool +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5 +$as_echo "$am_cv_prog_tar_ustar" >&6; } + + + + + + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: . + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 + fi +fi + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=0;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + + + +ac_config_headers="$ac_config_headers config.h" + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 +$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } +if ${am_cv_prog_cc_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 + ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 +$as_echo "$am_cv_prog_cc_c_o" >&6; } +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +# Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=no +fi + + + + + + + + + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.2' +macro_revision='1.3337' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case "$ECHO" in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_GREP" || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_EGREP" || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_FGREP" || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test "$GCC" != yes; then + reload_cmds=false + fi + ;; + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 +$as_echo "${with_sysroot}" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='${wl}--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + link_all_deplibs=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test x"$lt_cv_prog_compiler__b" = xyes; then + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test "$lt_cv_irix_exported_symbol" = yes; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([A-Za-z]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC="$lt_save_CC" + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 +$as_echo_n "checking whether NLS is requested... " >&6; } + # Check whether --enable-nls was given. +if test "${enable_nls+set}" = set; then : + enableval=$enable_nls; USE_NLS=$enableval +else + USE_NLS=yes +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 +$as_echo "$USE_NLS" >&6; } + + + + +case "$am__api_version" in + 1.01234) + as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 + ;; + *) + ;; +esac + +INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` +INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` +INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` +if test -n "0.35.0"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5 +$as_echo_n "checking for intltool >= 0.35.0... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 +$as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } + test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || + as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5 +fi + +# Extract the first word of "intltool-update", so it can be a program name with args. +set dummy intltool-update; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $INTLTOOL_UPDATE in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE +if test -n "$INTLTOOL_UPDATE"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 +$as_echo "$INTLTOOL_UPDATE" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "intltool-merge", so it can be a program name with args. +set dummy intltool-merge; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_INTLTOOL_MERGE+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $INTLTOOL_MERGE in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE +if test -n "$INTLTOOL_MERGE"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 +$as_echo "$INTLTOOL_MERGE" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "intltool-extract", so it can be a program name with args. +set dummy intltool-extract; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $INTLTOOL_EXTRACT in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT +if test -n "$INTLTOOL_EXTRACT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 +$as_echo "$INTLTOOL_EXTRACT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then + as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 +fi + +if test -z "$AM_DEFAULT_VERBOSITY"; then + AM_DEFAULT_VERBOSITY=1 +fi + + +INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' +INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' +INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' + + + + +INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' +intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' +intltool__v_merge_options_0='-q' + + + + + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' + INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' +else + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir' +fi + INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# Check the gettext tools to make sure they are GNU +# Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_XGETTEXT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $XGETTEXT in + [\\/]* | ?:[\\/]*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +XGETTEXT=$ac_cv_path_XGETTEXT +if test -n "$XGETTEXT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 +$as_echo "$XGETTEXT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "msgmerge", so it can be a program name with args. +set dummy msgmerge; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_MSGMERGE+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MSGMERGE in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +MSGMERGE=$ac_cv_path_MSGMERGE +if test -n "$MSGMERGE"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 +$as_echo "$MSGMERGE" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_MSGFMT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +MSGFMT=$ac_cv_path_MSGFMT +if test -n "$MSGFMT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 +$as_echo "$MSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +# Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GMSGFMT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + ;; +esac +fi +GMSGFMT=$ac_cv_path_GMSGFMT +if test -n "$GMSGFMT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 +$as_echo "$GMSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then + as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 +fi +xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" +mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" +mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" +if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then + as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 +fi + +# Extract the first word of "perl", so it can be a program name with args. +set dummy perl; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_INTLTOOL_PERL+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $INTLTOOL_PERL in + [\\/]* | ?:[\\/]*) + ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL +if test -n "$INTLTOOL_PERL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 +$as_echo "$INTLTOOL_PERL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test -z "$INTLTOOL_PERL"; then + as_fn_error $? "perl not found" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 +$as_echo_n "checking for perl >= 5.8.1... " >&6; } +$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 +if test $? -ne 0; then + as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 +else + IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 +$as_echo "$IT_PERL_VERSION" >&6; } +fi +if test "x" != "xno-xml"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 +$as_echo_n "checking for XML::Parser... " >&6; } + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } + else + as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 + fi +fi + +# Substitute ALL_LINGUAS so we can use it in po/Makefile + + +# Set DATADIRNAME correctly if it is not set yet +# (copied from glib-gettext.m4) +if test -z "$DATADIRNAME"; then + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + DATADIRNAME=share +else + case $host in + *-*-solaris*) + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : + DATADIRNAME=share +else + DATADIRNAME=lib +fi + + ;; + *) + DATADIRNAME=lib + ;; + esac +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi + + + + + + + if test -n "${LINGUAS}" + then + ALL_LINGUAS="${LINGUAS}" + else + if test -z "$conf_dir" ; then + conf_dir="." + fi + ALL_LINGUAS=`cd "$conf_dir/po" 2>/dev/null && ls *.po 2>/dev/null | $AWK 'BEGIN { FS="."; ORS=" " } { print $1 }'` + fi + GETTEXT_PACKAGE=geany-plugins + + +cat >>confdefs.h <<_ACEOF +#define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" +_ACEOF + + LOCALEDIR="${datadir}/locale" + + + for ac_header in locale.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" +if test "x$ac_cv_header_locale_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LOCALE_H 1 +_ACEOF + +fi + +done + + if test $ac_cv_header_locale_h = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 +$as_echo_n "checking for LC_MESSAGES... " >&6; } +if ${am_cv_val_LC_MESSAGES+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +return LC_MESSAGES + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_val_LC_MESSAGES=yes +else + am_cv_val_LC_MESSAGES=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 +$as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + +$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h + + fi + fi + USE_NLS=yes + + + gt_cv_have_gettext=no + + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= + + ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" +if test "x$ac_cv_header_libintl_h" = xyes; then : + gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" + + # + # First check in libc + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 +$as_echo_n "checking for ngettext in libc... " >&6; } +if ${gt_cv_func_ngettext_libc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include + +int +main () +{ +return !ngettext ("","", 1) + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_ngettext_libc=yes +else + gt_cv_func_ngettext_libc=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 +$as_echo "$gt_cv_func_ngettext_libc" >&6; } + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 +$as_echo_n "checking for dgettext in libc... " >&6; } +if ${gt_cv_func_dgettext_libc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include + +int +main () +{ +return !dgettext ("","") + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_dgettext_libc=yes +else + gt_cv_func_dgettext_libc=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 +$as_echo "$gt_cv_func_dgettext_libc" >&6; } + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 +_ACEOF + +fi +done + + fi + + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 +$as_echo_n "checking for bindtextdomain in -lintl... " >&6; } +if ${ac_cv_lib_intl_bindtextdomain+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char bindtextdomain (); +int +main () +{ +return bindtextdomain (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_bindtextdomain=yes +else + ac_cv_lib_intl_bindtextdomain=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 +$as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } +if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 +$as_echo_n "checking for ngettext in -lintl... " >&6; } +if ${ac_cv_lib_intl_ngettext+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes +else + ac_cv_lib_intl_ngettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 +$as_echo "$ac_cv_lib_intl_ngettext" >&6; } +if test "x$ac_cv_lib_intl_ngettext" = xyes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 +$as_echo_n "checking for dgettext in -lintl... " >&6; } +if ${ac_cv_lib_intl_dgettext+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dgettext (); +int +main () +{ +return dgettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_dgettext=yes +else + ac_cv_lib_intl_dgettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 +$as_echo "$ac_cv_lib_intl_dgettext" >&6; } +if test "x$ac_cv_lib_intl_dgettext" = xyes; then : + gt_cv_func_dgettext_libintl=yes +fi + +fi + +fi + + + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 +$as_echo_n "checking if -liconv is needed to use gettext... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 +$as_echo "" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 +$as_echo_n "checking for ngettext in -lintl... " >&6; } +if ${ac_cv_lib_intl_ngettext+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char ngettext (); +int +main () +{ +return ngettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_ngettext=yes +else + ac_cv_lib_intl_ngettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 +$as_echo "$ac_cv_lib_intl_ngettext" >&6; } +if test "x$ac_cv_lib_intl_ngettext" = xyes; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 +$as_echo_n "checking for dcgettext in -lintl... " >&6; } +if ${ac_cv_lib_intl_dcgettext+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lintl -liconv $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dcgettext (); +int +main () +{ +return dcgettext (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_intl_dcgettext=yes +else + ac_cv_lib_intl_dcgettext=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 +$as_echo "$ac_cv_lib_intl_dcgettext" >&6; } +if test "x$ac_cv_lib_intl_dcgettext" = xyes; then : + gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv +else + : +fi + +else + : +fi + + fi + + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + for ac_func in bind_textdomain_codeset +do : + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_BIND_TEXTDOMAIN_CODESET 1 +_ACEOF + +fi +done + + LIBS="$glib_save_LIBS" + + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi + + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + +$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h + + # Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_MSGFMT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case "$MSGFMT" in + /*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then + ac_cv_path_MSGFMT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" + ;; +esac +fi +MSGFMT="$ac_cv_path_MSGFMT" +if test "$MSGFMT" != "no"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 +$as_echo "$MSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + for ac_func in dcgettext +do : + ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" +if test "x$ac_cv_func_dcgettext" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DCGETTEXT 1 +_ACEOF + +fi +done + + MSGFMT_OPTS= + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 +$as_echo_n "checking if msgfmt accepts -c... " >&6; } + cat >conftest.foo <<_ACEOF + +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: test 1.0\n" +"PO-Revision-Date: 2007-02-15 12:01+0100\n" +"Last-Translator: test \n" +"Language-Team: C \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +_ACEOF +if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 + ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +echo "$as_me: failed input was:" >&5 +sed 's/^/| /' conftest.foo >&5 +fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GMSGFMT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + ;; +esac +fi +GMSGFMT=$ac_cv_path_GMSGFMT +if test -n "$GMSGFMT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 +$as_echo "$GMSGFMT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + # Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_XGETTEXT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case "$XGETTEXT" in + /*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then + ac_cv_path_XGETTEXT="$ac_dir/$ac_word" + break + fi + fi + done + IFS="$ac_save_ifs" + test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" + ;; +esac +fi +XGETTEXT="$ac_cv_path_XGETTEXT" +if test "$XGETTEXT" != ":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 +$as_echo "$XGETTEXT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + CATOBJEXT=.gmo + DATADIRNAME=share +else + case $host in + *-*-solaris*) + ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" +if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : + CATOBJEXT=.gmo + DATADIRNAME=share +else + CATOBJEXT=.mo + DATADIRNAME=lib +fi + + ;; + *-*-openbsd*) + CATOBJEXT=.mo + DATADIRNAME=share + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + +fi + + + + if test "$gt_cv_have_gettext" = "yes" ; then + +$as_echo "#define ENABLE_NLS 1" >>confdefs.h + + fi + + if test "$XGETTEXT" != ":"; then + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 +$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi + fi + + # We need to process the po/ directory. + POSUB=po + + ac_config_commands="$ac_config_commands default-1" + + + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done + + + + + + + + + + + + + + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 +$as_echo_n "checking for catalogs to be installed... " >&6; } + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 +$as_echo "$LINGUAS" >&6; } + fi + + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi + + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + + + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + + + + + + + + + + +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PKG_CONFIG=$ac_cv_path_PKG_CONFIG +if test -n "$PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 +$as_echo "$PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG +if test -n "$ac_pt_PKG_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 +$as_echo "$ac_pt_PKG_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_PKG_CONFIG" = x; then + PKG_CONFIG="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + PKG_CONFIG=$ac_pt_PKG_CONFIG + fi +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi + +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 +$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + PKG_CONFIG="" + fi +fi + + + +# Check whether --with-geany-libdir was given. +if test "${with_geany_libdir+set}" = set; then : + withval=$with_geany_libdir; geany_libdir=${withval} +else + geany_libdir=$(${PKG_CONFIG} --variable=libdir geany) +fi + + + + + + + + export PKG_CONFIG_PATH="$geany_libdir/pkgconfig:$PKG_CONFIG_PATH" + + + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GEANY" >&5 +$as_echo_n "checking for GEANY... " >&6; } + +if test -n "$GEANY_CFLAGS"; then + pkg_cv_GEANY_CFLAGS="$GEANY_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"geany >= 1.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "geany >= 1.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANY_CFLAGS=`$PKG_CONFIG --cflags "geany >= 1.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GEANY_LIBS"; then + pkg_cv_GEANY_LIBS="$GEANY_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"geany >= 1.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "geany >= 1.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANY_LIBS=`$PKG_CONFIG --libs "geany >= 1.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GEANY_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "geany >= 1.24" 2>&1` + else + GEANY_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "geany >= 1.24" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GEANY_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (geany >= 1.24) were not met: + +$GEANY_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GEANY_CFLAGS +and GEANY_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GEANY_CFLAGS +and GEANY_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GEANY_CFLAGS=$pkg_cv_GEANY_CFLAGS + GEANY_LIBS=$pkg_cv_GEANY_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + geanypluginsdir=$geany_libdir/geany + GEANY_VERSION=$(${PKG_CONFIG} --modversion geany) + + + + + + export PKG_CONFIG_PATH="${PKG_CONFIG_PATH#*:}" + test -z "${PKG_CONFIG_PATH}" && unset PKG_CONFIG_PATH + + + + gp_have_unittests=no + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for CHECK" >&5 +$as_echo_n "checking for CHECK... " >&6; } + +if test -n "$CHECK_CFLAGS"; then + pkg_cv_CHECK_CFLAGS="$CHECK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "check >= 0.9.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_CHECK_CFLAGS=`$PKG_CONFIG --cflags "check >= 0.9.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$CHECK_LIBS"; then + pkg_cv_CHECK_LIBS="$CHECK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"check >= 0.9.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "check >= 0.9.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_CHECK_LIBS=`$PKG_CONFIG --libs "check >= 0.9.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + CHECK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "check >= 0.9.4" 2>&1` + else + CHECK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "check >= 0.9.4" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$CHECK_PKG_ERRORS" >&5 + + if false; then + UNITTESTS_TRUE= + UNITTESTS_FALSE='#' +else + UNITTESTS_TRUE='#' + UNITTESTS_FALSE= +fi + +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if false; then + UNITTESTS_TRUE= + UNITTESTS_FALSE='#' +else + UNITTESTS_TRUE='#' + UNITTESTS_FALSE= +fi + +else + CHECK_CFLAGS=$pkg_cv_CHECK_CFLAGS + CHECK_LIBS=$pkg_cv_CHECK_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + if true; then + UNITTESTS_TRUE= + UNITTESTS_FALSE='#' +else + UNITTESTS_TRUE='#' + UNITTESTS_FALSE= +fi + + gp_have_unittests=yes +fi + + build_feature_statusmsg+="Unit tests:$gp_have_unittests +" + + + + + + + + + export PKG_CONFIG_PATH="$geany_libdir/pkgconfig:$PKG_CONFIG_PATH" + + + _gtk_req=$(${PKG_CONFIG} --print-requires geany | ${AWK} '/^gtk\+-/{print}') + GP_GTK_PACKAGE=$(echo ${_gtk_req} | ${AWK} '{print $1}') + GP_GTK_VERSION=$(echo ${_gtk_req} | ${AWK} '{print $3}') + GP_GTK_VERSION_MAJOR=$(echo ${GP_GTK_VERSION} | cut -d. -f1) + + + + + if test "x$GP_GTK_VERSION_MAJOR" = x3; then + GP_GTK3_TRUE= + GP_GTK3_FALSE='#' +else + GP_GTK3_TRUE='#' + GP_GTK3_FALSE= +fi + + + + + export PKG_CONFIG_PATH="${PKG_CONFIG_PATH#*:}" + test -z "${PKG_CONFIG_PATH}" && unset PKG_CONFIG_PATH + + + + # Check whether --enable-cppcheck was given. +if test "${enable_cppcheck+set}" = set; then : + enableval=$enable_cppcheck; enable_cppcheck="$enableval" +else + enable_cppcheck="auto" +fi + + + gp_have_cppcheck=no + if test "x$enable_cppcheck" != xno; then : + # Extract the first word of "cppcheck", so it can be a program name with args. +set dummy cppcheck; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_CPPCHECK+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $CPPCHECK in + [\\/]* | ?:[\\/]*) + ac_cv_path_CPPCHECK="$CPPCHECK" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_CPPCHECK="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_CPPCHECK" && ac_cv_path_CPPCHECK="NONE" + ;; +esac +fi +CPPCHECK=$ac_cv_path_CPPCHECK +if test -n "$CPPCHECK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPCHECK" >&5 +$as_echo "$CPPCHECK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test "x$CPPCHECK" != xNONE; then : + gp_have_cppcheck=yes + +else + gp_have_cppcheck=no + if test "x$enable_cppcheck" != xauto; then : + as_fn_error $? "cannot find cppcheck" "$LINENO" 5 +fi +fi +fi + if test "x$gp_have_cppcheck" = xyes; then + HAVE_CPPCHECK_TRUE= + HAVE_CPPCHECK_FALSE='#' +else + HAVE_CPPCHECK_TRUE='#' + HAVE_CPPCHECK_FALSE= +fi + + + build_feature_statusmsg+="Static code checking:$gp_have_cppcheck +" + + + + # Check whether --enable-extra-c-warnings was given. +if test "${enable_extra_c_warnings+set}" = set; then : + enableval=$enable_extra_c_warnings; enable_extra_c_warnings=$enableval +else + enable_extra_c_warnings=yes +fi + + + GP_CFLAGS= + if test "x$enable_extra_c_warnings" != xno; then : + + enable_extra_c_warnings=yes + for flag in -Wall \ + -Wimplicit-function-declaration \ + -Wmissing-parameter-type \ + -Wold-style-declaration \ + -Wpointer-arith \ + -Wshadow \ + -Wundef \ + -Wwrite-strings + do + + gp_check_cflag_CFLAGS="$CFLAGS" + CFLAGS="$flag" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler understands $CFLAGS" >&5 +$as_echo_n "checking whether the C compiler understands $CFLAGS... " >&6; } + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int main(void) {return 0;} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + GP_CFLAGS="${GP_CFLAGS} $flag" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + CFLAGS="$gp_check_cflag_CFLAGS" + + done + +fi + + + build_feature_statusmsg+="Extra C compiler warnings:$enable_extra_c_warnings +" + + + + + + # Check whether --enable-addons was given. +if test "${enable_addons+set}" = set; then : + enableval=$enable_addons; enable_addons=$enableval +else + enable_addons=auto +fi + + + + + + + if test "$enable_addons" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Addons" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Addons... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_addons" = yes; then : + as_fn_error $? "Addons is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_addons" = auto; then : + enable_addons=no +fi +fi +fi + + + + if test "$enable_addons" = "auto"; then + enable_addons=yes + fi + if test "$enable_addons" = yes; then + ENABLE_ADDONS_TRUE= + ENABLE_ADDONS_FALSE='#' +else + ENABLE_ADDONS_TRUE='#' + ENABLE_ADDONS_FALSE= +fi + + + plugins_statusmsg+="Addons:$enable_addons +" + + + ac_config_files="$ac_config_files addons/Makefile addons/src/Makefile" + + + + + # Check whether --enable-autoclose was given. +if test "${enable_autoclose+set}" = set; then : + enableval=$enable_autoclose; enable_autoclose=$enableval +else + enable_autoclose=auto +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_autoclose" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Autoclose" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Autoclose... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_autoclose" = yes; then : + as_fn_error $? "Autoclose is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_autoclose" = auto; then : + enable_autoclose=no +fi +fi +fi + + fi + + if test "$enable_autoclose" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for AUTOCLOSE" >&5 +$as_echo_n "checking for AUTOCLOSE... " >&6; } + +if test -n "$AUTOCLOSE_CFLAGS"; then + pkg_cv_AUTOCLOSE_CFLAGS="$AUTOCLOSE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_AUTOCLOSE_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$AUTOCLOSE_LIBS"; then + pkg_cv_AUTOCLOSE_LIBS="$AUTOCLOSE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_AUTOCLOSE_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + AUTOCLOSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + else + AUTOCLOSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$AUTOCLOSE_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= 2.8) were not met: + +$AUTOCLOSE_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables AUTOCLOSE_CFLAGS +and AUTOCLOSE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables AUTOCLOSE_CFLAGS +and AUTOCLOSE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + AUTOCLOSE_CFLAGS=$pkg_cv_AUTOCLOSE_CFLAGS + AUTOCLOSE_LIBS=$pkg_cv_AUTOCLOSE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_autoclose" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for AUTOCLOSE" >&5 +$as_echo_n "checking for AUTOCLOSE... " >&6; } + +if test -n "$AUTOCLOSE_CFLAGS"; then + pkg_cv_AUTOCLOSE_CFLAGS="$AUTOCLOSE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_AUTOCLOSE_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$AUTOCLOSE_LIBS"; then + pkg_cv_AUTOCLOSE_LIBS="$AUTOCLOSE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_AUTOCLOSE_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + AUTOCLOSE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + else + AUTOCLOSE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$AUTOCLOSE_PKG_ERRORS" >&5 + + enable_autoclose=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_autoclose=no +else + AUTOCLOSE_CFLAGS=$pkg_cv_AUTOCLOSE_CFLAGS + AUTOCLOSE_LIBS=$pkg_cv_AUTOCLOSE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_autoclose" = "auto"; then + enable_autoclose=yes + fi + if test "$enable_autoclose" = yes; then + ENABLE_AUTOCLOSE_TRUE= + ENABLE_AUTOCLOSE_FALSE='#' +else + ENABLE_AUTOCLOSE_TRUE='#' + ENABLE_AUTOCLOSE_FALSE= +fi + + + plugins_statusmsg+="Autoclose:$enable_autoclose +" + + + ac_config_files="$ac_config_files autoclose/Makefile autoclose/src/Makefile" + + + + + # Check whether --enable-codenav was given. +if test "${enable_codenav+set}" = set; then : + enableval=$enable_codenav; enable_codenav=$enableval +else + enable_codenav=yes +fi + + + + if test "$enable_codenav" = "auto"; then + enable_codenav=yes + fi + if test "$enable_codenav" = yes; then + ENABLE_CODENAV_TRUE= + ENABLE_CODENAV_FALSE='#' +else + ENABLE_CODENAV_TRUE='#' + ENABLE_CODENAV_FALSE= +fi + + + plugins_statusmsg+="CodeNav:$enable_codenav +" + + + ac_config_files="$ac_config_files codenav/Makefile codenav/src/Makefile" + + + + + # Check whether --enable-commander was given. +if test "${enable_commander+set}" = set; then : + enableval=$enable_commander; enable_commander=$enableval +else + enable_commander=auto +fi + + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_commander" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Commander" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Commander... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_commander" = yes; then : + as_fn_error $? "Commander is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_commander" = auto; then : + enable_commander=no +fi +fi +fi + + fi + + if test "$enable_commander" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for COMMANDER" >&5 +$as_echo_n "checking for COMMANDER... " >&6; } + +if test -n "$COMMANDER_CFLAGS"; then + pkg_cv_COMMANDER_CFLAGS="$COMMANDER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_COMMANDER_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$COMMANDER_LIBS"; then + pkg_cv_COMMANDER_LIBS="$COMMANDER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_COMMANDER_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + COMMANDER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>&1` + else + COMMANDER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$COMMANDER_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4) were not met: + +$COMMANDER_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables COMMANDER_CFLAGS +and COMMANDER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables COMMANDER_CFLAGS +and COMMANDER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + COMMANDER_CFLAGS=$pkg_cv_COMMANDER_CFLAGS + COMMANDER_LIBS=$pkg_cv_COMMANDER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_commander" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for COMMANDER" >&5 +$as_echo_n "checking for COMMANDER... " >&6; } + +if test -n "$COMMANDER_CFLAGS"; then + pkg_cv_COMMANDER_CFLAGS="$COMMANDER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_COMMANDER_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$COMMANDER_LIBS"; then + pkg_cv_COMMANDER_LIBS="$COMMANDER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_COMMANDER_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + COMMANDER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>&1` + else + COMMANDER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.16 + glib-2.0 >= 2.4" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$COMMANDER_PKG_ERRORS" >&5 + + enable_commander=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_commander=no +else + COMMANDER_CFLAGS=$pkg_cv_COMMANDER_CFLAGS + COMMANDER_LIBS=$pkg_cv_COMMANDER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_commander" = "auto"; then + enable_commander=yes + fi + if test "$enable_commander" = yes; then + ENABLE_COMMANDER_TRUE= + ENABLE_COMMANDER_FALSE='#' +else + ENABLE_COMMANDER_TRUE='#' + ENABLE_COMMANDER_FALSE= +fi + + + plugins_statusmsg+="Commander:$enable_commander +" + + + + ac_config_files="$ac_config_files commander/Makefile commander/src/Makefile" + + + + + # Check whether --enable-debugger was given. +if test "${enable_debugger+set}" = set; then : + enableval=$enable_debugger; enable_debugger=$enableval +else + enable_debugger=auto +fi + + + + + + + if test "$enable_debugger" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Debugger" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Debugger... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_debugger" = yes; then : + as_fn_error $? "Debugger is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_debugger" = auto; then : + enable_debugger=no +fi +fi +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_debugger" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin debugger" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin debugger... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_debugger" = yes; then : + as_fn_error $? "debugger is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_debugger" = auto; then : + enable_debugger=no +fi +fi +fi + + fi + + if test "$enable_debugger" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5 +$as_echo_n "checking for VTE... " >&6; } + +if test -n "$VTE_CFLAGS"; then + pkg_cv_VTE_CFLAGS="$VTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte >= 0.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$VTE_LIBS"; then + pkg_cv_VTE_LIBS="$VTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte >= 0.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte >= 0.24" 2>&1` + else + VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte >= 0.24" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$VTE_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (vte >= 0.24) were not met: + +$VTE_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables VTE_CFLAGS +and VTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables VTE_CFLAGS +and VTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + VTE_CFLAGS=$pkg_cv_VTE_CFLAGS + VTE_LIBS=$pkg_cv_VTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_debugger" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5 +$as_echo_n "checking for VTE... " >&6; } + +if test -n "$VTE_CFLAGS"; then + pkg_cv_VTE_CFLAGS="$VTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte >= 0.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$VTE_LIBS"; then + pkg_cv_VTE_LIBS="$VTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.24\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.24") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte >= 0.24" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte >= 0.24" 2>&1` + else + VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte >= 0.24" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$VTE_PKG_ERRORS" >&5 + + enable_debugger=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_debugger=no +else + VTE_CFLAGS=$pkg_cv_VTE_CFLAGS + VTE_LIBS=$pkg_cv_VTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_debugger" = "auto"; then + enable_debugger=yes + fi + if test "$enable_debugger" = yes; then + ENABLE_DEBUGGER_TRUE= + ENABLE_DEBUGGER_FALSE='#' +else + ENABLE_DEBUGGER_TRUE='#' + ENABLE_DEBUGGER_FALSE= +fi + + + plugins_statusmsg+="Debugger:$enable_debugger +" + + + ac_config_files="$ac_config_files debugger/Makefile debugger/src/Makefile debugger/img/Makefile" + + + + + # Check whether --enable-defineformat was given. +if test "${enable_defineformat+set}" = set; then : + enableval=$enable_defineformat; enable_defineformat=$enableval +else + enable_defineformat=auto +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_defineformat" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Defineformat" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Defineformat... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_defineformat" = yes; then : + as_fn_error $? "Defineformat is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_defineformat" = auto; then : + enable_defineformat=no +fi +fi +fi + + fi + + if test "$enable_defineformat" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEFINEFORMAT" >&5 +$as_echo_n "checking for DEFINEFORMAT... " >&6; } + +if test -n "$DEFINEFORMAT_CFLAGS"; then + pkg_cv_DEFINEFORMAT_CFLAGS="$DEFINEFORMAT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEFINEFORMAT_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$DEFINEFORMAT_LIBS"; then + pkg_cv_DEFINEFORMAT_LIBS="$DEFINEFORMAT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEFINEFORMAT_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + DEFINEFORMAT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + else + DEFINEFORMAT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$DEFINEFORMAT_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= 2.8) were not met: + +$DEFINEFORMAT_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables DEFINEFORMAT_CFLAGS +and DEFINEFORMAT_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables DEFINEFORMAT_CFLAGS +and DEFINEFORMAT_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + DEFINEFORMAT_CFLAGS=$pkg_cv_DEFINEFORMAT_CFLAGS + DEFINEFORMAT_LIBS=$pkg_cv_DEFINEFORMAT_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_defineformat" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEFINEFORMAT" >&5 +$as_echo_n "checking for DEFINEFORMAT... " >&6; } + +if test -n "$DEFINEFORMAT_CFLAGS"; then + pkg_cv_DEFINEFORMAT_CFLAGS="$DEFINEFORMAT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEFINEFORMAT_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$DEFINEFORMAT_LIBS"; then + pkg_cv_DEFINEFORMAT_LIBS="$DEFINEFORMAT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= 2.8\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= 2.8") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEFINEFORMAT_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= 2.8" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + DEFINEFORMAT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + else + DEFINEFORMAT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= 2.8" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$DEFINEFORMAT_PKG_ERRORS" >&5 + + enable_defineformat=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_defineformat=no +else + DEFINEFORMAT_CFLAGS=$pkg_cv_DEFINEFORMAT_CFLAGS + DEFINEFORMAT_LIBS=$pkg_cv_DEFINEFORMAT_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_defineformat" = "auto"; then + enable_defineformat=yes + fi + if test "$enable_defineformat" = yes; then + ENABLE_DEFINEFORMAT_TRUE= + ENABLE_DEFINEFORMAT_FALSE='#' +else + ENABLE_DEFINEFORMAT_TRUE='#' + ENABLE_DEFINEFORMAT_FALSE= +fi + + + plugins_statusmsg+="Defineformat:$enable_defineformat +" + + + ac_config_files="$ac_config_files defineformat/Makefile defineformat/src/Makefile" + + + + + # Check whether --enable-devhelp was given. +if test "${enable_devhelp+set}" = set; then : + enableval=$enable_devhelp; enable_devhelp=$enableval +else + enable_devhelp=auto +fi + + + + GTK_VERSION=2.16 + WEBKIT_VERSION=1.1.13 + GCONF_VERSION=2.6.0 + LIBWNCK_VERSION=2.10.0 + + # Extract the first word of "glib-genmarshal", so it can be a program name with args. +set dummy glib-genmarshal; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GLIB_GENMARSHAL+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GLIB_GENMARSHAL in + [\\/]* | ?:[\\/]*) + ac_cv_path_GLIB_GENMARSHAL="$GLIB_GENMARSHAL" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GLIB_GENMARSHAL="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +GLIB_GENMARSHAL=$ac_cv_path_GLIB_GENMARSHAL +if test -n "$GLIB_GENMARSHAL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_GENMARSHAL" >&5 +$as_echo "$GLIB_GENMARSHAL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + # Extract the first word of "glib-mkenums", so it can be a program name with args. +set dummy glib-mkenums; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GLIB_MKENUMS+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GLIB_MKENUMS in + [\\/]* | ?:[\\/]*) + ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS +if test -n "$GLIB_MKENUMS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_MKENUMS" >&5 +$as_echo "$GLIB_MKENUMS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + + + gtk_dep=2 + if test $gtk_dep -ne 0; then + + + + if test "$enable_devhelp" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin devhelp" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin devhelp... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_devhelp" = yes; then : + as_fn_error $? "devhelp is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_devhelp" = auto; then : + enable_devhelp=no +fi +fi +fi + + fi + + if test "$enable_devhelp" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEVHELP" >&5 +$as_echo_n "checking for DEVHELP... " >&6; } + +if test -n "$DEVHELP_CFLAGS"; then + pkg_cv_DEVHELP_CFLAGS="$DEVHELP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \${GTK_VERSION} + webkit-1.0 >= \${WEBKIT_VERSION} + libwnck-1.0 >= \${LIBWNCK_VERSION} + gconf-2.0 >= \${GCONF_VERSION} + gthread-2.0 + zlib\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEVHELP_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$DEVHELP_LIBS"; then + pkg_cv_DEVHELP_LIBS="$DEVHELP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \${GTK_VERSION} + webkit-1.0 >= \${WEBKIT_VERSION} + libwnck-1.0 >= \${LIBWNCK_VERSION} + gconf-2.0 >= \${GCONF_VERSION} + gthread-2.0 + zlib\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEVHELP_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + DEVHELP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>&1` + else + DEVHELP_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$DEVHELP_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib) were not met: + +$DEVHELP_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables DEVHELP_CFLAGS +and DEVHELP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables DEVHELP_CFLAGS +and DEVHELP_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + DEVHELP_CFLAGS=$pkg_cv_DEVHELP_CFLAGS + DEVHELP_LIBS=$pkg_cv_DEVHELP_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_devhelp" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEVHELP" >&5 +$as_echo_n "checking for DEVHELP... " >&6; } + +if test -n "$DEVHELP_CFLAGS"; then + pkg_cv_DEVHELP_CFLAGS="$DEVHELP_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \${GTK_VERSION} + webkit-1.0 >= \${WEBKIT_VERSION} + libwnck-1.0 >= \${LIBWNCK_VERSION} + gconf-2.0 >= \${GCONF_VERSION} + gthread-2.0 + zlib\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEVHELP_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$DEVHELP_LIBS"; then + pkg_cv_DEVHELP_LIBS="$DEVHELP_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= \${GTK_VERSION} + webkit-1.0 >= \${WEBKIT_VERSION} + libwnck-1.0 >= \${LIBWNCK_VERSION} + gconf-2.0 >= \${GCONF_VERSION} + gthread-2.0 + zlib\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_DEVHELP_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + DEVHELP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>&1` + else + DEVHELP_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= ${GTK_VERSION} + webkit-1.0 >= ${WEBKIT_VERSION} + libwnck-1.0 >= ${LIBWNCK_VERSION} + gconf-2.0 >= ${GCONF_VERSION} + gthread-2.0 + zlib" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$DEVHELP_PKG_ERRORS" >&5 + + enable_devhelp=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_devhelp=no +else + DEVHELP_CFLAGS=$pkg_cv_DEVHELP_CFLAGS + DEVHELP_LIBS=$pkg_cv_DEVHELP_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_devhelp" = "auto"; then + enable_devhelp=yes + fi + if test "$enable_devhelp" = yes; then + ENABLE_DEVHELP_TRUE= + ENABLE_DEVHELP_FALSE='#' +else + ENABLE_DEVHELP_TRUE='#' + ENABLE_DEVHELP_FALSE= +fi + + + plugins_statusmsg+="DevHelp:$enable_devhelp +" + + + + ac_config_files="$ac_config_files devhelp/Makefile devhelp/devhelp/Makefile devhelp/src/Makefile devhelp/data/Makefile" + + + + + # Check whether --enable-geanydoc was given. +if test "${enable_geanydoc+set}" = set; then : + enableval=$enable_geanydoc; enable_geanydoc=$enableval +else + enable_geanydoc=auto +fi + + + + + + + if test "$enable_geanydoc" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyDoc" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyDoc... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanydoc" = yes; then : + as_fn_error $? "GeanyDoc is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanydoc" = auto; then : + enable_geanydoc=no +fi +fi +fi + + + + if test "$enable_geanydoc" = "auto"; then + enable_geanydoc=yes + fi + if test "$enable_geanydoc" = yes; then + ENABLE_GEANYDOC_TRUE= + ENABLE_GEANYDOC_FALSE='#' +else + ENABLE_GEANYDOC_TRUE='#' + ENABLE_GEANYDOC_FALSE= +fi + + + plugins_statusmsg+="GeanyDoc:$enable_geanydoc +" + + + ac_config_files="$ac_config_files geanydoc/Makefile geanydoc/src/Makefile geanydoc/tests/Makefile" + + + + + # Check whether --enable-geanyextrasel was given. +if test "${enable_geanyextrasel+set}" = set; then : + enableval=$enable_geanyextrasel; enable_geanyextrasel=$enableval +else + enable_geanyextrasel=yes +fi + + + + if test "$enable_geanyextrasel" = "auto"; then + enable_geanyextrasel=yes + fi + if test "$enable_geanyextrasel" = yes; then + ENABLE_GEANYEXTRASEL_TRUE= + ENABLE_GEANYEXTRASEL_FALSE='#' +else + ENABLE_GEANYEXTRASEL_TRUE='#' + ENABLE_GEANYEXTRASEL_FALSE= +fi + + + plugins_statusmsg+="GeanyExtraSel:$enable_geanyextrasel +" + + + ac_config_files="$ac_config_files geanyextrasel/Makefile geanyextrasel/src/Makefile" + + + + + # Check whether --enable-geanygendoc was given. +if test "${enable_geanygendoc+set}" = set; then : + enableval=$enable_geanygendoc; enable_geanygendoc=$enableval +else + enable_geanygendoc=auto +fi + + + + GTK_VERSION=2.12 + GLIB_VERSION=2.14 + GIO_VERSION=2.18 + CTPL_VERSION=0.3 + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_geanygendoc" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyGenDoc" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyGenDoc... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanygendoc" = yes; then : + as_fn_error $? "GeanyGenDoc is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanygendoc" = auto; then : + enable_geanygendoc=no +fi +fi +fi + + fi + + if test "$enable_geanygendoc" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GEANYGENDOC" >&5 +$as_echo_n "checking for GEANYGENDOC... " >&6; } + +if test -n "$GEANYGENDOC_CFLAGS"; then + pkg_cv_GEANYGENDOC_CFLAGS="$GEANYGENDOC_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + ctpl >= \${CTPL_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANYGENDOC_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GEANYGENDOC_LIBS"; then + pkg_cv_GEANYGENDOC_LIBS="$GEANYGENDOC_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + ctpl >= \${CTPL_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANYGENDOC_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GEANYGENDOC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>&1` + else + GEANYGENDOC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GEANYGENDOC_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}) were not met: + +$GEANYGENDOC_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GEANYGENDOC_CFLAGS +and GEANYGENDOC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GEANYGENDOC_CFLAGS +and GEANYGENDOC_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GEANYGENDOC_CFLAGS=$pkg_cv_GEANYGENDOC_CFLAGS + GEANYGENDOC_LIBS=$pkg_cv_GEANYGENDOC_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_geanygendoc" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GEANYGENDOC" >&5 +$as_echo_n "checking for GEANYGENDOC... " >&6; } + +if test -n "$GEANYGENDOC_CFLAGS"; then + pkg_cv_GEANYGENDOC_CFLAGS="$GEANYGENDOC_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + ctpl >= \${CTPL_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANYGENDOC_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GEANYGENDOC_LIBS"; then + pkg_cv_GEANYGENDOC_LIBS="$GEANYGENDOC_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + ctpl >= \${CTPL_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GEANYGENDOC_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GEANYGENDOC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>&1` + else + GEANYGENDOC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + ctpl >= ${CTPL_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GEANYGENDOC_PKG_ERRORS" >&5 + + enable_geanygendoc=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_geanygendoc=no +else + GEANYGENDOC_CFLAGS=$pkg_cv_GEANYGENDOC_CFLAGS + GEANYGENDOC_LIBS=$pkg_cv_GEANYGENDOC_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + # Extract the first word of "rst2html", so it can be a program name with args. +set dummy rst2html; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_RST2HTML+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $RST2HTML in + [\\/]* | ?:[\\/]*) + ac_cv_path_RST2HTML="$RST2HTML" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_RST2HTML="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_RST2HTML" && ac_cv_path_RST2HTML="no" + ;; +esac +fi +RST2HTML=$ac_cv_path_RST2HTML +if test -n "$RST2HTML"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RST2HTML" >&5 +$as_echo "$RST2HTML" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + if test "x$RST2HTML" != "xno"; then + BUILD_RST_TRUE= + BUILD_RST_FALSE='#' +else + BUILD_RST_TRUE='#' + BUILD_RST_FALSE= +fi + + + + if test "$enable_geanygendoc" = "auto"; then + enable_geanygendoc=yes + fi + if test "$enable_geanygendoc" = yes; then + ENABLE_GEANYGENDOC_TRUE= + ENABLE_GEANYGENDOC_FALSE='#' +else + ENABLE_GEANYGENDOC_TRUE='#' + ENABLE_GEANYGENDOC_FALSE= +fi + + + plugins_statusmsg+="GeanyGenDoc:$enable_geanygendoc +" + + + + ac_config_files="$ac_config_files geanygendoc/Makefile geanygendoc/src/Makefile geanygendoc/data/Makefile geanygendoc/data/filetypes/Makefile geanygendoc/docs/Makefile" + + + + + # Check whether --enable-geanyinsertnum was given. +if test "${enable_geanyinsertnum+set}" = set; then : + enableval=$enable_geanyinsertnum; enable_geanyinsertnum=$enableval +else + enable_geanyinsertnum=auto +fi + + + + if test "$enable_geanyinsertnum" = "auto"; then + enable_geanyinsertnum=yes + fi + if test "$enable_geanyinsertnum" = yes; then + ENABLE_GEANYINSERTNUM_TRUE= + ENABLE_GEANYINSERTNUM_FALSE='#' +else + ENABLE_GEANYINSERTNUM_TRUE='#' + ENABLE_GEANYINSERTNUM_FALSE= +fi + + + plugins_statusmsg+="GeanyInsertNum:$enable_geanyinsertnum +" + + + ac_config_files="$ac_config_files geanyinsertnum/Makefile geanyinsertnum/src/Makefile" + + + + + # Check whether --enable-geanylatex was given. +if test "${enable_geanylatex+set}" = set; then : + enableval=$enable_geanylatex; enable_geanylatex=$enableval +else + enable_geanylatex=auto +fi + + + + + + + if test "$enable_geanylatex" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyLaTeX" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyLaTeX... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanylatex" = yes; then : + as_fn_error $? "GeanyLaTeX is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanylatex" = auto; then : + enable_geanylatex=no +fi +fi +fi + + + + if test "$enable_geanylatex" = "auto"; then + enable_geanylatex=yes + fi + if test "$enable_geanylatex" = yes; then + ENABLE_GEANYLATEX_TRUE= + ENABLE_GEANYLATEX_FALSE='#' +else + ENABLE_GEANYLATEX_TRUE='#' + ENABLE_GEANYLATEX_FALSE= +fi + + + plugins_statusmsg+="GeanyLaTeX:$enable_geanylatex +" + + + ac_config_files="$ac_config_files geanylatex/Makefile geanylatex/doc/Makefile geanylatex/src/Makefile" + + + + + # Check whether --enable-geanylipsum was given. +if test "${enable_geanylipsum+set}" = set; then : + enableval=$enable_geanylipsum; enable_geanylipsum=$enableval +else + enable_geanylipsum=auto +fi + + + + if test "$enable_geanylipsum" = "auto"; then + enable_geanylipsum=yes + fi + if test "$enable_geanylipsum" = yes; then + ENABLE_GEANYLIPSUM_TRUE= + ENABLE_GEANYLIPSUM_FALSE='#' +else + ENABLE_GEANYLIPSUM_TRUE='#' + ENABLE_GEANYLIPSUM_FALSE= +fi + + + plugins_statusmsg+="GeanyLipsum:$enable_geanylipsum +" + + + ac_config_files="$ac_config_files geanylipsum/Makefile geanylipsum/src/Makefile" + + + + + # Check whether --enable-geanylua was given. +if test "${enable_geanylua+set}" = set; then : + enableval=$enable_geanylua; enable_geanylua=$enableval +else + enable_geanylua=auto +fi + + + + +# Check whether --with-lua-pkg was given. +if test "${with_lua_pkg+set}" = set; then : + withval=$with_lua_pkg; LUA_PKG_NAME=${withval%.pc} +else + LUA_PKG_NAME=lua5.1 + + for L in lua5.1 lua51 lua-5.1 lua; do + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$L\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$L") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + LUA_PKG_NAME=$L; break +fi + done +fi + + + LUA_VERSION=5.1 + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_geanylua" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyLua" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyLua... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanylua" = yes; then : + as_fn_error $? "GeanyLua is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanylua" = auto; then : + enable_geanylua=no +fi +fi +fi + + fi + + if test "$enable_geanylua" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LUA" >&5 +$as_echo_n "checking for LUA... " >&6; } + +if test -n "$LUA_CFLAGS"; then + pkg_cv_LUA_CFLAGS="$LUA_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${LUA_PKG_NAME} >= \${LUA_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "${LUA_PKG_NAME} >= ${LUA_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$LUA_LIBS"; then + pkg_cv_LUA_LIBS="$LUA_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${LUA_PKG_NAME} >= \${LUA_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "${LUA_PKG_NAME} >= ${LUA_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>&1` + else + LUA_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$LUA_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (${LUA_PKG_NAME} >= ${LUA_VERSION}) were not met: + +$LUA_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables LUA_CFLAGS +and LUA_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables LUA_CFLAGS +and LUA_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + LUA_CFLAGS=$pkg_cv_LUA_CFLAGS + LUA_LIBS=$pkg_cv_LUA_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_geanylua" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LUA" >&5 +$as_echo_n "checking for LUA... " >&6; } + +if test -n "$LUA_CFLAGS"; then + pkg_cv_LUA_CFLAGS="$LUA_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${LUA_PKG_NAME} >= \${LUA_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "${LUA_PKG_NAME} >= ${LUA_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LUA_CFLAGS=`$PKG_CONFIG --cflags "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$LUA_LIBS"; then + pkg_cv_LUA_LIBS="$LUA_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\${LUA_PKG_NAME} >= \${LUA_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "${LUA_PKG_NAME} >= ${LUA_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LUA_LIBS=`$PKG_CONFIG --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + LUA_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>&1` + else + LUA_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "${LUA_PKG_NAME} >= ${LUA_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$LUA_PKG_ERRORS" >&5 + + enable_geanylua=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_geanylua=no +else + LUA_CFLAGS=$pkg_cv_LUA_CFLAGS + LUA_LIBS=$pkg_cv_LUA_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_geanylua" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyLua" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyLua... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanylua" = yes; then : + as_fn_error $? "GeanyLua is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanylua" = auto; then : + enable_geanylua=no +fi +fi +fi + + fi + + if test "$enable_geanylua" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GMODULE" >&5 +$as_echo_n "checking for GMODULE... " >&6; } + +if test -n "$GMODULE_CFLAGS"; then + pkg_cv_GMODULE_CFLAGS="$GMODULE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GMODULE_LIBS"; then + pkg_cv_GMODULE_LIBS="$GMODULE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GMODULE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gmodule-2.0" 2>&1` + else + GMODULE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gmodule-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GMODULE_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (gmodule-2.0) were not met: + +$GMODULE_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GMODULE_CFLAGS +and GMODULE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GMODULE_CFLAGS +and GMODULE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS + GMODULE_LIBS=$pkg_cv_GMODULE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_geanylua" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GMODULE" >&5 +$as_echo_n "checking for GMODULE... " >&6; } + +if test -n "$GMODULE_CFLAGS"; then + pkg_cv_GMODULE_CFLAGS="$GMODULE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GMODULE_LIBS"; then + pkg_cv_GMODULE_LIBS="$GMODULE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GMODULE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gmodule-2.0" 2>&1` + else + GMODULE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gmodule-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GMODULE_PKG_ERRORS" >&5 + + enable_geanylua=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_geanylua=no +else + GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS + GMODULE_LIBS=$pkg_cv_GMODULE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_geanylua" = "auto"; then + enable_geanylua=yes + fi + if test "$enable_geanylua" = yes; then + ENABLE_GEANYLUA_TRUE= + ENABLE_GEANYLUA_FALSE='#' +else + ENABLE_GEANYLUA_TRUE='#' + ENABLE_GEANYLUA_FALSE= +fi + + + plugins_statusmsg+="GeanyLua:$enable_geanylua +" + + + + ac_config_files="$ac_config_files geanylua/examples/edit/Makefile geanylua/examples/scripting/Makefile geanylua/examples/info/Makefile geanylua/examples/work/Makefile geanylua/examples/dialogs/Makefile geanylua/examples/Makefile geanylua/docs/Makefile geanylua/Makefile" + + + + + # Check whether --enable-geanymacro was given. +if test "${enable_geanymacro+set}" = set; then : + enableval=$enable_geanymacro; enable_geanymacro=$enableval +else + enable_geanymacro=auto +fi + + + + + + + if test "$enable_geanymacro" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyMacro" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyMacro... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanymacro" = yes; then : + as_fn_error $? "GeanyMacro is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanymacro" = auto; then : + enable_geanymacro=no +fi +fi +fi + + + + if test "$enable_geanymacro" = "auto"; then + enable_geanymacro=yes + fi + if test "$enable_geanymacro" = yes; then + ENABLE_GEANYMACRO_TRUE= + ENABLE_GEANYMACRO_FALSE='#' +else + ENABLE_GEANYMACRO_TRUE='#' + ENABLE_GEANYMACRO_FALSE= +fi + + + plugins_statusmsg+="GeanyMacro:$enable_geanymacro +" + + + ac_config_files="$ac_config_files geanymacro/Makefile geanymacro/src/Makefile" + + + + + # Check whether --enable-geanyminiscript was given. +if test "${enable_geanyminiscript+set}" = set; then : + enableval=$enable_geanyminiscript; enable_geanyminiscript=$enableval +else + enable_geanyminiscript=auto +fi + + + + if test "$enable_geanyminiscript" = "auto"; then + enable_geanyminiscript=yes + fi + if test "$enable_geanyminiscript" = yes; then + ENABLE_GEANYMINISCRIPT_TRUE= + ENABLE_GEANYMINISCRIPT_FALSE='#' +else + ENABLE_GEANYMINISCRIPT_TRUE='#' + ENABLE_GEANYMINISCRIPT_FALSE= +fi + + + plugins_statusmsg+="GeanyMiniScript:$enable_geanyminiscript +" + + + ac_config_files="$ac_config_files geanyminiscript/Makefile geanyminiscript/src/Makefile" + + + + + # Check whether --enable-geanynumberedbookmarks was given. +if test "${enable_geanynumberedbookmarks+set}" = set; then : + enableval=$enable_geanynumberedbookmarks; enable_geanynumberedbookmarks=$enableval +else + enable_geanynumberedbookmarks=auto +fi + + + + + + + if test "$enable_geanynumberedbookmarks" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyNumberedBookmarks" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyNumberedBookmarks... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanynumberedbookmarks" = yes; then : + as_fn_error $? "GeanyNumberedBookmarks is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanynumberedbookmarks" = auto; then : + enable_geanynumberedbookmarks=no +fi +fi +fi + + + + if test "$enable_geanynumberedbookmarks" = "auto"; then + enable_geanynumberedbookmarks=yes + fi + if test "$enable_geanynumberedbookmarks" = yes; then + ENABLE_GEANYNUMBEREDBOOKMARKS_TRUE= + ENABLE_GEANYNUMBEREDBOOKMARKS_FALSE='#' +else + ENABLE_GEANYNUMBEREDBOOKMARKS_TRUE='#' + ENABLE_GEANYNUMBEREDBOOKMARKS_FALSE= +fi + + + plugins_statusmsg+="GeanyNumberedBookmarks:$enable_geanynumberedbookmarks +" + + + ac_config_files="$ac_config_files geanynumberedbookmarks/Makefile geanynumberedbookmarks/src/Makefile" + + + + + # Check whether --enable-geanyprj was given. +if test "${enable_geanyprj+set}" = set; then : + enableval=$enable_geanyprj; enable_geanyprj=$enableval +else + enable_geanyprj=auto +fi + + + + + + + if test "$enable_geanyprj" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyPrj" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyPrj... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanyprj" = yes; then : + as_fn_error $? "GeanyPrj is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanyprj" = auto; then : + enable_geanyprj=no +fi +fi +fi + + + + if test "$enable_geanyprj" = "auto"; then + enable_geanyprj=yes + fi + if test "$enable_geanyprj" = yes; then + ENABLE_GEANYPRJ_TRUE= + ENABLE_GEANYPRJ_FALSE='#' +else + ENABLE_GEANYPRJ_TRUE='#' + ENABLE_GEANYPRJ_FALSE= +fi + + + plugins_statusmsg+="GeanyPrj:$enable_geanyprj +" + + + ac_config_files="$ac_config_files geanyprj/Makefile geanyprj/src/Makefile geanyprj/tests/Makefile" + + + + + # Check whether --enable-geanypy was given. +if test "${enable_geanypy+set}" = set; then : + enableval=$enable_geanypy; enable_geanypy=$enableval +else + enable_geanypy=auto +fi + + + + + + + if test "$enable_geanypy" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Geanypy" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Geanypy... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanypy" = yes; then : + as_fn_error $? "Geanypy is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanypy" = auto; then : + enable_geanypy=no +fi +fi +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_geanypy" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Geanypy" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Geanypy... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanypy" = yes; then : + as_fn_error $? "Geanypy is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanypy" = auto; then : + enable_geanypy=no +fi +fi +fi + + fi + + if test "$enable_geanypy" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PYGTK" >&5 +$as_echo_n "checking for PYGTK... " >&6; } + +if test -n "$PYGTK_CFLAGS"; then + pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$PYGTK_LIBS"; then + pkg_cv_PYGTK_LIBS="$PYGTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pygtk-2.0" 2>&1` + else + PYGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pygtk-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$PYGTK_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (pygtk-2.0) were not met: + +$PYGTK_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables PYGTK_CFLAGS +and PYGTK_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables PYGTK_CFLAGS +and PYGTK_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS + PYGTK_LIBS=$pkg_cv_PYGTK_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_geanypy" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PYGTK" >&5 +$as_echo_n "checking for PYGTK... " >&6; } + +if test -n "$PYGTK_CFLAGS"; then + pkg_cv_PYGTK_CFLAGS="$PYGTK_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$PYGTK_LIBS"; then + pkg_cv_PYGTK_LIBS="$PYGTK_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + PYGTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "pygtk-2.0" 2>&1` + else + PYGTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "pygtk-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$PYGTK_PKG_ERRORS" >&5 + + enable_geanypy=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_geanypy=no +else + PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS + PYGTK_LIBS=$pkg_cv_PYGTK_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + if ! test x$enable_geanypy = xno; then : + + + # + # Allow the use of a (user set) custom python version + # + + + # Extract the first word of "python[$PYTHON_VERSION]", so it can be a program name with args. +set dummy python$PYTHON_VERSION; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_PYTHON+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $PYTHON in + [\\/]* | ?:[\\/]*) + ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +PYTHON=$ac_cv_path_PYTHON +if test -n "$PYTHON"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 +$as_echo "$PYTHON" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test -z "$PYTHON"; then + as_fn_error $? "Cannot find python$PYTHON_VERSION in your system path" "$LINENO" 5 + PYTHON_VERSION="" + fi + + # + # Check for a version of Python >= 2.1.0 + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a version of Python >= '2.1.0'" >&5 +$as_echo_n "checking for a version of Python >= '2.1.0'... " >&6; } + ac_supports_python_ver=`$PYTHON -c "import sys; \ + ver = sys.version.split ()[0]; \ + print (ver >= '2.1.0')"` + if test "$ac_supports_python_ver" != "True"; then + if test -z "$PYTHON_NOVERSIONCHECK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? " +This version of the AC_PYTHON_DEVEL macro +doesn't work properly with versions of Python before +2.1.0. You may need to re-run configure, setting the +variables PYTHON_CPPFLAGS, PYTHON_LDFLAGS, PYTHON_SITE_PKG, +PYTHON_EXTRA_LIBS and PYTHON_EXTRA_LDFLAGS by hand. +Moreover, to disable this check, set PYTHON_NOVERSIONCHECK +to something else than an empty string. + +See \`config.log' for more details" "$LINENO" 5; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: skip at user request" >&5 +$as_echo "skip at user request" >&6; } + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + fi + + # + # if the macro parameter ``version'' is set, honour it + # + if test -n ">= '2.6'"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a version of Python >= '2.6'" >&5 +$as_echo_n "checking for a version of Python >= '2.6'... " >&6; } + ac_supports_python_ver=`$PYTHON -c "import sys; \ + ver = sys.version.split ()[0]; \ + print (ver >= '2.6')"` + if test "$ac_supports_python_ver" = "True"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + as_fn_error $? "this package requires Python >= '2.6'. +If you have it installed, but it isn't the default Python +interpreter in your system path, please pass the PYTHON_VERSION +variable to configure. See \`\`configure --help'' for reference. +" "$LINENO" 5 + PYTHON_VERSION="" + fi + fi + + # + # Check if you have distutils, else fail + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the distutils Python package" >&5 +$as_echo_n "checking for the distutils Python package... " >&6; } + ac_distutils_result=`$PYTHON -c "import distutils" 2>&1` + if test -z "$ac_distutils_result"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + as_fn_error $? "cannot import Python module \"distutils\". +Please check your Python installation. The error was: +$ac_distutils_result" "$LINENO" 5 + PYTHON_VERSION="" + fi + + # + # Check for Python include path + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python include path" >&5 +$as_echo_n "checking for Python include path... " >&6; } + if test -z "$PYTHON_CPPFLAGS"; then + python_path=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_inc ());"` + plat_python_path=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_inc (plat_specific=1));"` + if test -n "${python_path}"; then + if test "${plat_python_path}" != "${python_path}"; then + python_path="-I$python_path -I$plat_python_path" + else + python_path="-I$python_path" + fi + fi + PYTHON_CPPFLAGS=$python_path + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_CPPFLAGS" >&5 +$as_echo "$PYTHON_CPPFLAGS" >&6; } + + + # + # Check for Python library path + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python library path" >&5 +$as_echo_n "checking for Python library path... " >&6; } + if test -z "$PYTHON_LDFLAGS"; then + # (makes two attempts to ensure we've got a version number + # from the interpreter) + ac_python_version=`cat<>confdefs.h <<_ACEOF +#define HAVE_PYTHON "$ac_python_version" +_ACEOF + + + # First, the library directory: + ac_python_libdir=`cat<&5 +$as_echo "$PYTHON_LDFLAGS" >&6; } + + + # + # Check for site packages + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python site-packages path" >&5 +$as_echo_n "checking for Python site-packages path... " >&6; } + if test -z "$PYTHON_SITE_PKG"; then + PYTHON_SITE_PKG=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_lib(0,0));"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_SITE_PKG" >&5 +$as_echo "$PYTHON_SITE_PKG" >&6; } + + + # + # libraries which must be linked in when embedding + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking python extra libraries" >&5 +$as_echo_n "checking python extra libraries... " >&6; } + if test -z "$PYTHON_EXTRA_LIBS"; then + PYTHON_EXTRA_LIBS=`$PYTHON -c "import distutils.sysconfig; \ + conf = distutils.sysconfig.get_config_var; \ + print (conf('LIBS'))"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_EXTRA_LIBS" >&5 +$as_echo "$PYTHON_EXTRA_LIBS" >&6; } + + + # + # linking flags needed when embedding + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking python extra linking flags" >&5 +$as_echo_n "checking python extra linking flags... " >&6; } + if test -z "$PYTHON_EXTRA_LDFLAGS"; then + PYTHON_EXTRA_LDFLAGS=`$PYTHON -c "import distutils.sysconfig; \ + conf = distutils.sysconfig.get_config_var; \ + print (conf('LINKFORSHARED'))"` + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_EXTRA_LDFLAGS" >&5 +$as_echo "$PYTHON_EXTRA_LDFLAGS" >&6; } + + + # + # final check to see if everything compiles alright + # + { $as_echo "$as_me:${as_lineno-$LINENO}: checking consistency of all components of python development environment" >&5 +$as_echo_n "checking consistency of all components of python development environment... " >&6; } + # save current global flags + ac_save_LIBS="$LIBS" + ac_save_CPPFLAGS="$CPPFLAGS" + LIBS="$ac_save_LIBS $PYTHON_LDFLAGS $PYTHON_EXTRA_LDFLAGS $PYTHON_EXTRA_LIBS" + CPPFLAGS="$ac_save_CPPFLAGS $PYTHON_CPPFLAGS" + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include +int +main () +{ +Py_Initialize(); + ; + return 0; +} + +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + pythonexists=yes +else + pythonexists=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + # turn back to default flags + CPPFLAGS="$ac_save_CPPFLAGS" + LIBS="$ac_save_LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pythonexists" >&5 +$as_echo "$pythonexists" >&6; } + + if test ! "x$pythonexists" = "xyes"; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? " + Could not link test program to Python. Maybe the main Python library has been + installed in some non-standard library path. If so, pass it to configure, + via the LDFLAGS environment variable. + Example: ./configure LDFLAGS=\"-L/usr/non-standard-path/python/lib\" + ============================================================================ + ERROR! + You probably have to install the development version of the Python package + for your distribution. The exact name of this package varies among them. + ============================================================================ + +See \`config.log' for more details" "$LINENO" 5; } + PYTHON_VERSION="" + fi + + # + # all done! + # + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python DSO location" >&5 +$as_echo_n "checking for Python DSO location... " >&6; } + + ax_python_library=`cat << EOD | $PYTHON - 2>/dev/null +from distutils.sysconfig import get_config_vars +from os.path import join as path_join + +cvars = get_config_vars() +# support multiarch-enabled distributions like Ubuntu +if not 'MULTIARCH' in cvars.keys(): + cvars['MULTIARCH'] = '' +print(path_join(cvars['LIBDIR'], cvars['MULTIARCH'], cvars['LDLIBRARY'])) +EOD` + + PYTHON_LIBRARY=$ax_python_library + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_LIBRARY" >&5 +$as_echo "$PYTHON_LIBRARY" >&6; } + if test -z "$ax_python_library"; then : + as_fn_error $? "Cannot find Python library" "$LINENO" 5 +fi + + + +cat >>confdefs.h <<_ACEOF +#define GEANYPY_PYTHON_LIBRARY "$PYTHON_LIBRARY" +_ACEOF + + +fi + + if test "$enable_geanypy" = "auto"; then + enable_geanypy=yes + fi + if test "$enable_geanypy" = yes; then + ENABLE_GEANYPY_TRUE= + ENABLE_GEANYPY_FALSE='#' +else + ENABLE_GEANYPY_TRUE='#' + ENABLE_GEANYPY_FALSE= +fi + + + plugins_statusmsg+="Geanypy:$enable_geanypy +" + + + ac_config_files="$ac_config_files geanypy/Makefile geanypy/src/Makefile geanypy/geany/Makefile geanypy/plugins/Makefile" + + + + + # Check whether --enable-geanysendmail was given. +if test "${enable_geanysendmail+set}" = set; then : + enableval=$enable_geanysendmail; enable_geanysendmail=$enableval +else + enable_geanysendmail=yes +fi + + + + if test "$enable_geanysendmail" = "auto"; then + enable_geanysendmail=yes + fi + if test "$enable_geanysendmail" = yes; then + ENABLE_GEANYSENDMAIL_TRUE= + ENABLE_GEANYSENDMAIL_FALSE='#' +else + ENABLE_GEANYSENDMAIL_TRUE='#' + ENABLE_GEANYSENDMAIL_FALSE= +fi + + + plugins_statusmsg+="GeanySendmail:$enable_geanysendmail +" + + + ac_config_files="$ac_config_files geanysendmail/Makefile geanysendmail/src/Makefile" + + + + + # Check whether --enable-geanyvc was given. +if test "${enable_geanyvc+set}" = set; then : + enableval=$enable_geanyvc; enable_geanyvc=$enableval +else + enable_geanyvc=auto +fi + + + + + + + if test "$enable_geanyvc" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeanyVC" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeanyVC... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geanyvc" = yes; then : + as_fn_error $? "GeanyVC is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geanyvc" = auto; then : + enable_geanyvc=no +fi +fi +fi + + + + if test "$enable_geanyvc" = "auto"; then + enable_geanyvc=yes + fi + if test "$enable_geanyvc" = yes; then + ENABLE_GEANYVC_TRUE= + ENABLE_GEANYVC_FALSE='#' +else + ENABLE_GEANYVC_TRUE='#' + ENABLE_GEANYVC_FALSE= +fi + + + plugins_statusmsg+="GeanyVC:$enable_geanyvc +" + + + # Check whether --enable-gtkspell was given. +if test "${enable_gtkspell+set}" = set; then : + enableval=$enable_gtkspell; +else + enable_gtkspell=auto +fi + + + if [ x"$enable_gtkspell" = "xauto" ]; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKSPELL" >&5 +$as_echo_n "checking for GTKSPELL... " >&6; } + +if test -n "$GTKSPELL_CFLAGS"; then + pkg_cv_GTKSPELL_CFLAGS="$GTKSPELL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtkspell-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtkspell-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKSPELL_CFLAGS=`$PKG_CONFIG --cflags "gtkspell-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GTKSPELL_LIBS"; then + pkg_cv_GTKSPELL_LIBS="$GTKSPELL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtkspell-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtkspell-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKSPELL_LIBS=`$PKG_CONFIG --libs "gtkspell-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GTKSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtkspell-2.0" 2>&1` + else + GTKSPELL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtkspell-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GTKSPELL_PKG_ERRORS" >&5 + + enable_gtkspell=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_gtkspell=no +else + GTKSPELL_CFLAGS=$pkg_cv_GTKSPELL_CFLAGS + GTKSPELL_LIBS=$pkg_cv_GTKSPELL_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + enable_gtkspell=yes +fi + elif [ x"$enable_gtkspell" = "xyes" ]; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKSPELL" >&5 +$as_echo_n "checking for GTKSPELL... " >&6; } + +if test -n "$GTKSPELL_CFLAGS"; then + pkg_cv_GTKSPELL_CFLAGS="$GTKSPELL_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtkspell-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtkspell-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKSPELL_CFLAGS=`$PKG_CONFIG --cflags "gtkspell-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GTKSPELL_LIBS"; then + pkg_cv_GTKSPELL_LIBS="$GTKSPELL_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtkspell-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtkspell-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GTKSPELL_LIBS=`$PKG_CONFIG --libs "gtkspell-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GTKSPELL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtkspell-2.0" 2>&1` + else + GTKSPELL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtkspell-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GTKSPELL_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (gtkspell-2.0) were not met: + +$GTKSPELL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GTKSPELL_CFLAGS +and GTKSPELL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GTKSPELL_CFLAGS +and GTKSPELL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GTKSPELL_CFLAGS=$pkg_cv_GTKSPELL_CFLAGS + GTKSPELL_LIBS=$pkg_cv_GTKSPELL_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + if [ x"$enable_gtkspell" = "xyes" ]; then + +$as_echo "#define USE_GTKSPELL 1" >>confdefs.h + + fi + + if [ "$enable_gtkspell" = yes -a "$enable_geanyvc" = no ]; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GtkSpell support for GeanyVC enabled, but GeanyVC itself not enabled." >&5 +$as_echo "$as_me: WARNING: GtkSpell support for GeanyVC enabled, but GeanyVC itself not enabled." >&2;} + fi + + + feature_statusmsg+="GeanyVC GtkSpell support:$enable_gtkspell +" + + + ac_config_files="$ac_config_files geanyvc/Makefile geanyvc/src/Makefile geanyvc/tests/Makefile" + + + +# Check whether --with-gpgme-prefix was given. +if test "${with_gpgme_prefix+set}" = set; then : + withval=$with_gpgme_prefix; gpgme_config_prefix="$withval" +else + gpgme_config_prefix="" +fi + + if test "x$gpgme_config_prefix" != x ; then + GPGME_CONFIG="$gpgme_config_prefix/bin/gpgme-config" + fi + # Extract the first word of "gpgme-config", so it can be a program name with args. +set dummy gpgme-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GPGME_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GPGME_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_GPGME_CONFIG="$GPGME_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GPGME_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GPGME_CONFIG" && ac_cv_path_GPGME_CONFIG="no" + ;; +esac +fi +GPGME_CONFIG=$ac_cv_path_GPGME_CONFIG +if test -n "$GPGME_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GPGME_CONFIG" >&5 +$as_echo "$GPGME_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + if test "$GPGME_CONFIG" != "no" ; then + gpgme_version=`$GPGME_CONFIG --version` + fi + gpgme_version_major=`echo $gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1/'` + gpgme_version_minor=`echo $gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\2/'` + gpgme_version_micro=`echo $gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'` + + + + # Check whether --enable-geanypg was given. +if test "${enable_geanypg+set}" = set; then : + enableval=$enable_geanypg; enable_geanypg=$enableval +else + enable_geanypg=auto +fi + + + if test "$enable_geanypg" = "auto"; then + enable_geanypg=no + tmp=1:0.4.2 + if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then + req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'` + min_gpgme_version=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\2/'` + else + req_gpgme_api=0 + min_gpgme_version="$tmp" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GPGME - version >= $min_gpgme_version" >&5 +$as_echo_n "checking for GPGME - version >= $min_gpgme_version... " >&6; } + ok=no + if test "$GPGME_CONFIG" != "no" ; then + req_major=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1/'` + req_minor=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\2/'` + req_micro=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\3/'` + if test "$gpgme_version_major" -gt "$req_major"; then + ok=yes + else + if test "$gpgme_version_major" -eq "$req_major"; then + if test "$gpgme_version_minor" -gt "$req_minor"; then + ok=yes + else + if test "$gpgme_version_minor" -eq "$req_minor"; then + if test "$gpgme_version_micro" -ge "$req_micro"; then + ok=yes + fi + fi + fi + fi + fi + fi + if test $ok = yes; then + # If we have a recent GPGME, we should also check that the + # API is compatible. + if test "$req_gpgme_api" -gt 0 ; then + tmp=`$GPGME_CONFIG --api-version 2>/dev/null || echo 0` + if test "$tmp" -gt 0 ; then + if test "$req_gpgme_api" -ne "$tmp" ; then + ok=no + fi + fi + fi + fi + if test $ok = yes; then + GPGME_CFLAGS=`$GPGME_CONFIG --cflags` + GPGME_LIBS=`$GPGME_CONFIG --libs` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + enable_geanypg=auto + else + GPGME_CFLAGS="" + GPGME_LIBS="" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + : + fi + + + + elif test "$enable_geanypg" = "yes"; then + tmp=1:0.4.2 + if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then + req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'` + min_gpgme_version=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\2/'` + else + req_gpgme_api=0 + min_gpgme_version="$tmp" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GPGME - version >= $min_gpgme_version" >&5 +$as_echo_n "checking for GPGME - version >= $min_gpgme_version... " >&6; } + ok=no + if test "$GPGME_CONFIG" != "no" ; then + req_major=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1/'` + req_minor=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\2/'` + req_micro=`echo $min_gpgme_version | \ + sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\3/'` + if test "$gpgme_version_major" -gt "$req_major"; then + ok=yes + else + if test "$gpgme_version_major" -eq "$req_major"; then + if test "$gpgme_version_minor" -gt "$req_minor"; then + ok=yes + else + if test "$gpgme_version_minor" -eq "$req_minor"; then + if test "$gpgme_version_micro" -ge "$req_micro"; then + ok=yes + fi + fi + fi + fi + fi + fi + if test $ok = yes; then + # If we have a recent GPGME, we should also check that the + # API is compatible. + if test "$req_gpgme_api" -gt 0 ; then + tmp=`$GPGME_CONFIG --api-version 2>/dev/null || echo 0` + if test "$tmp" -gt 0 ; then + if test "$req_gpgme_api" -ne "$tmp" ; then + ok=no + fi + fi + fi + fi + if test $ok = yes; then + GPGME_CFLAGS=`$GPGME_CONFIG --cflags` + GPGME_LIBS=`$GPGME_CONFIG --libs` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + : + else + GPGME_CFLAGS="" + GPGME_LIBS="" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + as_fn_error $? "Could not find GPGME. Please define GPGME_CFLAGS and GPGME_LIBS if it is installed." "$LINENO" 5 + fi + + + + + fi + + if test "$enable_geanypg" != "no"; then : + + for ac_func in fdopen +do : + ac_fn_c_check_func "$LINENO" "fdopen" "ac_cv_func_fdopen" +if test "x$ac_cv_func_fdopen" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_FDOPEN 1 +_ACEOF + +else + + if test "$enable_geanypg" = "yes"; then : + as_fn_error $? "Could not find fdopen" "$LINENO" 5 +else + enable_geanypg=no +fi + +fi +done + + +fi + + # necessary for gpgme + # Check whether --enable-largefile was given. +if test "${enable_largefile+set}" = set; then : + enableval=$enable_largefile; +fi + +if test "$enable_largefile" != no; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 +$as_echo_n "checking for special C compiler options needed for large files... " >&6; } +if ${ac_cv_sys_largefile_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_sys_largefile_CC=no + if test "$GCC" != yes; then + ac_save_CC=$CC + while :; do + # IRIX 6.2 and later do not support large files by default, + # so use the C compiler's -n32 option if that helps. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF + if ac_fn_c_try_compile "$LINENO"; then : + break +fi +rm -f core conftest.err conftest.$ac_objext + CC="$CC -n32" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_largefile_CC=' -n32'; break +fi +rm -f core conftest.err conftest.$ac_objext + break + done + CC=$ac_save_CC + rm -f conftest.$ac_ext + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 +$as_echo "$ac_cv_sys_largefile_CC" >&6; } + if test "$ac_cv_sys_largefile_CC" != no; then + CC=$CC$ac_cv_sys_largefile_CC + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 +$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } +if ${ac_cv_sys_file_offset_bits+:} false; then : + $as_echo_n "(cached) " >&6 +else + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=no; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#define _FILE_OFFSET_BITS 64 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=64; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_file_offset_bits=unknown + break +done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 +$as_echo "$ac_cv_sys_file_offset_bits" >&6; } +case $ac_cv_sys_file_offset_bits in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits +_ACEOF +;; +esac +rm -rf conftest* + if test $ac_cv_sys_file_offset_bits = unknown; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 +$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } +if ${ac_cv_sys_large_files+:} false; then : + $as_echo_n "(cached) " >&6 +else + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=no; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#define _LARGE_FILES 1 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=1; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_large_files=unknown + break +done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 +$as_echo "$ac_cv_sys_large_files" >&6; } +case $ac_cv_sys_large_files in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _LARGE_FILES $ac_cv_sys_large_files +_ACEOF +;; +esac +rm -rf conftest* + fi + + +fi + + + + if test "$enable_geanypg" = "auto"; then + enable_geanypg=yes + fi + if test "$enable_geanypg" = yes; then + ENABLE_GEANYPG_TRUE= + ENABLE_GEANYPG_FALSE='#' +else + ENABLE_GEANYPG_TRUE='#' + ENABLE_GEANYPG_FALSE= +fi + + + plugins_statusmsg+="GeanyPG:$enable_geanypg +" + + + ac_config_files="$ac_config_files geanypg/Makefile geanypg/src/Makefile" + + + + + # Check whether --enable-geniuspaste was given. +if test "${enable_geniuspaste+set}" = set; then : + enableval=$enable_geniuspaste; enable_geniuspaste=$enableval +else + enable_geniuspaste=auto +fi + + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_geniuspaste" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin GeniusPaste" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin GeniusPaste... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_geniuspaste" = yes; then : + as_fn_error $? "GeniusPaste is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_geniuspaste" = auto; then : + enable_geniuspaste=no +fi +fi +fi + + fi + + if test "$enable_geniuspaste" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GENIUSPASTE" >&5 +$as_echo_n "checking for GENIUSPASTE... " >&6; } + +if test -n "$GENIUSPASTE_CFLAGS"; then + pkg_cv_GENIUSPASTE_CFLAGS="$GENIUSPASTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GENIUSPASTE_CFLAGS=`$PKG_CONFIG --cflags "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GENIUSPASTE_LIBS"; then + pkg_cv_GENIUSPASTE_LIBS="$GENIUSPASTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GENIUSPASTE_LIBS=`$PKG_CONFIG --libs "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GENIUSPASTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + else + GENIUSPASTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GENIUSPASTE_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (libsoup-2.4 >= 2.4.0) were not met: + +$GENIUSPASTE_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GENIUSPASTE_CFLAGS +and GENIUSPASTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GENIUSPASTE_CFLAGS +and GENIUSPASTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + GENIUSPASTE_CFLAGS=$pkg_cv_GENIUSPASTE_CFLAGS + GENIUSPASTE_LIBS=$pkg_cv_GENIUSPASTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_geniuspaste" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GENIUSPASTE" >&5 +$as_echo_n "checking for GENIUSPASTE... " >&6; } + +if test -n "$GENIUSPASTE_CFLAGS"; then + pkg_cv_GENIUSPASTE_CFLAGS="$GENIUSPASTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GENIUSPASTE_CFLAGS=`$PKG_CONFIG --cflags "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GENIUSPASTE_LIBS"; then + pkg_cv_GENIUSPASTE_LIBS="$GENIUSPASTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GENIUSPASTE_LIBS=`$PKG_CONFIG --libs "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GENIUSPASTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + else + GENIUSPASTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GENIUSPASTE_PKG_ERRORS" >&5 + + enable_geniuspaste=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_geniuspaste=no +else + GENIUSPASTE_CFLAGS=$pkg_cv_GENIUSPASTE_CFLAGS + GENIUSPASTE_LIBS=$pkg_cv_GENIUSPASTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_geniuspaste" = "auto"; then + enable_geniuspaste=yes + fi + if test "$enable_geniuspaste" = yes; then + ENABLE_GENIUSPASTE_TRUE= + ENABLE_GENIUSPASTE_FALSE='#' +else + ENABLE_GENIUSPASTE_TRUE='#' + ENABLE_GENIUSPASTE_FALSE= +fi + + + plugins_statusmsg+="GeniusPaste:$enable_geniuspaste +" + + + + ac_config_files="$ac_config_files geniuspaste/Makefile geniuspaste/src/Makefile" + + + + + # Check whether --enable-gproject was given. +if test "${enable_gproject+set}" = set; then : + enableval=$enable_gproject; enable_gproject=$enableval +else + enable_gproject=auto +fi + + + + if test "$enable_gproject" = "auto"; then + enable_gproject=yes + fi + if test "$enable_gproject" = yes; then + ENABLE_GPROJECT_TRUE= + ENABLE_GPROJECT_FALSE='#' +else + ENABLE_GPROJECT_TRUE='#' + ENABLE_GPROJECT_FALSE= +fi + + + plugins_statusmsg+="GProject:$enable_gproject +" + + + ac_config_files="$ac_config_files gproject/Makefile gproject/src/Makefile gproject/icons/Makefile" + + + + + # Check whether --enable-markdown was given. +if test "${enable_markdown+set}" = set; then : + enableval=$enable_markdown; enable_markdown=$enableval +else + enable_markdown=auto +fi + + + # Check whether --enable-peg-markdown was given. +if test "${enable_peg_markdown+set}" = set; then : + enableval=$enable_peg_markdown; enable_peg_markdown=$enableval +else + enable_peg_markdown=auto +fi + + + if test "x$enable_markdown" != xno && + test "x$enable_peg_markdown" != xyes; then : + + old_LIBS=$LIBS + LIBS= + LIBMARKDOWN_LIBS= + LIBMARKDOWN_CFLAGS= + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mkd_compile" >&5 +$as_echo_n "checking for library containing mkd_compile... " >&6; } +if ${ac_cv_search_mkd_compile+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_func_search_save_LIBS=$LIBS +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char mkd_compile (); +int +main () +{ +return mkd_compile (); + ; + return 0; +} +_ACEOF +for ac_lib in '' markdown; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_mkd_compile=$ac_res +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext + if ${ac_cv_search_mkd_compile+:} false; then : + break +fi +done +if ${ac_cv_search_mkd_compile+:} false; then : + +else + ac_cv_search_mkd_compile=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mkd_compile" >&5 +$as_echo "$ac_cv_search_mkd_compile" >&6; } +ac_res=$ac_cv_search_mkd_compile +if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + for ac_header in mkdio.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "mkdio.h" "ac_cv_header_mkdio_h" "$ac_includes_default" +if test "x$ac_cv_header_mkdio_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_MKDIO_H 1 +_ACEOF + LIBMARKDOWN_LIBS=$LIBS + LIBMARKDOWN_CFLAGS= + enable_peg_markdown=no +else + if test "x$enable_peg_markdown" != xno; then : + enable_peg_markdown=yes +elif test "x$enable_markdown" = xyes; then : + as_fn_error $? "libmarkdown not found" "$LINENO" 5 +else + enable_markdown=no + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libmarkdown not found, disabling Markdown plugin" >&5 +$as_echo "$as_me: WARNING: libmarkdown not found, disabling Markdown plugin" >&2;} +fi +fi + +done + +else + if test "x$enable_peg_markdown" != xno; then : + enable_peg_markdown=yes +elif test "x$enable_markdown" = xyes; then : + as_fn_error $? "libmarkdown not found" "$LINENO" 5 +else + enable_markdown=no + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libmarkdown not found, disabling Markdown plugin" >&5 +$as_echo "$as_me: WARNING: libmarkdown not found, disabling Markdown plugin" >&2;} +fi +fi + + + + LIBS=$old_LIBS + +fi + if test "x$enable_peg_markdown" = xyes; then + MARKDOWN_PEG_MARKDOWN_TRUE= + MARKDOWN_PEG_MARKDOWN_FALSE='#' +else + MARKDOWN_PEG_MARKDOWN_TRUE='#' + MARKDOWN_PEG_MARKDOWN_FALSE= +fi + + if test "x$enable_peg_markdown" = xyes; then : + markdown_library=peg-markdown +else + markdown_library=libmarkdown +fi + + feature_statusmsg+="Markdown library:$markdown_library +" + + + GTK_VERSION=2.16 + WEBKIT_VERSION=1.1.13 + + + + if test ${GP_GTK_VERSION_MAJOR} = 3; then : + webkit_package=webkitgtk-3.0 +else + webkit_package=webkit-1.0 +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_markdown" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin markdown" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin markdown... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_markdown" = yes; then : + as_fn_error $? "markdown is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_markdown" = auto; then : + enable_markdown=no +fi +fi +fi + + fi + + if test "$enable_markdown" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MARKDOWN" >&5 +$as_echo_n "checking for MARKDOWN... " >&6; } + +if test -n "$MARKDOWN_CFLAGS"; then + pkg_cv_MARKDOWN_CFLAGS="$MARKDOWN_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MARKDOWN_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$MARKDOWN_LIBS"; then + pkg_cv_MARKDOWN_LIBS="$MARKDOWN_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MARKDOWN_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + MARKDOWN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + else + MARKDOWN_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$MARKDOWN_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0) were not met: + +$MARKDOWN_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables MARKDOWN_CFLAGS +and MARKDOWN_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables MARKDOWN_CFLAGS +and MARKDOWN_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + MARKDOWN_CFLAGS=$pkg_cv_MARKDOWN_CFLAGS + MARKDOWN_LIBS=$pkg_cv_MARKDOWN_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_markdown" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MARKDOWN" >&5 +$as_echo_n "checking for MARKDOWN... " >&6; } + +if test -n "$MARKDOWN_CFLAGS"; then + pkg_cv_MARKDOWN_CFLAGS="$MARKDOWN_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MARKDOWN_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$MARKDOWN_LIBS"; then + pkg_cv_MARKDOWN_LIBS="$MARKDOWN_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MARKDOWN_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + MARKDOWN_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + else + MARKDOWN_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$MARKDOWN_PKG_ERRORS" >&5 + + enable_markdown=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_markdown=no +else + MARKDOWN_CFLAGS=$pkg_cv_MARKDOWN_CFLAGS + MARKDOWN_LIBS=$pkg_cv_MARKDOWN_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_markdown" = "auto"; then + enable_markdown=yes + fi + if test "$enable_markdown" = yes; then + ENABLE_MARKDOWN_TRUE= + ENABLE_MARKDOWN_FALSE='#' +else + ENABLE_MARKDOWN_TRUE='#' + ENABLE_MARKDOWN_FALSE= +fi + + + plugins_statusmsg+="Markdown:$enable_markdown +" + + + + ac_config_files="$ac_config_files markdown/Makefile markdown/src/Makefile markdown/docs/Makefile markdown/peg-markdown/Makefile markdown/peg-markdown/peg-0.1.9/Makefile" + + + + + # Check whether --enable-multiterm was given. +if test "${enable_multiterm+set}" = set; then : + enableval=$enable_multiterm; enable_multiterm=$enableval +else + enable_multiterm=auto +fi + + + + if test "$enable_multiterm" != "no"; then : + + # Extract the first word of "valac", so it can be a program name with args. +set dummy valac; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_VALAC+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $VALAC in + [\\/]* | ?:[\\/]*) + ac_cv_path_VALAC="$VALAC" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_VALAC="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_VALAC" && ac_cv_path_VALAC="valac" + ;; +esac +fi +VALAC=$ac_cv_path_VALAC +if test -n "$VALAC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VALAC" >&5 +$as_echo "$VALAC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test "$VALAC" != valac && test -n "0.7.0"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $VALAC is at least version 0.7.0" >&5 +$as_echo_n "checking whether $VALAC is at least version 0.7.0... " >&6; } + am__vala_version=`$VALAC --version | sed 's/Vala *//'` + as_arg_v1=0.7.0 +as_arg_v2="$am__vala_version" +awk "$as_awk_strverscmp" v1="$as_arg_v1" v2="$as_arg_v2" /dev/null +case $? in #( + 1) : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } ;; #( + 0) : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } ;; #( + 2) : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + VALAC=valac ;; #( + *) : + ;; +esac +fi + if test "$VALAC" = valac; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no proper vala compiler found" >&5 +$as_echo "$as_me: WARNING: no proper vala compiler found" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: you will not be able to compile vala source files" >&5 +$as_echo "$as_me: WARNING: you will not be able to compile vala source files" >&2;} + else + : + fi + if test "$VALAC" = ""; then : + if test "$enable_multiterm" = "auto"; then : + enable_multiterm=no +else + as_fn_error $? "valac not found" "$LINENO" 5 +fi +fi + +fi + + + + gtk_dep=2 + if test $gtk_dep -ne 0; then + + + + if test "$enable_multiterm" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin multiterm" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin multiterm... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_multiterm" = yes; then : + as_fn_error $? "multiterm is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_multiterm" = auto; then : + enable_multiterm=no +fi +fi +fi + + fi + + if test "$enable_multiterm" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MULTITERM" >&5 +$as_echo_n "checking for MULTITERM... " >&6; } + +if test -n "$MULTITERM_CFLAGS"; then + pkg_cv_MULTITERM_CFLAGS="$MULTITERM_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 geany vte\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 geany vte") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MULTITERM_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 geany vte" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$MULTITERM_LIBS"; then + pkg_cv_MULTITERM_LIBS="$MULTITERM_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 geany vte\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 geany vte") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MULTITERM_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 geany vte" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + MULTITERM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 geany vte" 2>&1` + else + MULTITERM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 geany vte" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$MULTITERM_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (gtk+-2.0 geany vte) were not met: + +$MULTITERM_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables MULTITERM_CFLAGS +and MULTITERM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables MULTITERM_CFLAGS +and MULTITERM_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + MULTITERM_CFLAGS=$pkg_cv_MULTITERM_CFLAGS + MULTITERM_LIBS=$pkg_cv_MULTITERM_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_multiterm" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MULTITERM" >&5 +$as_echo_n "checking for MULTITERM... " >&6; } + +if test -n "$MULTITERM_CFLAGS"; then + pkg_cv_MULTITERM_CFLAGS="$MULTITERM_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 geany vte\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 geany vte") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MULTITERM_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 geany vte" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$MULTITERM_LIBS"; then + pkg_cv_MULTITERM_LIBS="$MULTITERM_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 geany vte\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 geany vte") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_MULTITERM_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 geany vte" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + MULTITERM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 geany vte" 2>&1` + else + MULTITERM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 geany vte" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$MULTITERM_PKG_ERRORS" >&5 + + enable_multiterm=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_multiterm=no +else + MULTITERM_CFLAGS=$pkg_cv_MULTITERM_CFLAGS + MULTITERM_LIBS=$pkg_cv_MULTITERM_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_multiterm" = "auto"; then + enable_multiterm=yes + fi + if test "$enable_multiterm" = yes; then + ENABLE_MULTITERM_TRUE= + ENABLE_MULTITERM_FALSE='#' +else + ENABLE_MULTITERM_TRUE='#' + ENABLE_MULTITERM_FALSE= +fi + + + plugins_statusmsg+="MultiTerm:$enable_multiterm +" + + + + ac_config_files="$ac_config_files multiterm/Makefile multiterm/src/Makefile" + + + + + # Check whether --enable-pairtaghighlighter was given. +if test "${enable_pairtaghighlighter+set}" = set; then : + enableval=$enable_pairtaghighlighter; enable_pairtaghighlighter=$enableval +else + enable_pairtaghighlighter=auto +fi + + + + if test "$enable_pairtaghighlighter" = "auto"; then + enable_pairtaghighlighter=yes + fi + if test "$enable_pairtaghighlighter" = yes; then + ENABLE_PAIRTAGHIGHLIGHTER_TRUE= + ENABLE_PAIRTAGHIGHLIGHTER_FALSE='#' +else + ENABLE_PAIRTAGHIGHLIGHTER_TRUE='#' + ENABLE_PAIRTAGHIGHLIGHTER_FALSE= +fi + + + plugins_statusmsg+="PairTagHighlighter:$enable_pairtaghighlighter +" + + + ac_config_files="$ac_config_files pairtaghighlighter/Makefile pairtaghighlighter/src/Makefile" + + + + + # Check whether --enable-pohelper was given. +if test "${enable_pohelper+set}" = set; then : + enableval=$enable_pohelper; enable_pohelper=$enableval +else + enable_pohelper=yes +fi + + + + + if test "$enable_pohelper" = "auto"; then + enable_pohelper=yes + fi + if test "$enable_pohelper" = yes; then + ENABLE_POHELPER_TRUE= + ENABLE_POHELPER_FALSE='#' +else + ENABLE_POHELPER_TRUE='#' + ENABLE_POHELPER_FALSE= +fi + + + plugins_statusmsg+="PoHelper:$enable_pohelper +" + + + + ac_config_files="$ac_config_files pohelper/Makefile pohelper/data/Makefile pohelper/src/Makefile" + + + + LIBXML_VERSION=2.6.27 + + + # Check whether --enable-pretty_printer was given. +if test "${enable_pretty_printer+set}" = set; then : + enableval=$enable_pretty_printer; enable_pretty_printer=$enableval +else + enable_pretty_printer=auto +fi + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_pretty_printer" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin pretty-printer" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin pretty-printer... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_pretty_printer" = yes; then : + as_fn_error $? "pretty-printer is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_pretty_printer" = auto; then : + enable_pretty_printer=no +fi +fi +fi + + fi + + if test "$enable_pretty_printer" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML" >&5 +$as_echo_n "checking for LIBXML... " >&6; } + +if test -n "$LIBXML_CFLAGS"; then + pkg_cv_LIBXML_CFLAGS="$LIBXML_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0 >= \${LIBXML_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0 >= ${LIBXML_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LIBXML_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0 >= ${LIBXML_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$LIBXML_LIBS"; then + pkg_cv_LIBXML_LIBS="$LIBXML_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0 >= \${LIBXML_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0 >= ${LIBXML_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LIBXML_LIBS=`$PKG_CONFIG --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + LIBXML_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>&1` + else + LIBXML_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$LIBXML_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (libxml-2.0 >= ${LIBXML_VERSION}) were not met: + +$LIBXML_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables LIBXML_CFLAGS +and LIBXML_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables LIBXML_CFLAGS +and LIBXML_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + LIBXML_CFLAGS=$pkg_cv_LIBXML_CFLAGS + LIBXML_LIBS=$pkg_cv_LIBXML_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_pretty_printer" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML" >&5 +$as_echo_n "checking for LIBXML... " >&6; } + +if test -n "$LIBXML_CFLAGS"; then + pkg_cv_LIBXML_CFLAGS="$LIBXML_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0 >= \${LIBXML_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0 >= ${LIBXML_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LIBXML_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0 >= ${LIBXML_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$LIBXML_LIBS"; then + pkg_cv_LIBXML_LIBS="$LIBXML_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libxml-2.0 >= \${LIBXML_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libxml-2.0 >= ${LIBXML_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_LIBXML_LIBS=`$PKG_CONFIG --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + LIBXML_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>&1` + else + LIBXML_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxml-2.0 >= ${LIBXML_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$LIBXML_PKG_ERRORS" >&5 + + enable_pretty_printer=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_pretty_printer=no +else + LIBXML_CFLAGS=$pkg_cv_LIBXML_CFLAGS + LIBXML_LIBS=$pkg_cv_LIBXML_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$enable_pretty_printer" = "auto"; then + enable_pretty_printer=yes + fi + if test "$enable_pretty_printer" = yes; then + ENABLE_PRETTY_PRINTER_TRUE= + ENABLE_PRETTY_PRINTER_FALSE='#' +else + ENABLE_PRETTY_PRINTER_TRUE='#' + ENABLE_PRETTY_PRINTER_FALSE= +fi + + + plugins_statusmsg+="Pretty Printer:$enable_pretty_printer +" + + + + ac_config_files="$ac_config_files pretty-printer/Makefile pretty-printer/src/Makefile" + + + + + # Check whether --enable-scope was given. +if test "${enable_scope+set}" = set; then : + enableval=$enable_scope; enable_scope=$enableval +else + enable_scope=auto +fi + + + + + + + if test "$enable_scope" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Scope" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Scope... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = 2; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_scope" = yes; then : + as_fn_error $? "Scope is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_scope" = auto; then : + enable_scope=no +fi +fi +fi + + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_scope" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin scope" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin scope... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_scope" = yes; then : + as_fn_error $? "scope is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_scope" = auto; then : + enable_scope=no +fi +fi +fi + + fi + + if test "$enable_scope" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5 +$as_echo_n "checking for VTE... " >&6; } + +if test -n "$VTE_CFLAGS"; then + pkg_cv_VTE_CFLAGS="$VTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.17\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.17") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte >= 0.17" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$VTE_LIBS"; then + pkg_cv_VTE_LIBS="$VTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.17\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.17") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte >= 0.17" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte >= 0.17" 2>&1` + else + VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte >= 0.17" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$VTE_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (vte >= 0.17) were not met: + +$VTE_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables VTE_CFLAGS +and VTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables VTE_CFLAGS +and VTE_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + VTE_CFLAGS=$pkg_cv_VTE_CFLAGS + VTE_LIBS=$pkg_cv_VTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_scope" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5 +$as_echo_n "checking for VTE... " >&6; } + +if test -n "$VTE_CFLAGS"; then + pkg_cv_VTE_CFLAGS="$VTE_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.17\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.17") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte >= 0.17" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$VTE_LIBS"; then + pkg_cv_VTE_LIBS="$VTE_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte >= 0.17\""; } >&5 + ($PKG_CONFIG --exists --print-errors "vte >= 0.17") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte >= 0.17" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte >= 0.17" 2>&1` + else + VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte >= 0.17" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$VTE_PKG_ERRORS" >&5 + + enable_scope=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_scope=no +else + VTE_CFLAGS=$pkg_cv_VTE_CFLAGS + VTE_LIBS=$pkg_cv_VTE_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_scope" = "auto"; then + enable_scope=yes + fi + if test "$enable_scope" = yes; then + ENABLE_SCOPE_TRUE= + ENABLE_SCOPE_FALSE='#' +else + ENABLE_SCOPE_TRUE='#' + ENABLE_SCOPE_FALSE= +fi + + + plugins_statusmsg+="Scope:$enable_scope +" + + + + case "$host_os" in + cygwin* | mingw* | win32*) PTY_LIBS="" ;; + *) PTY_LIBS="-lutil" ;; + esac + + + + ac_config_files="$ac_config_files scope/Makefile scope/data/Makefile scope/docs/Makefile scope/src/Makefile" + + + + + # Check whether --enable-shiftcolumn was given. +if test "${enable_shiftcolumn+set}" = set; then : + enableval=$enable_shiftcolumn; enable_shiftcolumn=$enableval +else + enable_shiftcolumn=yes +fi + + + + if test "$enable_shiftcolumn" = "auto"; then + enable_shiftcolumn=yes + fi + if test "$enable_shiftcolumn" = yes; then + ENABLE_SHIFTCOLUMN_TRUE= + ENABLE_SHIFTCOLUMN_FALSE='#' +else + ENABLE_SHIFTCOLUMN_TRUE='#' + ENABLE_SHIFTCOLUMN_FALSE= +fi + + + plugins_statusmsg+="ShiftColumn:$enable_shiftcolumn +" + + + ac_config_files="$ac_config_files shiftcolumn/Makefile shiftcolumn/src/Makefile" + + + + + # Check whether --enable-spellcheck was given. +if test "${enable_spellcheck+set}" = set; then : + enableval=$enable_spellcheck; enable_spellcheck=$enableval +else + enable_spellcheck=auto +fi + + + + ENCHANT_VERSION=1.3 + OPT_ENCHANT_VERSION=1.5 + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENCHANT" >&5 +$as_echo_n "checking for ENCHANT... " >&6; } + +if test -n "$ENCHANT_CFLAGS"; then + pkg_cv_ENCHANT_CFLAGS="$ENCHANT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${OPT_ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${OPT_ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_CFLAGS=`$PKG_CONFIG --cflags "enchant >= ${OPT_ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$ENCHANT_LIBS"; then + pkg_cv_ENCHANT_LIBS="$ENCHANT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${OPT_ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${OPT_ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_LIBS=`$PKG_CONFIG --libs "enchant >= ${OPT_ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "enchant >= ${OPT_ENCHANT_VERSION}" 2>&1` + else + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "enchant >= ${OPT_ENCHANT_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$ENCHANT_PKG_ERRORS" >&5 + + have_enchant_1_5=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + have_enchant_1_5=no +else + ENCHANT_CFLAGS=$pkg_cv_ENCHANT_CFLAGS + ENCHANT_LIBS=$pkg_cv_ENCHANT_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + have_enchant_1_5=yes +fi + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_spellcheck" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin spellcheck" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin spellcheck... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_spellcheck" = yes; then : + as_fn_error $? "spellcheck is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_spellcheck" = auto; then : + enable_spellcheck=no +fi +fi +fi + + fi + + if test "$enable_spellcheck" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENCHANT" >&5 +$as_echo_n "checking for ENCHANT... " >&6; } + +if test -n "$ENCHANT_CFLAGS"; then + pkg_cv_ENCHANT_CFLAGS="$ENCHANT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_CFLAGS=`$PKG_CONFIG --cflags "enchant >= ${ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$ENCHANT_LIBS"; then + pkg_cv_ENCHANT_LIBS="$ENCHANT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_LIBS=`$PKG_CONFIG --libs "enchant >= ${ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "enchant >= ${ENCHANT_VERSION}" 2>&1` + else + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "enchant >= ${ENCHANT_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$ENCHANT_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (enchant >= ${ENCHANT_VERSION}) were not met: + +$ENCHANT_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables ENCHANT_CFLAGS +and ENCHANT_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables ENCHANT_CFLAGS +and ENCHANT_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + ENCHANT_CFLAGS=$pkg_cv_ENCHANT_CFLAGS + ENCHANT_LIBS=$pkg_cv_ENCHANT_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_spellcheck" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENCHANT" >&5 +$as_echo_n "checking for ENCHANT... " >&6; } + +if test -n "$ENCHANT_CFLAGS"; then + pkg_cv_ENCHANT_CFLAGS="$ENCHANT_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_CFLAGS=`$PKG_CONFIG --cflags "enchant >= ${ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$ENCHANT_LIBS"; then + pkg_cv_ENCHANT_LIBS="$ENCHANT_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"enchant >= \${ENCHANT_VERSION}\""; } >&5 + ($PKG_CONFIG --exists --print-errors "enchant >= ${ENCHANT_VERSION}") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_ENCHANT_LIBS=`$PKG_CONFIG --libs "enchant >= ${ENCHANT_VERSION}" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "enchant >= ${ENCHANT_VERSION}" 2>&1` + else + ENCHANT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "enchant >= ${ENCHANT_VERSION}" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$ENCHANT_PKG_ERRORS" >&5 + + enable_spellcheck=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_spellcheck=no +else + ENCHANT_CFLAGS=$pkg_cv_ENCHANT_CFLAGS + ENCHANT_LIBS=$pkg_cv_ENCHANT_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + if test "$have_enchant_1_5" = yes; then + HAVE_ENCHANT_1_5_TRUE= + HAVE_ENCHANT_1_5_FALSE='#' +else + HAVE_ENCHANT_1_5_TRUE='#' + HAVE_ENCHANT_1_5_FALSE= +fi + + + if test "$enable_spellcheck" = "auto"; then + enable_spellcheck=yes + fi + if test "$enable_spellcheck" = yes; then + ENABLE_SPELLCHECK_TRUE= + ENABLE_SPELLCHECK_FALSE='#' +else + ENABLE_SPELLCHECK_TRUE='#' + ENABLE_SPELLCHECK_FALSE= +fi + + + plugins_statusmsg+="Spellcheck:$enable_spellcheck +" + + + + ac_config_files="$ac_config_files spellcheck/Makefile spellcheck/src/Makefile" + + + + + # Check whether --enable-treebrowser was given. +if test "${enable_treebrowser+set}" = set; then : + enableval=$enable_treebrowser; enable_treebrowser=$enableval +else + enable_treebrowser=auto +fi + + + if [ "$enable_treebrowser" != no ]; then + ac_fn_c_check_func "$LINENO" "creat" "ac_cv_func_creat" +if test "x$ac_cv_func_creat" = xyes; then : + enable_treebrowser=yes +else + + if [ "$enable_treebrowser" = auto ]; then + enable_treebrowser=no + else + as_fn_error $? "Treebrowser cannot be enabled because creat() is missing. + Please disable it (--disable-treebrowser) or make sure creat() + works on your system." "$LINENO" 5 + fi + +fi + + fi + + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GIO" >&5 +$as_echo_n "checking for GIO... " >&6; } + +if test -n "$GIO_CFLAGS"; then + pkg_cv_GIO_CFLAGS="$GIO_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gio-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GIO_CFLAGS=`$PKG_CONFIG --cflags "gio-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$GIO_LIBS"; then + pkg_cv_GIO_LIBS="$GIO_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gio-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gio-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_GIO_LIBS=`$PKG_CONFIG --libs "gio-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + GIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gio-2.0" 2>&1` + else + GIO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$GIO_PKG_ERRORS" >&5 + + have_gio=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + have_gio=no +else + GIO_CFLAGS=$pkg_cv_GIO_CFLAGS + GIO_LIBS=$pkg_cv_GIO_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +$as_echo "#define HAVE_GIO 1" >>confdefs.h + + have_gio=yes +fi + + if test "x$enable_treebrowser" = "xyes"; then + ENABLE_TREEBROWSER_TRUE= + ENABLE_TREEBROWSER_FALSE='#' +else + ENABLE_TREEBROWSER_TRUE='#' + ENABLE_TREEBROWSER_FALSE= +fi + + + if test "$enable_treebrowser" = "auto"; then + enable_treebrowser=yes + fi + if test "$enable_treebrowser" = yes; then + ENABLE_TREEBROWSER_TRUE= + ENABLE_TREEBROWSER_FALSE='#' +else + ENABLE_TREEBROWSER_TRUE='#' + ENABLE_TREEBROWSER_FALSE= +fi + + + plugins_statusmsg+="TreeBrowser:$enable_treebrowser +" + + + + feature_statusmsg+="TreeBrowser GIO support:$have_gio +" + + + ac_config_files="$ac_config_files treebrowser/Makefile treebrowser/src/Makefile" + + + + + # Check whether --enable-tableconvert was given. +if test "${enable_tableconvert+set}" = set; then : + enableval=$enable_tableconvert; enable_tableconvert=$enableval +else + enable_tableconvert=yes +fi + + + + if test "$enable_tableconvert" = "auto"; then + enable_tableconvert=yes + fi + if test "$enable_tableconvert" = yes; then + ENABLE_TABLECONVERT_TRUE= + ENABLE_TABLECONVERT_FALSE='#' +else + ENABLE_TABLECONVERT_TRUE='#' + ENABLE_TABLECONVERT_FALSE= +fi + + + plugins_statusmsg+="Tableconvert:$enable_tableconvert +" + + + ac_config_files="$ac_config_files tableconvert/Makefile tableconvert/src/Makefile" + + + + + # Check whether --enable-updatechecker was given. +if test "${enable_updatechecker+set}" = set; then : + enableval=$enable_updatechecker; enable_updatechecker=$enableval +else + enable_updatechecker=auto +fi + + + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_updatechecker" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin Updatechecker" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin Updatechecker... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_updatechecker" = yes; then : + as_fn_error $? "Updatechecker is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_updatechecker" = auto; then : + enable_updatechecker=no +fi +fi +fi + + fi + + if test "$enable_updatechecker" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for UPDATECHECKER" >&5 +$as_echo_n "checking for UPDATECHECKER... " >&6; } + +if test -n "$UPDATECHECKER_CFLAGS"; then + pkg_cv_UPDATECHECKER_CFLAGS="$UPDATECHECKER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_UPDATECHECKER_CFLAGS=`$PKG_CONFIG --cflags "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$UPDATECHECKER_LIBS"; then + pkg_cv_UPDATECHECKER_LIBS="$UPDATECHECKER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_UPDATECHECKER_LIBS=`$PKG_CONFIG --libs "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + UPDATECHECKER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + else + UPDATECHECKER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$UPDATECHECKER_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements (libsoup-2.4 >= 2.4.0) were not met: + +$UPDATECHECKER_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables UPDATECHECKER_CFLAGS +and UPDATECHECKER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables UPDATECHECKER_CFLAGS +and UPDATECHECKER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + UPDATECHECKER_CFLAGS=$pkg_cv_UPDATECHECKER_CFLAGS + UPDATECHECKER_LIBS=$pkg_cv_UPDATECHECKER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_updatechecker" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for UPDATECHECKER" >&5 +$as_echo_n "checking for UPDATECHECKER... " >&6; } + +if test -n "$UPDATECHECKER_CFLAGS"; then + pkg_cv_UPDATECHECKER_CFLAGS="$UPDATECHECKER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_UPDATECHECKER_CFLAGS=`$PKG_CONFIG --cflags "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$UPDATECHECKER_LIBS"; then + pkg_cv_UPDATECHECKER_LIBS="$UPDATECHECKER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsoup-2.4 >= 2.4.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libsoup-2.4 >= 2.4.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_UPDATECHECKER_LIBS=`$PKG_CONFIG --libs "libsoup-2.4 >= 2.4.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + UPDATECHECKER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + else + UPDATECHECKER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsoup-2.4 >= 2.4.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$UPDATECHECKER_PKG_ERRORS" >&5 + + enable_updatechecker=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_updatechecker=no +else + UPDATECHECKER_CFLAGS=$pkg_cv_UPDATECHECKER_CFLAGS + UPDATECHECKER_LIBS=$pkg_cv_UPDATECHECKER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + if test "$enable_updatechecker" = "auto"; then + enable_updatechecker=yes + fi + if test "$enable_updatechecker" = yes; then + ENABLE_UPDATECHECKER_TRUE= + ENABLE_UPDATECHECKER_FALSE='#' +else + ENABLE_UPDATECHECKER_TRUE='#' + ENABLE_UPDATECHECKER_FALSE= +fi + + + plugins_statusmsg+="Updatechecker:$enable_updatechecker +" + + + + ac_config_files="$ac_config_files updatechecker/Makefile updatechecker/src/Makefile" + + + + + # Check whether --enable-webhelper was given. +if test "${enable_webhelper+set}" = set; then : + enableval=$enable_webhelper; enable_webhelper=$enableval +else + enable_webhelper=auto +fi + + + + GTK_VERSION=2.16 + GLIB_VERSION=2.16 + GIO_VERSION=2.18 + GDK_PIXBUF_VERSION=2.0 + WEBKIT_VERSION=1.1.18 + + # Extract the first word of "glib-mkenums", so it can be a program name with args. +set dummy glib-mkenums; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_GLIB_MKENUMS+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $GLIB_MKENUMS in + [\\/]* | ?:[\\/]*) + ac_cv_path_GLIB_MKENUMS="$GLIB_MKENUMS" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GLIB_MKENUMS="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GLIB_MKENUMS" && ac_cv_path_GLIB_MKENUMS="no" + ;; +esac +fi +GLIB_MKENUMS=$ac_cv_path_GLIB_MKENUMS +if test -n "$GLIB_MKENUMS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GLIB_MKENUMS" >&5 +$as_echo "$GLIB_MKENUMS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + if [ x"$GLIB_MKENUMS" = "xno" ]; then + if [ x"$enable_webhelper" = "xyes" ]; then + as_fn_error $? "glib-mkenums not found, are GLib dev tools installed?" "$LINENO" 5 + else + enable_webhelper=no + fi + fi + + + + if test ${GP_GTK_VERSION_MAJOR} = 3; then : + webkit_package=webkitgtk-3.0 +else + webkit_package=webkit-1.0 +fi + + + + + gtk_dep=0 + if test $gtk_dep -ne 0; then + + + + if test "$enable_webhelper" = no; then : + +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the GTK version in use is compatible with plugin WebHelper" >&5 +$as_echo_n "checking whether the GTK version in use is compatible with plugin WebHelper... " >&6; } + if test ${GP_GTK_VERSION_MAJOR} = $gtk_dep; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "$enable_webhelper" = yes; then : + as_fn_error $? "WebHelper is not compatible with the GTK version in use" "$LINENO" 5 +elif test "$enable_webhelper" = auto; then : + enable_webhelper=no +fi +fi +fi + + fi + + if test "$enable_webhelper" = "yes"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WEBHELPER" >&5 +$as_echo_n "checking for WEBHELPER... " >&6; } + +if test -n "$WEBHELPER_CFLAGS"; then + pkg_cv_WEBHELPER_CFLAGS="$WEBHELPER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + gdk-pixbuf-2.0 >= \${GDK_PIXBUF_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_WEBHELPER_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$WEBHELPER_LIBS"; then + pkg_cv_WEBHELPER_LIBS="$WEBHELPER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + gdk-pixbuf-2.0 >= \${GDK_PIXBUF_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_WEBHELPER_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + WEBHELPER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + else + WEBHELPER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$WEBHELPER_PKG_ERRORS" >&5 + + as_fn_error $? "Package requirements ($GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0) were not met: + +$WEBHELPER_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables WEBHELPER_CFLAGS +and WEBHELPER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details." "$LINENO" 5 +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables WEBHELPER_CFLAGS +and WEBHELPER_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details" "$LINENO" 5; } +else + WEBHELPER_CFLAGS=$pkg_cv_WEBHELPER_CFLAGS + WEBHELPER_LIBS=$pkg_cv_WEBHELPER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + elif test "$enable_webhelper" = "auto"; then + +pkg_failed=no +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WEBHELPER" >&5 +$as_echo_n "checking for WEBHELPER... " >&6; } + +if test -n "$WEBHELPER_CFLAGS"; then + pkg_cv_WEBHELPER_CFLAGS="$WEBHELPER_CFLAGS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + gdk-pixbuf-2.0 >= \${GDK_PIXBUF_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_WEBHELPER_CFLAGS=`$PKG_CONFIG --cflags "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi +if test -n "$WEBHELPER_LIBS"; then + pkg_cv_WEBHELPER_LIBS="$WEBHELPER_LIBS" + elif test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$GP_GTK_PACKAGE >= \${GTK_VERSION} + glib-2.0 >= \${GLIB_VERSION} + gio-2.0 >= \${GIO_VERSION} + gdk-pixbuf-2.0 >= \${GDK_PIXBUF_VERSION} + \$webkit_package >= \${WEBKIT_VERSION} + gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + pkg_cv_WEBHELPER_LIBS=`$PKG_CONFIG --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>/dev/null` + test "x$?" != "x0" && pkg_failed=yes +else + pkg_failed=yes +fi + else + pkg_failed=untried +fi + + + +if test $pkg_failed = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then + _pkg_short_errors_supported=yes +else + _pkg_short_errors_supported=no +fi + if test $_pkg_short_errors_supported = yes; then + WEBHELPER_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + else + WEBHELPER_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$GP_GTK_PACKAGE >= ${GTK_VERSION} + glib-2.0 >= ${GLIB_VERSION} + gio-2.0 >= ${GIO_VERSION} + gdk-pixbuf-2.0 >= ${GDK_PIXBUF_VERSION} + $webkit_package >= ${WEBKIT_VERSION} + gthread-2.0" 2>&1` + fi + # Put the nasty error message in config.log where it belongs + echo "$WEBHELPER_PKG_ERRORS" >&5 + + enable_webhelper=no +elif test $pkg_failed = untried; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + enable_webhelper=no +else + WEBHELPER_CFLAGS=$pkg_cv_WEBHELPER_CFLAGS + WEBHELPER_LIBS=$pkg_cv_WEBHELPER_LIBS + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + +fi + fi + + + + + if test "$enable_webhelper" = "auto"; then + enable_webhelper=yes + fi + if test "$enable_webhelper" = yes; then + ENABLE_WEBHELPER_TRUE= + ENABLE_WEBHELPER_FALSE='#' +else + ENABLE_WEBHELPER_TRUE='#' + ENABLE_WEBHELPER_FALSE= +fi + + + plugins_statusmsg+="WebHelper:$enable_webhelper +" + + + + ac_config_files="$ac_config_files webhelper/Makefile webhelper/src/Makefile" + + + + + # Check whether --enable-xmlsnippets was given. +if test "${enable_xmlsnippets+set}" = set; then : + enableval=$enable_xmlsnippets; enable_xmlsnippets=$enableval +else + enable_xmlsnippets=yes +fi + + + + if test "$enable_xmlsnippets" = "auto"; then + enable_xmlsnippets=yes + fi + if test "$enable_xmlsnippets" = yes; then + ENABLE_XMLSNIPPETS_TRUE= + ENABLE_XMLSNIPPETS_FALSE='#' +else + ENABLE_XMLSNIPPETS_TRUE='#' + ENABLE_XMLSNIPPETS_FALSE= +fi + + + plugins_statusmsg+="XMLSnippets:$enable_xmlsnippets +" + + + ac_config_files="$ac_config_files xmlsnippets/Makefile xmlsnippets/src/Makefile" + + + +ac_config_files="$ac_config_files Makefile po/Makefile.in" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 +$as_echo_n "checking that generated files are newer than configure... " >&6; } + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 +$as_echo "done" >&6; } + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + + ac_config_commands="$ac_config_commands po/stamp-it" + + +if test -z "${UNITTESTS_TRUE}" && test -z "${UNITTESTS_FALSE}"; then + as_fn_error $? "conditional \"UNITTESTS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${UNITTESTS_TRUE}" && test -z "${UNITTESTS_FALSE}"; then + as_fn_error $? "conditional \"UNITTESTS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${UNITTESTS_TRUE}" && test -z "${UNITTESTS_FALSE}"; then + as_fn_error $? "conditional \"UNITTESTS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${GP_GTK3_TRUE}" && test -z "${GP_GTK3_FALSE}"; then + as_fn_error $? "conditional \"GP_GTK3\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_CPPCHECK_TRUE}" && test -z "${HAVE_CPPCHECK_FALSE}"; then + as_fn_error $? "conditional \"HAVE_CPPCHECK\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_ADDONS_TRUE}" && test -z "${ENABLE_ADDONS_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_ADDONS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_AUTOCLOSE_TRUE}" && test -z "${ENABLE_AUTOCLOSE_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_AUTOCLOSE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_CODENAV_TRUE}" && test -z "${ENABLE_CODENAV_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_CODENAV\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_COMMANDER_TRUE}" && test -z "${ENABLE_COMMANDER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_COMMANDER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_DEBUGGER_TRUE}" && test -z "${ENABLE_DEBUGGER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_DEBUGGER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_DEFINEFORMAT_TRUE}" && test -z "${ENABLE_DEFINEFORMAT_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_DEFINEFORMAT\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_DEVHELP_TRUE}" && test -z "${ENABLE_DEVHELP_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_DEVHELP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYDOC_TRUE}" && test -z "${ENABLE_GEANYDOC_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYDOC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYEXTRASEL_TRUE}" && test -z "${ENABLE_GEANYEXTRASEL_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYEXTRASEL\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${BUILD_RST_TRUE}" && test -z "${BUILD_RST_FALSE}"; then + as_fn_error $? "conditional \"BUILD_RST\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYGENDOC_TRUE}" && test -z "${ENABLE_GEANYGENDOC_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYGENDOC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYINSERTNUM_TRUE}" && test -z "${ENABLE_GEANYINSERTNUM_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYINSERTNUM\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYLATEX_TRUE}" && test -z "${ENABLE_GEANYLATEX_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYLATEX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYLIPSUM_TRUE}" && test -z "${ENABLE_GEANYLIPSUM_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYLIPSUM\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYLUA_TRUE}" && test -z "${ENABLE_GEANYLUA_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYLUA\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYMACRO_TRUE}" && test -z "${ENABLE_GEANYMACRO_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYMACRO\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYMINISCRIPT_TRUE}" && test -z "${ENABLE_GEANYMINISCRIPT_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYMINISCRIPT\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYNUMBEREDBOOKMARKS_TRUE}" && test -z "${ENABLE_GEANYNUMBEREDBOOKMARKS_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYNUMBEREDBOOKMARKS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYPRJ_TRUE}" && test -z "${ENABLE_GEANYPRJ_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYPRJ\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYPY_TRUE}" && test -z "${ENABLE_GEANYPY_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYPY\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYSENDMAIL_TRUE}" && test -z "${ENABLE_GEANYSENDMAIL_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYSENDMAIL\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYVC_TRUE}" && test -z "${ENABLE_GEANYVC_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYVC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GEANYPG_TRUE}" && test -z "${ENABLE_GEANYPG_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GEANYPG\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GENIUSPASTE_TRUE}" && test -z "${ENABLE_GENIUSPASTE_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GENIUSPASTE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_GPROJECT_TRUE}" && test -z "${ENABLE_GPROJECT_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_GPROJECT\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${MARKDOWN_PEG_MARKDOWN_TRUE}" && test -z "${MARKDOWN_PEG_MARKDOWN_FALSE}"; then + as_fn_error $? "conditional \"MARKDOWN_PEG_MARKDOWN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_MARKDOWN_TRUE}" && test -z "${ENABLE_MARKDOWN_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_MARKDOWN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_MULTITERM_TRUE}" && test -z "${ENABLE_MULTITERM_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_MULTITERM\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_PAIRTAGHIGHLIGHTER_TRUE}" && test -z "${ENABLE_PAIRTAGHIGHLIGHTER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_PAIRTAGHIGHLIGHTER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_POHELPER_TRUE}" && test -z "${ENABLE_POHELPER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_POHELPER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_PRETTY_PRINTER_TRUE}" && test -z "${ENABLE_PRETTY_PRINTER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_PRETTY_PRINTER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_SCOPE_TRUE}" && test -z "${ENABLE_SCOPE_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_SCOPE\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_SHIFTCOLUMN_TRUE}" && test -z "${ENABLE_SHIFTCOLUMN_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_SHIFTCOLUMN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${HAVE_ENCHANT_1_5_TRUE}" && test -z "${HAVE_ENCHANT_1_5_FALSE}"; then + as_fn_error $? "conditional \"HAVE_ENCHANT_1_5\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_SPELLCHECK_TRUE}" && test -z "${ENABLE_SPELLCHECK_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_SPELLCHECK\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_TREEBROWSER_TRUE}" && test -z "${ENABLE_TREEBROWSER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_TREEBROWSER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_TREEBROWSER_TRUE}" && test -z "${ENABLE_TREEBROWSER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_TREEBROWSER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_TABLECONVERT_TRUE}" && test -z "${ENABLE_TABLECONVERT_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_TABLECONVERT\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_UPDATECHECKER_TRUE}" && test -z "${ENABLE_UPDATECHECKER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_UPDATECHECKER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_WEBHELPER_TRUE}" && test -z "${ENABLE_WEBHELPER_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_WEBHELPER\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ENABLE_XMLSNIPPETS_TRUE}" && test -z "${ENABLE_XMLSNIPPETS_FALSE}"; then + as_fn_error $? "conditional \"ENABLE_XMLSNIPPETS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by geany-plugins $as_me 1.24, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to the package provider." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +geany-plugins config.status 1.24 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +nm_file_list_spec \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; + "addons/Makefile") CONFIG_FILES="$CONFIG_FILES addons/Makefile" ;; + "addons/src/Makefile") CONFIG_FILES="$CONFIG_FILES addons/src/Makefile" ;; + "autoclose/Makefile") CONFIG_FILES="$CONFIG_FILES autoclose/Makefile" ;; + "autoclose/src/Makefile") CONFIG_FILES="$CONFIG_FILES autoclose/src/Makefile" ;; + "codenav/Makefile") CONFIG_FILES="$CONFIG_FILES codenav/Makefile" ;; + "codenav/src/Makefile") CONFIG_FILES="$CONFIG_FILES codenav/src/Makefile" ;; + "commander/Makefile") CONFIG_FILES="$CONFIG_FILES commander/Makefile" ;; + "commander/src/Makefile") CONFIG_FILES="$CONFIG_FILES commander/src/Makefile" ;; + "debugger/Makefile") CONFIG_FILES="$CONFIG_FILES debugger/Makefile" ;; + "debugger/src/Makefile") CONFIG_FILES="$CONFIG_FILES debugger/src/Makefile" ;; + "debugger/img/Makefile") CONFIG_FILES="$CONFIG_FILES debugger/img/Makefile" ;; + "defineformat/Makefile") CONFIG_FILES="$CONFIG_FILES defineformat/Makefile" ;; + "defineformat/src/Makefile") CONFIG_FILES="$CONFIG_FILES defineformat/src/Makefile" ;; + "devhelp/Makefile") CONFIG_FILES="$CONFIG_FILES devhelp/Makefile" ;; + "devhelp/devhelp/Makefile") CONFIG_FILES="$CONFIG_FILES devhelp/devhelp/Makefile" ;; + "devhelp/src/Makefile") CONFIG_FILES="$CONFIG_FILES devhelp/src/Makefile" ;; + "devhelp/data/Makefile") CONFIG_FILES="$CONFIG_FILES devhelp/data/Makefile" ;; + "geanydoc/Makefile") CONFIG_FILES="$CONFIG_FILES geanydoc/Makefile" ;; + "geanydoc/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanydoc/src/Makefile" ;; + "geanydoc/tests/Makefile") CONFIG_FILES="$CONFIG_FILES geanydoc/tests/Makefile" ;; + "geanyextrasel/Makefile") CONFIG_FILES="$CONFIG_FILES geanyextrasel/Makefile" ;; + "geanyextrasel/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanyextrasel/src/Makefile" ;; + "geanygendoc/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/Makefile" ;; + "geanygendoc/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/src/Makefile" ;; + "geanygendoc/data/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/data/Makefile" ;; + "geanygendoc/data/filetypes/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/data/filetypes/Makefile" ;; + "geanygendoc/docs/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/docs/Makefile" ;; + "geanyinsertnum/Makefile") CONFIG_FILES="$CONFIG_FILES geanyinsertnum/Makefile" ;; + "geanyinsertnum/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanyinsertnum/src/Makefile" ;; + "geanylatex/Makefile") CONFIG_FILES="$CONFIG_FILES geanylatex/Makefile" ;; + "geanylatex/doc/Makefile") CONFIG_FILES="$CONFIG_FILES geanylatex/doc/Makefile" ;; + "geanylatex/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanylatex/src/Makefile" ;; + "geanylipsum/Makefile") CONFIG_FILES="$CONFIG_FILES geanylipsum/Makefile" ;; + "geanylipsum/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanylipsum/src/Makefile" ;; + "geanylua/examples/edit/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/edit/Makefile" ;; + "geanylua/examples/scripting/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/scripting/Makefile" ;; + "geanylua/examples/info/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/info/Makefile" ;; + "geanylua/examples/work/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/work/Makefile" ;; + "geanylua/examples/dialogs/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/dialogs/Makefile" ;; + "geanylua/examples/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/examples/Makefile" ;; + "geanylua/docs/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/docs/Makefile" ;; + "geanylua/Makefile") CONFIG_FILES="$CONFIG_FILES geanylua/Makefile" ;; + "geanymacro/Makefile") CONFIG_FILES="$CONFIG_FILES geanymacro/Makefile" ;; + "geanymacro/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanymacro/src/Makefile" ;; + "geanyminiscript/Makefile") CONFIG_FILES="$CONFIG_FILES geanyminiscript/Makefile" ;; + "geanyminiscript/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanyminiscript/src/Makefile" ;; + "geanynumberedbookmarks/Makefile") CONFIG_FILES="$CONFIG_FILES geanynumberedbookmarks/Makefile" ;; + "geanynumberedbookmarks/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanynumberedbookmarks/src/Makefile" ;; + "geanyprj/Makefile") CONFIG_FILES="$CONFIG_FILES geanyprj/Makefile" ;; + "geanyprj/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanyprj/src/Makefile" ;; + "geanyprj/tests/Makefile") CONFIG_FILES="$CONFIG_FILES geanyprj/tests/Makefile" ;; + "geanypy/Makefile") CONFIG_FILES="$CONFIG_FILES geanypy/Makefile" ;; + "geanypy/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanypy/src/Makefile" ;; + "geanypy/geany/Makefile") CONFIG_FILES="$CONFIG_FILES geanypy/geany/Makefile" ;; + "geanypy/plugins/Makefile") CONFIG_FILES="$CONFIG_FILES geanypy/plugins/Makefile" ;; + "geanysendmail/Makefile") CONFIG_FILES="$CONFIG_FILES geanysendmail/Makefile" ;; + "geanysendmail/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanysendmail/src/Makefile" ;; + "geanyvc/Makefile") CONFIG_FILES="$CONFIG_FILES geanyvc/Makefile" ;; + "geanyvc/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanyvc/src/Makefile" ;; + "geanyvc/tests/Makefile") CONFIG_FILES="$CONFIG_FILES geanyvc/tests/Makefile" ;; + "geanypg/Makefile") CONFIG_FILES="$CONFIG_FILES geanypg/Makefile" ;; + "geanypg/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanypg/src/Makefile" ;; + "geniuspaste/Makefile") CONFIG_FILES="$CONFIG_FILES geniuspaste/Makefile" ;; + "geniuspaste/src/Makefile") CONFIG_FILES="$CONFIG_FILES geniuspaste/src/Makefile" ;; + "gproject/Makefile") CONFIG_FILES="$CONFIG_FILES gproject/Makefile" ;; + "gproject/src/Makefile") CONFIG_FILES="$CONFIG_FILES gproject/src/Makefile" ;; + "gproject/icons/Makefile") CONFIG_FILES="$CONFIG_FILES gproject/icons/Makefile" ;; + "markdown/Makefile") CONFIG_FILES="$CONFIG_FILES markdown/Makefile" ;; + "markdown/src/Makefile") CONFIG_FILES="$CONFIG_FILES markdown/src/Makefile" ;; + "markdown/docs/Makefile") CONFIG_FILES="$CONFIG_FILES markdown/docs/Makefile" ;; + "markdown/peg-markdown/Makefile") CONFIG_FILES="$CONFIG_FILES markdown/peg-markdown/Makefile" ;; + "markdown/peg-markdown/peg-0.1.9/Makefile") CONFIG_FILES="$CONFIG_FILES markdown/peg-markdown/peg-0.1.9/Makefile" ;; + "multiterm/Makefile") CONFIG_FILES="$CONFIG_FILES multiterm/Makefile" ;; + "multiterm/src/Makefile") CONFIG_FILES="$CONFIG_FILES multiterm/src/Makefile" ;; + "pairtaghighlighter/Makefile") CONFIG_FILES="$CONFIG_FILES pairtaghighlighter/Makefile" ;; + "pairtaghighlighter/src/Makefile") CONFIG_FILES="$CONFIG_FILES pairtaghighlighter/src/Makefile" ;; + "pohelper/Makefile") CONFIG_FILES="$CONFIG_FILES pohelper/Makefile" ;; + "pohelper/data/Makefile") CONFIG_FILES="$CONFIG_FILES pohelper/data/Makefile" ;; + "pohelper/src/Makefile") CONFIG_FILES="$CONFIG_FILES pohelper/src/Makefile" ;; + "pretty-printer/Makefile") CONFIG_FILES="$CONFIG_FILES pretty-printer/Makefile" ;; + "pretty-printer/src/Makefile") CONFIG_FILES="$CONFIG_FILES pretty-printer/src/Makefile" ;; + "scope/Makefile") CONFIG_FILES="$CONFIG_FILES scope/Makefile" ;; + "scope/data/Makefile") CONFIG_FILES="$CONFIG_FILES scope/data/Makefile" ;; + "scope/docs/Makefile") CONFIG_FILES="$CONFIG_FILES scope/docs/Makefile" ;; + "scope/src/Makefile") CONFIG_FILES="$CONFIG_FILES scope/src/Makefile" ;; + "shiftcolumn/Makefile") CONFIG_FILES="$CONFIG_FILES shiftcolumn/Makefile" ;; + "shiftcolumn/src/Makefile") CONFIG_FILES="$CONFIG_FILES shiftcolumn/src/Makefile" ;; + "spellcheck/Makefile") CONFIG_FILES="$CONFIG_FILES spellcheck/Makefile" ;; + "spellcheck/src/Makefile") CONFIG_FILES="$CONFIG_FILES spellcheck/src/Makefile" ;; + "treebrowser/Makefile") CONFIG_FILES="$CONFIG_FILES treebrowser/Makefile" ;; + "treebrowser/src/Makefile") CONFIG_FILES="$CONFIG_FILES treebrowser/src/Makefile" ;; + "tableconvert/Makefile") CONFIG_FILES="$CONFIG_FILES tableconvert/Makefile" ;; + "tableconvert/src/Makefile") CONFIG_FILES="$CONFIG_FILES tableconvert/src/Makefile" ;; + "updatechecker/Makefile") CONFIG_FILES="$CONFIG_FILES updatechecker/Makefile" ;; + "updatechecker/src/Makefile") CONFIG_FILES="$CONFIG_FILES updatechecker/src/Makefile" ;; + "webhelper/Makefile") CONFIG_FILES="$CONFIG_FILES webhelper/Makefile" ;; + "webhelper/src/Makefile") CONFIG_FILES="$CONFIG_FILES webhelper/src/Makefile" ;; + "xmlsnippets/Makefile") CONFIG_FILES="$CONFIG_FILES xmlsnippets/Makefile" ;; + "xmlsnippets/src/Makefile") CONFIG_FILES="$CONFIG_FILES xmlsnippets/src/Makefile" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; + "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool 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. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="" + +# ### BEGIN LIBTOOL CONFIG + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac ;; + "po/stamp-it":C) + if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then + as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 + fi + rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" + >"po/stamp-it.tmp" + sed '/^#/d + s/^[[].*] *// + /^[ ]*$/d + '"s|^| $ac_top_srcdir/|" \ + "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" + + sed '/^POTFILES =/,/[^\\]$/ { + /^POTFILES =/!d + r po/POTFILES + } + ' "po/Makefile.in" >"po/Makefile" + rm -f "po/Makefile.tmp" + mv "po/stamp-it.tmp" "po/stamp-it" + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + + + case $prefix in + NONE) prefix=$ac_default_prefix ;; + *) ;; + esac + + case $exec_prefix in + NONE) exec_prefix=$prefix ;; + *) ;; + esac + + + + + + expanded_datadir=$(eval echo $datadir) + expanded_datadir=$(eval echo $expanded_datadir) + + + + + expanded_libdir=$(eval echo $libdir) + expanded_libdir=$(eval echo $expanded_libdir) + + + + + expanded_docdir=$(eval echo $docdir) + expanded_docdir=$(eval echo $expanded_docdir) + + + cat < Sat, 22 Feb 2014 19:32:52 +0100 + [ Evgeni Golov ] + * [431a28d] add python-gtk2-dev B-D, needed for geanypy + * [f2dc92e] add package definitions for the new plugins + * [10567a7] properly link geanypy against gmodule, patch by upstream + * [de7dfab] add the new plugins to debian/copyright + * [988f71a] use canonical git urls + * [c1e261c] Standards-Version: 3.9.5 + * [6fa8471] it's Perl and Python, not perl and python + * [a0558cb] remove unused lintian overrides + * [88ee768] fix compilation on GNU/Hurd + + -- Matthieu Baerts (matttbe) Fri, 09 May 2014 10:33:34 +0200 + +geany-plugins (1.24+dfsg-1) unstable; urgency=medium + + [ Evgeni Golov ] + * [0aa0db1] add signature check for downloads + * [f152c29] Imported Upstream version 1.24+dfsg + * [4e0e7f4] we need gean 1.24 to build geany-plugins 1.24 + + [ Chow Loong Jin ] + * [ccfcba3] Use small compiled program to dump GEANY_ABI and GEANY_API. + Geany 1.24.1 contains a GEANY_ABI that isn't just a simple integer -- it's an + expression that needs to be resolved now. -geany-plugins (1.24.0+20130716+git-0~matttbe0) saucy; urgency=low - - * Beta version: Build with GTK3 - * debian/control, debian/rules: - - Removed plugins which are not compatible with GTK3: - - addons, debugger, doc, latex, macro, numberedbookmarks, - prj, vc, scope, devhelp, multiterm - * debian/rules: - - fixed ABI version - - dh_autoreconf: used ./autogen.sh - * debian/control: - - Added 'bc' as 'build-depends' (needed to compute the ABI) - - -- Matthieu Baerts (matttbe) Tue, 16 Jul 2013 12:00:57 +0200 + -- Chow Loong Jin Sun, 20 Apr 2014 01:34:06 +0800 geany-plugins (1.23+dfsg-3) unstable; urgency=low diff -Nru geany-plugins-1.24.0+20140222+git/debian/cleanfiles geany-plugins-1.24.1+dfsg/debian/cleanfiles --- geany-plugins-1.24.0+20140222+git/debian/cleanfiles 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/cleanfiles 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1,2 @@ +debian/dumpabiver +debian/abiversion.sh diff -Nru geany-plugins-1.24.0+20140222+git/debian/control geany-plugins-1.24.1+dfsg/debian/control --- geany-plugins-1.24.0+20140222+git/debian/control 2013-07-16 21:15:23.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/control 2014-04-21 12:50:52.000000000 +0000 @@ -8,48 +8,60 @@ dh-autoreconf (>= 4), autotools-dev, intltool (>= 0.35), - geany (>= 1.23.98), - libgtk-3-dev, + geany (>= 1.24), + libgtk2.0-dev (>= 2.16), libglib2.0-dev (>= 2.18), libenchant-dev (>= 1.3), - libgtkspell3-3-dev, libgtkspell-dev, - liblua5.1-0-dev, + liblua5.1-dev, libctpl-dev (>= 0.3), python-docutils, libxml2-dev (>= 2.6.27), libsoup2.4-dev (>= 2.4.0), - libwebkitgtk-3.0-dev, libwebkitgtk-dev (>= 1.1.18) | libwebkit-dev (>= 1.1.18), libgdk-pixbuf2.0-dev (>= 2.0), libgpgme11-dev, - libvte-2.90-dev, libvte-dev (>= 1:0.24), libwnck-dev (>= 2.10.0), libgconf2-dev (>= 2.6.0), libmarkdown2-dev, - valac (>= 0.7.0), - bc -Standards-Version: 3.9.4 + python-gtk2-dev, + valac (>= 0.7.0) +Standards-Version: 3.9.5 Homepage: http://plugins.geany.org -Vcs-Git: git://git.debian.org/git/pkg-geany/packages/geany-plugins.git -Vcs-Browser: http://git.debian.org/?p=pkg-geany/packages/geany-plugins.git +Vcs-Git: git://anonscm.debian.org/pkg-geany/packages/geany-plugins.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-geany/packages/geany-plugins.git Package: geany-plugins Architecture: all Enhances: geany -Depends:geany-plugin-codenav (>= ${source:Version}), +Depends: geany-plugin-addons (>= ${source:Version}), + geany-plugin-autoclose (>= ${source:Version}), + geany-plugin-codenav (>= ${source:Version}), + geany-plugin-debugger (>= ${source:Version}), + geany-plugin-defineformat (>= ${source:Version}), + geany-plugin-devhelp (>= ${source:Version}), + geany-plugin-doc (>= ${source:Version}), geany-plugin-extrasel (>= ${source:Version}), geany-plugin-gendoc (>= ${source:Version}), geany-plugin-geniuspaste (>= ${source:Version}), geany-plugin-gproject (>= ${source:Version}), geany-plugin-insertnum (>= ${source:Version}), + geany-plugin-latex (>= ${source:Version}), geany-plugin-lipsum (>= ${source:Version}), geany-plugin-lua (>= ${source:Version}), + geany-plugin-macro (>= ${source:Version}), geany-plugin-miniscript (>= ${source:Version}), + geany-plugin-multiterm (>= ${source:Version}), + geany-plugin-numberedbookmarks (>= ${source:Version}), + geany-plugin-pairtaghighlighter (>= ${source:Version}), geany-plugin-pg (>= ${source:Version}), + geany-plugin-pohelper (>= ${source:Version}), + geany-plugin-prj (>= ${source:Version}), + geany-plugin-py (>= ${source:Version}), geany-plugin-sendmail (>= ${source:Version}), geany-plugin-tableconvert (>= ${source:Version}), + geany-plugin-vc (>= ${source:Version}), geany-plugin-prettyprinter (>= ${source:Version}), geany-plugin-shiftcolumn (>= ${source:Version}), geany-plugin-spellcheck (>= ${source:Version}), @@ -67,28 +79,83 @@ Architecture: all Depends: geany (>= ${geany:Version}), ${misc:Depends} -Breaks: geany-plugin-addons (<< 1.24), - geany-plugin-debugger (<< 1.24), - geany-plugin-devhelp (<< 1.24), - geany-plugin-doc (<< 1.24), +Breaks: geany-plugin-addons (<< 0.19), + geany-plugin-doc (<< 0.19), geany-plugin-gdb (<< 0.19), - geany-plugin-latex (<< 1.24), + geany-plugin-latex (<< 0.19), geany-plugin-lipsum (<< 0.19), geany-plugin-lua (<< 0.19), - geany-plugin-macro (<< 1.24), - geany-plugin-multiterm (<< 1.24), - geany-plugin-numberedbookmarks (<< 1.24), - geany-plugin-prj (<< 1.24), - geany-plugin-scope (<< 1.24), + geany-plugin-prj (<< 0.19), geany-plugin-sendmail (<< 0.19), + geany-plugin-vc (<< 0.19), geany-plugin-shiftcolumn (<< 0.19), - geany-plugin-spellcheck (<< 0.19), - geany-plugin-vc (<< 1.24) + geany-plugin-spellcheck (<< 0.19) Description: set of plugins for Geany (translations) This package contains translations for the Geany Plugins. You probably do not want to install this package directly, but instead install one of the other plugins packages. +Package: geany-plugin-addons +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: miscellanous plugins for Geany + This plugin adds various small addons to Geany which aren't worth an + individual plugin, but might still be useful for people. + * DocList: This addon places a new item in the toolbar and when clicked + offers a menu listing all open files plus the 'Close All' and 'Close Other + Documents' menu items. This can be useful to quickly access open files and + switch to them. + * OpenURI: Adds 'Open URI' and 'Copy URI' menu items to the editor menu when + the word under the cursor looks like a URI. 'Open URI' uses the browser + command configured in Geany to open it. + * Tasks: The tasks plugin goes through a file being edited and picks out + lines with "TODO" or "FIXME" in them. It collects the text after those words + and putsthem in a new "Tasks" tab in the message window. Clicking on a task + in thattab takes you to the line in the file where the task was defined. + * Systray: Adds a status icon to the notification area (systray) and + providesa simple popup menu with some basic actions. It can also be used + to quickly show and hide the Geany main window. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-autoclose +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: auto-closing plugin for Geany + This plugin enables auto-closing features. Auto-closing works while you typing + and intellectually helps you to write code. + . + Features: + * auto-close for: { }, [ ], ( ), " ", ' ', < >, ` ` + * customizeable auto-closing inside strings and comments + * delete pairing character if you pressed BackSpace + * suppress inserting one char twice (if you type "{}" you will get "{}", not + "{}}") + * enclose selected text into brackets instead of removing selection (select + text and type "(" or ")" to enclose selection into "()") + * keep selection when enclosing + * for C-like languages enclosing selection into "{}" makes auto-indentation + (select text and type "{" or "}" - text will be enclosed and indented) + * enclosing in {} moves cursor to beginning (before "{" character) + * for C-like languages to insert {}-block you do not need to select text + precisely: plugin detects boundaries automatically, just ensure that + selection covers lines you need to indent (works like TAB indentation) + * fix auto-indent inside {} (makes full indent for this block) + * auto-close curly bracket by pressing Enter + * auto-close functions (``"sin(|" -> "sin(|);"``) with doubling suppression + (for C/C++ languages only) + * remove paring brace when pressing Shift+BackSpace, unindent {}-blocks + * add semicolon after ``struct {|};`` and ``class {|};`` + * move cursor to closed char by pressing Tab + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + Package: geany-plugin-codenav Enhances: geany Architecture: any @@ -114,6 +181,74 @@ Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. +Package: geany-plugin-debugger +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: debugger plugin for Geany + Features: + * Debugger panel + * Setting target, environment variables and command line arguments + * Breakpoints + * Watches, autos + * Debug terminal + * Debugger messages window + * Variables calltips while debugging + * Saving debug session data in a Geany project (can be switched through + settings) + * Double or single panel modes + * Hotkeys + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-defineformat +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: on-the-fly #define prettyprinter plugin for Geany + This plugin will help you to write multiline defines with aligned backslash. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-devhelp +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: DevHelp plugin for Geany + This plugin embeds an API documentation browser and search functionality + directly into Geany's user interface. + . + Devhelp is an API documentation browser mainly aimed at GNOME-related + libraries, although there are Devhelp books for a wide range of library + APIs. Check your package manager and/or Google and you should have no trouble + finding books that can be viewed with Devhelp. + . + Geany is a small and lightweight integrated development environment using the + GTK+ toolkit. + +Package: geany-plugin-doc +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: documentation plugin for Geany + Geanydoc is a plugin for the Geany IDE which is intended to be used to search + for documentation API from different sources. It allows execution of specified + commands on the current word at the cursor position or otherwise specified via + a dialog to obtain this documentation. This documentation is displayed in the + geany buffer as a tab called *DOC*, or may be displayed in an external program. + . + After installing this package, you'll need to enable the "Doc" plugin + and then setup a keyword binding for it in Geany's preferences dialogue. + . + Geany is a small and lightweight integrated development environment using the + GTK+ toolkit. + Package: geany-plugin-extrasel Enhances: geany Architecture: any @@ -191,6 +326,24 @@ Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. +Package: geany-plugin-latex +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: improved LaTeX support plugin for Geany + GeanyLaTeX is a plugin for the Geany IDE to improve work with LaTeX. Features + include: + * Wizard for creating a new LaTeX-document + * Frontend for easy input of \ref{} and \label{} + * Easy adding of special characters and environments through plugin menu entry + * Support for adding new items to BibTeX database + * Toolbar with commonly used format options + * Bulk replacement and input replacement of special characters + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + Package: geany-plugin-lipsum Enhances: geany Architecture: any @@ -215,6 +368,24 @@ Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. +Package: geany-plugin-macro +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: macro plugin for Geany + Geanymacro is a plugin to provide user defined macros for Geany. + This plugin allows you to record and use your own macros. Macros are + sequences of actions that can then be repeated with a single key + combination. So if you had dozens of lines where you wanted to delete + the last 2 characters, you could simple start recording, press End, + Backspace, Backspace, down line and then stop recording. Then simply + trigger the macro and it would automatically edit the line and move to + the next. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + Package: geany-plugin-markdown Enhances: geany Architecture: any @@ -239,8 +410,8 @@ . The filter type can be: - Unix shell script, - - perl script, - - python script, + - Perl script, + - Python script, - sed commands, - awk script. . @@ -252,6 +423,47 @@ Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. +Package: geany-plugin-multiterm +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: multiterm plugin for Geany + MultiTerm is similar to Geany's built-in VTE terminal except that it supports + multiple terminals in tabs and supports different shells in each of the + terminal tabs. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-numberedbookmarks +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: numbered bookmarks plugin for Geany + Geanynumberedbookmarks is a plugin to provide users with 10 numbered + bookmarks (in addition to the usual bookkmarks). + Normaly if you had more than one bookmark, you would have to cycle + through them until you reached the one you wanted. With this plugin you + can go straight to the bookmark that you want with a single key + combination. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-pairtaghighlighter +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: tag pair highlighter plugin for Geany + Finds and highlights matching opening/closing HTML tag by clicking or + moving cursor inside a tag. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + Package: geany-plugin-pg Enhances: geany Architecture: any @@ -264,6 +476,69 @@ Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. +Package: geany-plugin-pohelper +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: Geany plugin for improved support for GetText translation files + Pohelper is a plugin for Geany that improves the support for + GetText translation files + . + Features: + * Navigation between all, untranslated or fuzzy messages + * Reformatting of the translation (reflow) + * Toggling the fuzziness of a translation + * Pasting of the untranslated string to the translation + * Automatic updating of the translation metadata + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-prj +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: alternative project manager for Geany + GeanyPrj is a plugin for Geany that provides an alternative method for managing + projects in Geany, which moves away from Geany's default project management + style, which is session-based, instead implementing a system which + automatically opens a project when oen of its files are opened. + . + Geany is a small and lightweight integrated development environment using the + GTK+ toolkit. + +Package: geany-plugin-py +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: Python bindings for the Geany plugin API + GeanyPy allows people to write their Geany plugins in Python making + authoring a plugin much more accessible to non C programmers. + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. + +Package: geany-plugin-scope +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: graphical GDB front-end for Geany + Scope is a graphical GDB front-end with the normal functions you would + expect (stepping, breakpoints, etc.), and a few notable features: + * The comminication between Scope and gdb is asynchronous. + * You can enter any gdb command, at any time. + * All gdb I/O (along with some other messages) is displayed in a + terminal-like "Debug Console". Whenever you find the GUI lacking, + simply switch to that console and work directly with gdb. + * 7-bit/Locale/UTF-8 support for values. + . + Geany is a small and lightweight integrated development environment using the + GTK+ toolkit. + Package: geany-plugin-sendmail Enhances: geany Architecture: any @@ -293,6 +568,24 @@ . Geany is a small and lightweight integrated development environment using the Gtk+ toolkit. + +Package: geany-plugin-vc +Enhances: geany +Architecture: any +Depends: ${geany:ABI}, geany-plugins-common (= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} +Description: VCS plugin for Geany + GeanyVC is a plugin for Geany that provides a uniform way of accessing the + different version-control systems inside the Geany IDE. Only a small subset of + vc operations are implemented, which are: + * diff + * log + * status + * revert + * commit + . + Geany is a small and lightweight integrated development environment using the + Gtk+ toolkit. Package: geany-plugin-prettyprinter Enhances: geany diff -Nru geany-plugins-1.24.0+20140222+git/debian/copyright geany-plugins-1.24.1+dfsg/debian/copyright --- geany-plugins-1.24.0+20140222+git/debian/copyright 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/copyright 2014-04-20 18:21:11.000000000 +0000 @@ -9,6 +9,10 @@ 2009 Eugene Arshinov License: GPL-2+ +Files: autoclose/* defineformat/* +Copyright: 2013-2014 Pavel Roschin +License: GPL-2+ + Files: build/* configure.ac */Makefile.am @@ -105,6 +109,15 @@ 2007, Frank Lanitz License: GPL-3+ +Files: geanypy/* +Copyright: 2011-2014 Matthew Brush + 2014 Lex Trotman +License: GPL-2+ + +Files: geanypy/geany/console.py +Copyright: 2004-2010 by Yevgen Muntyan +License: LGPL-2.1+ + Files: geanysendmail/* Copyright: 2007-2011, Frank Lanitz 2008-2009, Timothy Boronczyk @@ -160,6 +173,14 @@ Copyright: 2011 Matthew Brush License: GPL-2+ +Files: pairtaghighlighter/* +Copyright: Volodymyr Kononenko +License: BSD-2-clause + +Files: pohelper/* webhelper/* +Copyright: 2010-2014, Colomban Wendling +License: GPL-3+ + Files: pretty-printer/* Copyright: 2009, Cedric Tabin License: GPL-2+ @@ -189,10 +210,6 @@ Copyright: 2011, Frank Lanitz License: GPL-2+ -Files: webhelper/* -Copyright: 2010-2011, Colomban Wendling -License: GPL-3+ - Files: xmlsnippets/* Copyright: 2010 Eugene Arshinov License: GPL-2+ @@ -272,6 +289,24 @@ On Debian systems, the full copy of the GPL-2 license can be found in /usr/share/common-licenses/GPL-3 +License: LGPL-2.1+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This library 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 + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + . + On Debian systems, the full copy of the LGPL-2.1 license can be found in + /usr/share/common-licenses/LGPL-2.1 + License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -303,3 +338,27 @@ appreciated but is not required. . THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. + +License: BSD-2-clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + . + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff -Nru geany-plugins-1.24.0+20140222+git/debian/dumpabiver.c geany-plugins-1.24.1+dfsg/debian/dumpabiver.c --- geany-plugins-1.24.0+20140222+git/debian/dumpabiver.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/dumpabiver.c 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1,9 @@ +#include +#include + +int main() +{ + printf("GEANY_ABI=geany-abi-%d\nGEANY_API=geany-api-%d\n", + GEANY_ABI_VERSION, GEANY_API_VERSION); + return 0; +} diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-addons.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-addons.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-addons.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-addons.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +addons/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-addons.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-addons.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-addons.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-addons.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/addons.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-autoclose.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-autoclose.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-autoclose.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-autoclose.docs 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +autoclose/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-autoclose.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-autoclose.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-autoclose.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-autoclose.install 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/autoclose.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-codenav.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-codenav.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-codenav.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-codenav.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-commander.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-commander.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-commander.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-commander.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-debugger.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-debugger.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-debugger.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-debugger.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +debugger/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-debugger.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-debugger.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-debugger.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-debugger.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,2 @@ +usr/lib/*/geany/debugger.so +usr/share/geany-plugins/debugger/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-defineformat.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-defineformat.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-defineformat.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-defineformat.docs 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +defineformat/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-defineformat.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-defineformat.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-defineformat.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-defineformat.install 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/defineformat.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-devhelp.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-devhelp.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-devhelp.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-devhelp.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +devhelp/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-devhelp.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-devhelp.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-devhelp.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-devhelp.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,2 @@ +usr/lib/*/geany/devhelp.so +usr/share/geany-plugins/devhelp/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +geanydoc/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/geanydoc.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-doc.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-doc.lintian-overrides 2014-04-22 06:45:19.000000000 +0000 @@ -0,0 +1,3 @@ +# This is a plugin to search for documentation, not containing documentation +geany-plugin-doc binary: wrong-section-according-to-package-name +geany-plugin-doc binary: documentation-package-not-architecture-independent diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-extrasel.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-extrasel.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-extrasel.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-extrasel.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-gendoc.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-gendoc.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-gendoc.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-gendoc.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-geniuspaste.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-geniuspaste.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-geniuspaste.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-geniuspaste.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-gproject.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-gproject.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-gproject.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-gproject.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-insertnum.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-insertnum.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-insertnum.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-insertnum.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.doc-base geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.doc-base --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.doc-base 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.doc-base 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,11 @@ +Document: geanylatex-manual +Title: Geany LaTeX manual +Abstract: GeanyLaTeX is a plugin for the Geany IDE to improve work with LaTeX. +Section: Typesetting + +Format: HTML +Index: /usr/share/doc/geany-plugin-latex/geanylatex.html +Files: /usr/share/doc/geany-plugin-latex/*.html + +Format: PDF +Files: /usr/share/doc/geany-plugin-latex/geanylatex.pdf.gz diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,6 @@ +geanylatex/README +geanylatex/doc/*.html +geanylatex/doc/geanylatex.css +geanylatex/doc/geanylatex.pdf +geanylatex/doc/img/ + diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-latex.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-latex.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/geanylatex.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-lipsum.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-lipsum.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-lipsum.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-lipsum.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-macro.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-macro.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-macro.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-macro.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +geanymacro/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-macro.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-macro.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-macro.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-macro.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/geany/geanymacro.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-miniscript.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-miniscript.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-miniscript.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-miniscript.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-multiterm.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-multiterm.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-multiterm.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-multiterm.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +multiterm/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-multiterm.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-multiterm.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-multiterm.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-multiterm.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/geany/multiterm.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-numberedbookmarks.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-numberedbookmarks.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-numberedbookmarks.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-numberedbookmarks.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +geanynumberedbookmarks/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-numberedbookmarks.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-numberedbookmarks.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-numberedbookmarks.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-numberedbookmarks.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +usr/lib/*/geany/geanynumberedbookmarks.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pairtaghighlighter.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-pairtaghighlighter.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pairtaghighlighter.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-pairtaghighlighter.docs 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +pairtaghighlighter/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pairtaghighlighter.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-pairtaghighlighter.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pairtaghighlighter.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-pairtaghighlighter.install 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/pairtaghighlighter.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pg.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-pg.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pg.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-pg.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pohelper.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-pohelper.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pohelper.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-pohelper.docs 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +pohelper/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pohelper.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-pohelper.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-pohelper.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-pohelper.install 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1,2 @@ +/usr/lib/*/geany/pohelper.so +/usr/share/geany-plugins/pohelper/* diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prettyprinter.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-prettyprinter.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prettyprinter.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-prettyprinter.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prj.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-prj.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prj.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-prj.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +geanyprj/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prj.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-prj.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-prj.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-prj.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/geanyprj.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-py.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-py.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-py.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-py.docs 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1 @@ +geanypy/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-py.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-py.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-py.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-py.install 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1,3 @@ +/usr/lib/*/geany/geanypy.so +/usr/lib/*/geany/geanypy/ +/usr/share/geany/geanypy/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-scope.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-scope.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-scope.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-scope.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,2 @@ +debian/tmp/usr/share/doc/geany-plugins/scope/README +debian/tmp/usr/share/doc/geany-plugins/scope/html/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-scope.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-scope.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-scope.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-scope.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,2 @@ +usr/share/geany-plugins/scope +usr/lib/*/geany/scope.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-sendmail.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-sendmail.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-sendmail.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-sendmail.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-shiftcolumn.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-shiftcolumn.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-shiftcolumn.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-shiftcolumn.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-spellcheck.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-spellcheck.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-spellcheck.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-spellcheck.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-tableconvert.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-tableconvert.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-tableconvert.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-tableconvert.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-treebrowser.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-treebrowser.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-treebrowser.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-treebrowser.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-updatechecker.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-updatechecker.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-updatechecker.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-updatechecker.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-vc.docs geany-plugins-1.24.1+dfsg/debian/geany-plugin-vc.docs --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-vc.docs 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-vc.docs 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +geanyvc/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-vc.install geany-plugins-1.24.1+dfsg/debian/geany-plugin-vc.install --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-vc.install 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-vc.install 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1 @@ +/usr/lib/*/geany/geanyvc.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-webhelper.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-webhelper.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-webhelper.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-webhelper.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/geany-plugin-xmlsnippets.lintian-overrides geany-plugins-1.24.1+dfsg/debian/geany-plugin-xmlsnippets.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/geany-plugin-xmlsnippets.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/geany-plugin-xmlsnippets.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/lintian-overrides geany-plugins-1.24.1+dfsg/debian/lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-relro diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -addons/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/*/geany/addons.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-addons.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-addons.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -debugger/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.install 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/lib/*/geany/debugger.so -usr/share/geany-plugins/debugger/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-debugger.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-debugger.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -devhelp/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.install 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/lib/*/geany/devhelp.so -usr/share/geany-plugins/devhelp/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-devhelp.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-devhelp.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -geanydoc/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/*/geany/geanydoc.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-doc.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-doc.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -# This is a plugin to search for documentation, not containing documentation -geany-plugin-doc binary: wrong-section-according-to-package-name -geany-plugin-doc binary: documentation-package-not-architecture-independent -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.doc-base geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.doc-base --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.doc-base 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.doc-base 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -Document: geanylatex-manual -Title: Geany LaTeX manual -Abstract: GeanyLaTeX is a plugin for the Geany IDE to improve work with LaTeX. -Section: Typesetting - -Format: HTML -Index: /usr/share/doc/geany-plugin-latex/geanylatex.html -Files: /usr/share/doc/geany-plugin-latex/*.html - -Format: PDF -Files: /usr/share/doc/geany-plugin-latex/geanylatex.pdf.gz diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -geanylatex/README -geanylatex/doc/*.html -geanylatex/doc/geanylatex.css -geanylatex/doc/geanylatex.pdf -geanylatex/doc/img/ - diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/*/geany/geanylatex.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-latex.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-latex.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -geanymacro/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/geany/geanymacro.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-macro.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-macro.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -multiterm/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/geany/multiterm.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-multiterm.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-multiterm.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -geanynumberedbookmarks/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -usr/lib/*/geany/geanynumberedbookmarks.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-numberedbookmarks.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-numberedbookmarks.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -geanyprj/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/*/geany/geanyprj.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-prj.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-prj.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -debian/tmp/usr/share/doc/geany-plugins/scope/README -debian/tmp/usr/share/doc/geany-plugins/scope/html/ diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.install 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -usr/share/geany-plugins/scope -usr/lib/*/geany/scope.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-scope.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-scope.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.docs geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.docs --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.docs 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -geanyvc/README diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.install geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.install --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.install 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/*/geany/geanyvc.so diff -Nru geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.lintian-overrides geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.lintian-overrides --- geany-plugins-1.24.0+20140222+git/debian/old/geany-plugin-vc.lintian-overrides 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/old/geany-plugin-vc.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -hardening-no-fortify-functions diff -Nru geany-plugins-1.24.0+20140222+git/debian/patches/debian-doc-locations.patch geany-plugins-1.24.1+dfsg/debian/patches/debian-doc-locations.patch --- geany-plugins-1.24.0+20140222+git/debian/patches/debian-doc-locations.patch 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/patches/debian-doc-locations.patch 2014-04-23 06:03:53.000000000 +0000 @@ -1,3 +1,7 @@ +From: Evgeni Golov +Date: Fri, 29 Mar 2013 23:14:44 +0100 +Subject: load help files from Debian's locations + diff --git a/commander/src/commander-plugin.c b/commander/src/commander-plugin.c index 7afb6fe..92ff4ca 100644 --- a/commander/src/commander-plugin.c diff -Nru geany-plugins-1.24.0+20140222+git/debian/patches/geanypy-link-gmodule.patch geany-plugins-1.24.1+dfsg/debian/patches/geanypy-link-gmodule.patch --- geany-plugins-1.24.0+20140222+git/debian/patches/geanypy-link-gmodule.patch 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/patches/geanypy-link-gmodule.patch 2014-04-20 14:43:51.000000000 +0000 @@ -0,0 +1,39 @@ +From d1e9203fd5b0eb7c14bc537b7a918555bb9ba91e Mon Sep 17 00:00:00 2001 +From: Colomban Wendling +Date: Sun, 20 Apr 2014 14:06:14 +0200 +Subject: [PATCH] geanypy: Add missing linking against gmodule + +--- + build/geanypy.m4 | 1 + + geanypy/src/Makefile.am | 5 +++-- + 2 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/build/geanypy.m4 b/build/geanypy.m4 +index 7fd4258..a4582f0 100644 +--- a/build/geanypy.m4 ++++ b/build/geanypy.m4 +@@ -3,6 +3,7 @@ AC_DEFUN([GP_CHECK_GEANYPY], + GP_ARG_DISABLE([Geanypy], [auto]) + GP_CHECK_PLUGIN_GTK2_ONLY([Geanypy]) + GP_CHECK_PLUGIN_DEPS([Geanypy], [PYGTK], [pygtk-2.0]) ++ GP_CHECK_PLUGIN_DEPS([Geanypy], [GMODULE], [gmodule-2.0]) + dnl FIXME: Checks for Python below should gracefully disable the plugin + dnl if they don't succeed and enable_geanypy is set to `auto`. + dnl However, since these macros don't seem to gracefully handle +diff --git a/geanypy/src/Makefile.am b/geanypy/src/Makefile.am +index 34b257a..7e6b53a 100644 +--- a/geanypy/src/Makefile.am ++++ b/geanypy/src/Makefile.am +@@ -8,9 +8,10 @@ geanypy_la_CPPFLAGS = @GEANY_CFLAGS@ @PYGTK_CFLAGS@ @PYTHON_CPPFLAGS@ \ + -DGEANYPY_PYTHON_DIR="\"$(libdir)/geany/geanypy\"" \ + -DGEANYPY_PLUGIN_DIR="\"$(datadir)/geany/geanypy/plugins\"" \ + -UHAVE_CONFIG_H +-geanypy_la_CFLAGS = -fno-strict-aliasing -Wno-write-strings ++geanypy_la_CFLAGS = -fno-strict-aliasing -Wno-write-strings @GMODULE_CFLAGS@ + geanypy_la_LIBADD = @GEANY_LIBS@ @PYGTK_LIBS@ @PYTHON_LDFLAGS@ \ +- @PYTHON_EXTRA_LIBS@ @PYTHON_EXTRA_LDFLAGS@ ++ @PYTHON_EXTRA_LIBS@ @PYTHON_EXTRA_LDFLAGS@ \ ++ @GMODULE_LIBS@ + geanypy_la_SOURCES = geanypy-app.c \ + geanypy-dialogs.c \ + geanypy-document.c geanypy-document.h \ diff -Nru geany-plugins-1.24.0+20140222+git/debian/patches/hurd.patch geany-plugins-1.24.1+dfsg/debian/patches/hurd.patch --- geany-plugins-1.24.0+20140222+git/debian/patches/hurd.patch 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/patches/hurd.patch 2014-04-23 06:01:56.000000000 +0000 @@ -0,0 +1,41 @@ +From: Evgeni Golov +Date: Sun, 20 Apr 2014 17:48:54 +0200 +Subject: scope: build properly on GNU/Hurd + The scope plugin currently does not build on GNU/Hurd. + These patches fix the issue by properly detecting BSD + flavours (and not misdetecting GNU/Hurd as one) and + defining PATH_MAX as GNU/Hurd has no such limitation. + +diff --git a/scope/src/conterm.c b/scope/src/conterm.c +index e09cfff..9a2bfc7 100644 +--- a/scope/src/conterm.c ++++ b/scope/src/conterm.c +@@ -33,9 +33,12 @@ + #if (defined(__unix__) || defined(unix)) && !defined(USG) + #include + #endif +-#ifdef BSD ++#if defined(__FreeBSD__) || defined(__DragonFly__) + #include + #include ++#elif defined(__NetBSD__) || defined(__OpenBSD__) || (defined(__APPLE__) && defined(__MACH__)) ++#include ++#include + #else + #include + #endif +diff --git a/scope/src/program.c b/scope/src/program.c +index e939c3b..5f8f2c0 100644 +--- a/scope/src/program.c ++++ b/scope/src/program.c +@@ -23,6 +23,10 @@ + + #include "common.h" + ++#ifndef PATH_MAX ++#define PATH_MAX 4096 ++#endif ++ + static StashGroup *program_group; + static StashGroup *options_group; + static StashGroup *thread_group; diff -Nru geany-plugins-1.24.0+20140222+git/debian/patches/series geany-plugins-1.24.1+dfsg/debian/patches/series --- geany-plugins-1.24.0+20140222+git/debian/patches/series 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/patches/series 2014-04-22 06:45:28.000000000 +0000 @@ -1 +1,3 @@ debian-doc-locations.patch +geanypy-link-gmodule.patch +hurd.patch diff -Nru geany-plugins-1.24.0+20140222+git/debian/rules geany-plugins-1.24.1+dfsg/debian/rules --- geany-plugins-1.24.0+20140222+git/debian/rules 2013-07-16 17:43:10.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/rules 2014-04-21 12:06:33.000000000 +0000 @@ -4,37 +4,48 @@ export LDFLAGS += -Wl,--as-needed -Wl,-z,defs -GEANY_ABI_VERSION_WITHOUT_SHIFT = $(shell grep 'define GEANY_ABI_VERSION' /usr/include/geany/plugindata.h | awk '{print substr($$3, 2)}') -GEANY_ABI_SHIFT = $(shell grep 'define GEANY_ABI_SHIFT' /usr/include/geany/plugindata.h | head -n 1 | awk '{print $$4}') -GEANY_ABI_VERSION = $(shell echo "$(GEANY_ABI_VERSION_WITHOUT_SHIFT) * 2 ^ $(GEANY_ABI_SHIFT)" | bc) - GEANY_VERSION = $(shell pkg-config --modversion geany) -GEANY_ABI = geany-abi-$(GEANY_ABI_VERSION) -GEANY_API = geany-api-$(shell grep 'define GEANY_API_VERSION' /usr/include/geany/plugindata.h | awk '{print $$3}') override_dh_autoreconf: - NOCONFIGURE=1 dh_autoreconf ./autogen.sh + dh_autoreconf --as-needed # specify libexecdir to avoid cascading geany-plugins directories in /usr/lib override_dh_auto_configure: dh_auto_configure -- \ --libexecdir='$${exec_prefix}/lib' \ + --enable-addons \ + --enable-autoclose \ --enable-codenav \ --enable-commander \ + --enable-debugger \ + --enable-defineformat \ + --enable-devhelp \ + --enable-geanydoc \ --enable-geanyextrasel \ --enable-geanygendoc \ --enable-geanyinsertnum \ + --enable-geanylatex \ --enable-geanylipsum \ --enable-geanylua \ + --enable-geanymacro \ --enable-geanyminiscript \ + --enable-geanynumberedbookmarks \ + --enable-geanyprj \ + --enable-geanypy \ --enable-geanysendmail \ + --enable-geanyvc \ --enable-gtkspell \ --enable-geanypg \ --enable-largefile \ --enable-geniuspaste \ --enable-gproject \ --enable-markdown \ + --disable-peg-markdown \ + --enable-multiterm \ + --enable-pairtaghighlighter \ + --enable-pohelper \ --enable-pretty_printer \ + --enable-scope \ --enable-shiftcolumn \ --enable-spellcheck \ --enable-treebrowser \ @@ -43,20 +54,6 @@ --enable-webhelper \ --enable-xmlsnippets -# currently not supported when using GTK3 => grep -rn GP_CHECK_PLUGIN_GTK2_ONLY build -# --enable-addons \ -# --enable-debugger \ -# --enable-geanydoc \ -# --enable-geanylatex \ -# --enable-geanymacro \ -# --enable-geanynumberedbookmarks \ -# --enable-geanyprj \ -# --enable-geanyvc \ -# --enable-scope \ - -# --enable-devhelp \ -# --enable-multiterm \ - # install separate ChangeLogs for each different plugin override_dh_installchangelogs: for changelog in */ChangeLog; do \ @@ -73,16 +70,24 @@ dh_installchangelogs # add geany:Version substvar to debian/*.substvars -override_dh_gencontrol: +debian/dumpabiver: debian/dumpabiver.c + $(CC) -o $@ $< $(shell pkg-config --cflags geany) + +debian/abiversion.sh: debian/dumpabiver + $< > $@ + +override_dh_gencontrol: debian/abiversion.sh + . debian/abiversion.sh && \ dh_gencontrol -- \ "-Vgeany:Version=$(GEANY_VERSION)" \ - "-Vgeany:API=$(GEANY_API)" \ - "-Vgeany:ABI=$(GEANY_ABI)" + "-Vgeany:API=$${GEANY_ABI}" \ + "-Vgeany:ABI=$${GEANY_ABI}" # Don't make shlibs (false positive on pretty-printer.so override_dh_makeshlibs: override_dh_install: + find debian/tmp/ -name '*.pyc' -delete dh_install --list-missing %: diff -Nru geany-plugins-1.24.0+20140222+git/debian/upstream/signing-key.asc geany-plugins-1.24.1+dfsg/debian/upstream/signing-key.asc --- geany-plugins-1.24.0+20140222+git/debian/upstream/signing-key.asc 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/upstream/signing-key.asc 2014-04-19 11:16:45.000000000 +0000 @@ -0,0 +1,226 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +mQINBE1rywUBEAC1RnAQ4p2ej4qmfPss4cYBkqbNCfejg97KitowL2IQMb8SWIJ+ +pTLsSrCXm/OXaC1IDmkytQ0NGylahHYn2/YDoszjYzo4fu+QWfndnUxXUlud2M6x +beMyxA0Gn/r0GZdTD+kyHXy4xy0fXKCulVYdSaZWa82cBixSOMIONZNUugpWabdj +VjWEcS6lQ3cG/vcxeOrfSMad2gBLbYbOF0UMnzMc7KooDZZ6JXh0m8M52glfnBZN +ODSTetn+02hNY4l7uVI9ZVOmq98pLU9/FVohskvZGio5baSoCGYcD7YckG+gcQvb +MRua2WVTpaXIsEtPkSmyuA2y3ogOhWu+XyMqTvRfQqoLLxP2bKi0AHHxzHX7CPA7 +6BTTkl/EWdLXLMtmvLQdGX1Xq7Us0dO8FsOPdFCePPFHx8kq1osilZs3tp2SvVoe +/jzoxnv0Mj9ypWVBbmQN+Qv1mjca+KRS7Luldt1tcJFVz5GKFL835w9CCjX9mU85 +zt/CACQP+KjtAawdpBu6oc4A9y/OyJrIubg5N4RBwNU4F2Rweduupr61vKbvUai7 +Uo6ICi2B8/hAMg78QVAKg3Uvz3zkciLjTmt0JhQgq6stkph0J75jgDoCXqJ++QGa +G/yx70ZcVL5TYhQHaadcmDGWITXjPrR2sHeLSP/MvJQiFXgAE35HWJzB/wARAQAB +tCNDaG93IExvb25nIEppbiA8aHlwZXJhaXJAZ21haWwuY29tPohGBBARAgAGBQJN +a80oAAoJEOCxXFKPAqQRjR4AoNLZhKvvbBC2FBrJv886/5Bd5sIGAKCxzBe6uVMQ +/6NPL33sEl0dKeZO2ohGBBARCAAGBQJNk4cAAAoJEDfhwXVwCWrRDyoAn3fQqLYC +4xuw6dBvcRNMJ8fvoLPzAJ4/nJrrfK5AX+sc47HfwDPfUmxofokBHAQTAQIABgUC +TWxaZQAKCRDUr37v5+YghRraB/493BVXzcc6DtAfB5AMJRIl0aA/PiN+oMib2N3t ++2nIUuzP9j+ptXyOaWmQWYcU+5fccNwgk0pzJfqj6UpHUvms2SffPUABlJeN/nwx +j3/8blsnj1y0T39Sicy6rTf127qLcnKOnO0Hk0lM4ju6+x749VkGxC4OQPibF0L9 +FKZvGAt3q+iwYAeFWMLXnM0bDCacUxAwCoeeDdH/FxG9wS9GlybP8ftjV92svwZo +RLiLSvUDHXhvOZWY4n95evjPi8Ac6eDvopr+FNSlBBxPsvwrwXizsI/u84ROvShz +xX0LgnmPd4d5xEeay2vT5TQoXPmH++Yh6f/yFG3uYzDEJU3+iQI3BBMBAgAiBQJN +a8vUAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRD71SJbWIdSoTtYD/dp +8Igh5TkyN2zfn55mYrOW8nbiJR+bkkz/wP8Jmdjn7sHaHmeRRm+dz2PWfECpN8C/ +c69JcFnUgqGKdQosz1XUmXqsR7bdA6HvIPhC5+8rGMhIWT2l8+usyaCIiiEjFxr+ +VWAOtdgF2awT9f9D4j80AfYYQt4KT8eFGDxG3Ef7BJhHJtmDa8Xa1VSG/06YbeGN +G08cVvNfdOoMcRlxi9WMnWV+16JPH8/bNcTWr/vprfFXdXBQLpy0lKPXPxfw5Lzl +hzaal+VLlyfnU6Z8ol+t2WJrprBUs/oggpn+9lV6cPnYa5fmhxmzlAJpmEeS9L9y +LyIkqb/lUh1+YB3pdmFEddITwixMG24DODFc52JnoJs0FxURSBs6bBJ/WIsWTHmq +m4929iu3lFDRF57aiRNqNPWdzWHPQqCiejnSPqbUXRIUPU/i2UMtfUe8v+eyfTas +NnkDE87ydXI65j9w0qL/+eMBbMPD2zOkhWhQZmmkzfuVykGx+mCfaejq/ysVniLo +Le4NSPJs5+PNYRlgIOjvrPUM9jm3adoa2nxZhZE7ajgh7bKwx3W8/+01FGc/Lp02 +idwJUSMlUs6uPQEJ5uYSC4gIGFW/caCfCquhg3RVe+CWEvGxlIkvBjiveK2XpY0i +dER3yhBjz4fNzr8RjOdR3s+5Pnom9ZHwgxDyvBhhiQQcBBABAgAGBQJNbsPfAAoJ +EKJ/PpTsA3ff7AYf/RnoO67Crz77uBX5EVSlwYoY44i7WWc1bE/4PzYou1Oqtk6Z +MJkn81JVz1fnwjQXmnacSGniNqleRheaJMbGNf5JHsJj1yjEyOkYuKy9MMSytswO ++bLB/zDb2DkBVxbrFcTMqYBu/LZA1UexO4I6a2gemnQ2kH+R1fvk72WNOi0lbU/C +wC3St30KKp+Qg8UCW4sDFwiKtLlJgJt0qNKpRIWZgXR5T3asex/yqV8HzAWCloxj +0U4YGVRZenBxIYoi9QqJTu8zsoW6mmUGcC9udjoixAqMKZPVop47vL/7X77S9acr +SPmiutWnmxOYd7byfIGLYu/ksYChIdcOqayc9omlWiTpud/fVxIoVBB/r9gUO06w +uju13Ac34YFmkQ8tbVeGoI772py463S51O+w8hjoW6/qeY6Ltoq/Pk3ln3FkZ5Vz +h2kIPhywYZ6jaa2vVJPFvukeUitKYMKPX0m/KoR7DGZF0/Glpou0sGtZmLYwi5eV +rdiNzkdYThiRnkaqawuDLG/qgBMw2JBbgCxwquLjdnTID3EglSyKCBK535WFNOe2 +25/NB7gZ1/3cYB12RiQKBbVI9MKRtN6eN73dZBdjbqFiw4i1iZRQ4gZ2D75FULds +86UwMckM++f/F8hvjnfPGYqz/Q8iUBmMiDaubApqxLODEhmOtFMvlnOWUl6XT8lf +sDZOJA+0u5RyewT+2hszlYGphS6vyqwHQUN3r8lRnIGwuybjy0FkmrJvVLS/OIRd +tt7PD0wi+RraNM/C0A97GAMxrA+yQvfa8Fu/4JlFdh+O2aVUFhL215xu81yL9f2y +MiDNBsF+u9iDMXLGpfRelIZpT7j+l53INkDV3UqSFnzDvle5R3i8UkfHCND8aVgv +Xpa4AcDGLkPCdbOKNWjnjJhnG02vIdffXNLiIFR/957HyepQLTH9qbVU6vtcpS1P +aKuNhEHKn4ZqCiqVA/l/ZiQ9dCh4du5SN401yLACkXlr1ZNjzlP6plSTsmphTSSG +/juTPmF1TudIWd9ZPDdkeqRfvoumAUmnpPLr4fHvdDE9051rkVW3NEBN6tzJJ36e +k6hr8cyLMiveWIPKnUWI96pTXYpGLvAtxaYmXeMX+OKzeII4VgvVPLVz2G162VrW +DEnRYJJ2gsuy7p0uK2Q9DMCF9XBEfF/g6EK10Anwb1whRx7YLiUF7mvZcOgOIUH+ +xQB4JL0JH3OFy7255aRmW4BLoytRlKZg3MU2E04Q5401iK1k8MM7a6Kj8OXdmBe8 +IHpDjX8QVmjdvHwtmmZOS1hONfTyp7YREZbkySzWKSgJp4ZtwaRRpFcVdiI4mrQ6 +heW7kzEFQc/Zx11OZzjtR7QV0rZgAzCnFhj+SbO0JENob3cgTG9vbmcgSmluIDxj +aG93MDA4MkBudHUuZWR1LnNnPohFBBARAgAGBQJNa80xAAoJEOCxXFKPAqQRrYYA +nRdlV+3C3eSI5uSXJhEn3oqbjPCXAJjpwnyHdobN+rzG/7g+rArUpvU6iEYEEBEI +AAYFAk2ThwAACgkQN+HBdXAJatGlOgCfR4+ifBH9aBhKaa++7tPGrAEsJLQAoJa0 +DunKHoI00zgtfacKvU5cubZCiQEcBBMBAgAGBQJNbFplAAoJENSvfu/n5iCF+jQH +/0S6oTBVhocnQ2HGKcNyfGbWQ5K1NNkxJdhE/hTmXK2T2MvXIKLihRAWyZDVYIUB ++GRSe+mrBSoVFdoCQFAWRlbMr/rqnBPR/xX2Ux1OAffzc+2q9O73DxavJBcuCtCH +30ztX+nF9123in/lvHIV5pfPd0QHIhJtsh/bzm742lb1gzcj238795JOLT76UQEd +zWcDn8FnkKxxGillqUQhFza8EQBqDsQfXPpYc4gQ24SBFVVaIJXdIDVfK7viqU6y +xNoNEL8Xi4HwXRsp2Oh4szNCQtsylO//deNaQQcZaTsAz297wb+RxJOUkz2lT/uO +C8HqwINKdAAuIX39XmWtVUWJAjgEEwECACIFAk1ry90CGwMGCwkIBwMCBhUIAgkK +CwQWAgMBAh4BAheAAAoJEPvVIltYh1KhfikP/3W1FmVaAPWens0nTy0xMQcRxPEb +wPabMBFSyi/Eepy66KY45ZVhFhvrzwCtPujZoof1SjeabPMA+5C0XBZUMzrLCa0M +0XWlThTrBN/agU3C5s9G+rXdX0hDfmelv5dSYBlcZ3MVsFSiSRu8LNud0zie4nbP +BSZdFNWgjEczsdjf+zMqBZJNVjpd0pAGeLEVVkdV9iUK+NcLBdQP+NOhByxQIjE+ +ry6SqUbn1Ll4MGpLi7d9kz82OLLa1YnqD9O9yzFmTkzTIvSVVnUmMCZAdntGJ97m +YwJpx9eKr1ktd7liYuAklkRzBoXZbzLNXifMTbGxyemsWLZ8jaI1kURPTj7nCfP2 +zfVLVpQN9/PHkWb8dOtbU1lZkD+oO17s15SAD/r5AHCoT6qKHnstBgrSdFQtx09r +H1qwUfcpyvvcA2v0A7aY/d3k+gnWNy6iYMAgMZ7h+HYPMJXzlrS4tCrHFzT2pUTw +RwST11O3QC59TUHanFBhZEShr99CwuSbNN+ABfB00H2uSVvlFeWConlIH7JCawdb +2NNsbPdoAQLXT5pbBoDyj3qpRLPKxR5h3Sen0Jkkc8vNh6MS9PJpZGEl/43smq3m +vf2u4d5zcQtNU0k6Hmvt+1koE6RoGOkEluZ749tZJvOPA2lYJ2KNB7VKFUzUukhn +w0UAESGcMh8zJa/liQQcBBABAgAGBQJNbsPfAAoJEKJ/PpTsA3ffpSEf/0HP+QF5 +ueurfaeX4tMmwjMh42wmQqI8YW1zOJXmZyyyQQ06/OdlLOY46fpecgQFZoLQdD9B +Z0hyeUPSLKZ62zyGAW3Qwl1Lb11iPhtCMbjJ6gb5iA2V9ja/HB1wGts1Tbl0KNml +0FiFHKR9szvRGQ/543mW+PB/5OPGQhi4ugnpHEOOe6OUJCdAHfrJsl6tT+BOksyW +zs8cU77DWa/14Svw0qNTF1weB9kAzja1Jveoaad5v5uM8N0TqJc7KkAdUE/JwjxM +crWrrILAaBGbi2VHPkbnSptI1dophR7dSDGq/3k/QopkXuGCBLOYCuM+k5LDzs7i +AQ+R5iiF5dT0mYUhDawGVBuhziAq9t7Zw9tOgBmK6Qa5DLPtORFd5BzsTH1ZPDiF +W6r1TLioqQGbcGyB7WaGmNnCpQ8PokitjZJp1TllsJ/diay76/8+djruhqtuuYLh +CAIxXJZMV4gWsGgYK/kwEgI1QG45AVt3Jdnkcdk8ucixB4YgIdnwdTAIRl7Bqagk +mo9kLwHrA6Rn7PByMVn4pxfiW+0iX7ePgvw22zfhcA0J2gPMNx6MGs4WxtgaR/AP +KwXJVUYjdM8VtTJxHlMoZzynSzfr+03IVzTdPPfI5iOMa0mCOtEbDKu4+Bxj5mPV +iAyXwLkw62b6p7TOaFx1Aqb8RPYTV2TMI3CssaB3++mAt5UamihUOcRksmk3znVv +40i7PqKMxE23BKJQQuz7IZMY6LsP2j1xJL7lu9kZeKBij71XKZvPcCzKS3B9dFZY +JHF65klZ6KFvQUSmuPyjfegedwQuAUJhkUR96L5GaMLQSTZLntnnYycdjRfwQ4LK +2A+0IVWaukVZGyrUMSw7Ckczq5HkQz9YMlHAByHW5Pi8gJYTTIyEWAbLgLDXR/o2 +iIPXxCUJ7iQm4FD16rAP91nUCNqCrcGa2oyZNS6QlF4S3KYIdtaSFiE8DMSzj3iH +g2jfXylIqeWskax0yED0MG4MHU6zdy1ub6WBcAfZEURSP4HYab9sw4OzNM7P/OMB +PlkFGfUEEHQ0kqea3eGDrLSQpl6h0f4dqbKdOYJN4oR1PhIzgNo62J7527YiNo/7 +x2ER2GdBedsV4yRX09GTT00BbkHW/FKsMTcuu2YTTpaReyBDutEbj+BbUAcueRkz +ZNqXOyhJ+qYu6V1jmbcc2eGhJF4uVqyPakCy/sRQS2ppq81P1uQw7j80WTDz3nZy +46fvK+odk4ULzZFILm/IVxVGp+6CIrqrbnJiQcgvc9WIbjOybn5YG11YWhhNYuzP +uGduVPCVPR16yMWY7xZ/pHFqAlC4Up0UKIyMReUgRJ1niIyqiwyYHqZwnbRwgQAh +0tK88n5Dt4sFG5u0JENob3cgTG9vbmcgSmluIDxoeXBlcmFpckB1YnVudHUuY29t +PohGBBARAgAGBQJNa80VAAoJEOCxXFKPAqQRFLYAn0TQu+ZX+8gl0R+UnVAW8bEz +k4mlAJ9EmaZyNPDoRGcjVfv0IJcFMouSTohGBBARCAAGBQJNk4cAAAoJEDfhwXVw +CWrRq2EAnix6S5GfjJnjEJOWoa1+w9evbgXGAJ92n+WGR+B5h+FJcLQLSjGMrk18 +DIkBHAQTAQIABgUCTWxaZQAKCRDUr37v5+YghTpKB/9Vp5EnArzGlRkoIQp83385 +iInefSbmAz3RypGP3qQkBsmORq30dlXWIND/owlrTf3/mh6uGMYjV8TXwPxjCaZJ +Fwwjg2gVYmzh8XV2DZby+VA67VId7uTNXlZ4j2MUGKLtOXv2Qs8CMky8qSwRYIdr +GkxMV/dZxs6jjeWWpagjNRslEbyG2zVuMZTIl7OkRjrYDxypQsXFCEkUDCkb3g6a +Gflu5b0n0DFWeSKDZZEYILFR2OAzz1nBS5cizo3RU+pd0hiA1FSpxC4PSmPTq1SP +2R9sCgOuf5a28+Mvaau3uCAzwfvYsnBUVjnoMxV7pjhAz00fNbiz73umhvb+q0Az +iQI7BBMBAgAlAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAUCTWvMpgIZAQAK +CRD71SJbWIdSockwEACjhKQhQybLv/mgwPFGIeSkpPQDAy/tKr1mnKtUWFHstzJE +uyoFXg32Y6oelshuqu+8ZaY1DY9P5Q7VQuprjv1TDvLqlauOAwt8zoggjA3/+4XV +6ub4VkG8I8715D5bqF/HalbsRN8iqxPl7Z2dGa4s96gGq2DsSF96riPbXviSb30C +bAPp32DrNJkG3PHpjbQw6SGN4S28Lk31JSU58Zb0X5Unkze+o1Wd9AyZrSTWa+CX +uMiCyewqlmeXnw6Gv2J/19vNfyJMIv2BD7hbpol6Xm1y/BOiLYc4hVhDku0Y48ok +6c32cUqmPwkjtHVFTkm64kuj/DmUFKTLTEzgyY8nlmMpsokG2CfCwv9SrDrCky0U +dzSELMu2Afh8zZcE6/LcOEDr7Vis53u4aKSvCytpqbQQCI7KyFYPraiJIbstrxCV +Xb/XiJwyB06Jja4wJIuxU00fc5wjLCVWqGU1jSw4QvjiFC07EM+gmnkSjfIeCjVD +V0gPtRriaZCwJ+fYQ0q/cnPAEUdsOu9ayzxw36Io/5rPQG7cxMwhoSFctptnktEi +ooYZ6W6NrWfnodqt7SUjWtmYyqXP01JKxCy0+Q1XFlkkpJ1xqdXkYSqPp28SEgQI +HQzYmJbrtZGJSk/TmKrsPoo7l1AjvJ7fjCXYQ2mXR6ZgDmtN6yaYW5jn0KOGYIkE +HAQQAQIABgUCTW7D3wAKCRCifz6U7AN33/WLH/95fxy/h+UcHKkdqKxBjk/GeNDO +bYdUJMTShEn3KxKGO2rHp4njPqB+0qk+pASyGWUFKq8O9mgZ0pjp19Wx6bX1DKgV +QXUM9MZrta3wl1tdxDuBeyfkwMhEdiv/jE+bcYnYEycTOltEZyPP2uqqnlAuB5+o +SC4S3iUvd9M4lwGTvveG+X6SooL9l3vFm26Qt+lnrISm1OJecdCW9vn0NJy2U000 +MsJhMQE0uXrPA5MdAb6VTSatKIoiJgojIkbM4eeunJLt0qtM7VR9NkNAXaIsEO2W +17/32RcSAQ/b+WVX+Dj/pvjqaSmyyvvh4+MffvK1XYB1h743oYZ8yG3Q9VCJAaHk +lFfsFEcYn0KFBilUOxGA026ENePiigF8CZF+rRdWdxoNktRxkmajX7WCm7bJhW5w +IoHvNfoBGlz1DYdzb4y27POZAo87Gmd/ykcQy+1/tK/7erqyH4KkQIwV26lVm2TJ +DUqxAiKEuNn0zpSeGre4K/J0Xl3Lc6DAw7r/qFwanIvem4VCF8THARSFCcj18NQk +XwGGg7KSRntI5BP7Dver1ExIADB2hqK7MKbK0XelgF6v7bpFfIlomGLc/yjbGz2Y +EVgzyByPbkJuqbuQAVNvue63Ex0P+wUl42x3p5U/0+RfK0M+Trj+ehPVrMTbVbaS +ZGAQWLrAAKZVFifBbKVfNY9QIdHV0Kx1NmQDPxW2hx3D2GraRh6ePSMqMvg3i8bE ++EoAfmP3Z5LfOoU3tsqvY2mrx56Zuq0F2sOz8CYzI2nXiWG4fy2QMw5qOnmp080m +fWqRaf1aa0RTPRuHKimwplodXh2TFY1QjRHV9f97zjjCuYrm8yzQfpYtE9TcSs0r +fR/tPqbDx6iW9QWwGrnbDLAT+iVVBwLTwYfA/SkHoS9SEksCN/6VOGyDgB26VZBD +aPaHKO30U3vQ94pFOCb064uYvIJks3joZglyLx5Of1RCU9ivef+ydfjSPg9Z1A1k +yIsMvpg5F9HNVSMsT+tG/OX5NsFpBCehvbDWHya93LlAQTfvoFMr2GzmcIVXHahn +wKnUqdfGJ/bsHAv5PQThCCpsSWdDx9ef5EXWXurM805R9dnxuS4gejZw8vwNdARf +2ncBLOF7y8d9GZbSaDrKg03e/bzwrO/p1ntbXG6QDPymn5rto0O2suEYzHw/ZXce +4OyJRieGSk2ls9dmljHMfK5V8gf1qQcQ5SE67Dt7bVQms1qZFTP4Y1LVtHlndXD5 +VxvunQwVNDLG2oYnXBmy7RW+HoK83lA6Tbnn2cWGlQN6sb1PZFYXaH5Wv+PnxGze +NOIOBrSuakjeqZ14l76G/gphzx8Lx+XOVVwcY97sbk4rfDSN743kRpR7vnvitCZD +aG93IExvb25nIEppbiA8Y2hvdzAwODJAZS5udHUuZWR1LnNnPohGBBARAgAGBQJN +a80eAAoJEOCxXFKPAqQRMrUAnR13MXMB+ZFtbvSS6mf8xzEscrobAKCripNzY3DB +pz08jpRVhhT+X7eQMYhGBBARCAAGBQJNk4cAAAoJEDfhwXVwCWrR+mEAmQFcbVTU +I4/xskA5STPmgZCtc+doAJ9orLCJzv757Zc+tT2SrnbRJZQQGIkBHAQTAQIABgUC +TWxaZQAKCRDUr37v5+YghYlDB/wN3ml/XS+bLETrjTBNXqt02+PKPK8mZAsE5zHA +JgXpzOxv+0gA5ohznu2dltUe9bA6+xwFnPJ1cdNR5064rtGtmRoNJJpWtxJp3G6P +bi6zRlerMZTi+swc1B0yapNSllEfV8/m5pf3VK2qo3Fa/C2u+zD+VHzJwTOxyFzm +MSVLy2OAgFN+1I8gwiZGW64nXcuD3L9AdQQikNR66wSfMHvi6zkV5XbSD2QYYl+/ +SGs4lbSHrbv/S39ZVTplxMgBrXtcEIdsK1E6oKu1DyYIMKqRAwmO4+fWREtRrBm2 +XPViVRraK27eyfoD52Tj9M1NZ7qg73YGw9AaMCcE9cIsUgBNiQI4BBMBAgAiBQJN +a8vnAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRD71SJbWIdSodsdD/9t +7lFJ7wCTZpwM4txOrtcQxblRLdPuMTsPmWUTZYD4UAp40mQgan2rcmm5xcSc7qDj +MscJeJyu2UU78bbcL3c04Yw/BrCy94WWosbXCcfD4OVIp83dp8i1xVimi+MmrNfu +vzPX5VFViqHQU/JU5hKjs8A0rMK+4cfBUTioUQmiIyXl217vnhbdD/1kRagbQ9tK +6ZILRmd/4q9+dtsXs3n/+pw71UkTv9sq1Bmpx9PNIio4ttJXMs7sJtWioW9dhr6T +05S1vOFzJD1fwSGffSCVmKTazouacYXy8LTPDrM0unSKXezsNxY33GCgNxJcRWVK +TbdABy+Zul74qcD884H/r3w3bD735/L7MFDeVR/i4no9ClmWq89NzD4rjQA5oCeB +WbTBEcNmEzmWdtHjnuSNY7ynOZoPc6UAITIaL4EiF3NjMRfAWr7csCmmP+TRxzxg +8ywJ9aLk9xQl7Kb/uED4Mm+5vnKx9MMGDKfmL5b2jqo9n2ggyMuAsy2msaRQL4Tf +s3eHM0HCDNWswWUMYqMnt0KQU/UMj8GL+/GvYQqURkkHRkhOcl598qIGAKBJ1O72 +DYEaVjafrbCNitRAE9+LyA/bbVH1XBYHlOTYGISyRBZgxLB5FIvPzdLT1uFesdHT +OB47xIx4VTcQpRJgLtKadf+bwtVsFL5Nc9Ih8hzKHYkEHAQQAQIABgUCTW7D3wAK +CRCifz6U7AN339fnH/975uTeTfDq5eMBfoJ017Uqt1YP8VRSwTP+WXPdY7AgcfJ1 +ppcGaTLcWlAxftouET8suhKvS75DPht7h2U71LSSXrA63tMzYJfMReYJaX0qyaUm +hkYEoJX3OXl/WcK9r8alw8yElOBPyBcnguQixVbNT57hbToKxZvC9wGXo1O+yGq9 +3QgLlyDQ8roHvJqr2LZQvQDC/Jn+981kSdY/gjncuvi1FNveG1LauuyLtmoFPEBQ +PaUn7iQ7wf9spSket3L3bdJqCw7tYTchqsQ6+LmGrRMEir2YcdBDwwctcT1SsaOf +8MuOvI4ahdGM8VtDQL8jG+71u5t6rkNe9L5dOOjKULRH3H4xUXBz0FsheqT4YUvY +jiZ7DYhcZuSibVapQGhisLRNXcrnLTmit42GWw8UTotrFLuVFUlHoUNuja+t7O26 +cYhA6hyNnyjPvIa7fvug2ATF95mhGJTr7jzItK5amJEzPQWAKcQk1p2n9d5s58sP +ZSxbXHb2qROdMn88CeEZmfeNrrpSWX9w0rWE80HU6pYizNlOQ2Gp4Y01Zfkhf746 +MZUefkhOFqsSQkzpqn/WA7im9wj+BREh3PXsTI4hN99UYSHBYpzXGnSC46m0iQAe +u/q7yQrAYpDof8VRMGUFmcTw5/nkt0HEaVu4UlpLfHv2UGx70LuOxIq8A0S1vmuw +eaMbLH6l4xT1Acf3QNyth4umunwOUGj3tgNM1GhWpmLlSRmlTBYyoYOu09RSPIeh +NkTbPb2fMYOALB6YFTULll60aQWLe1HdSt76OD113ThfY0N8yrRv77DNAHSXpC+S +YMjHx0pIo2vkuOOcN7Amvr7efPZ8CsGa/IECU5tvO8dFJOUfJUvGh+/i/18Tc9xC +W9P49HDG2zY7P6JjR9HpLRYhISu/rC1O6kIlfvv4Z+0FG6A/IxEe/1HgMMy2T1YS +5Q0qDcZ6CCgCywbhFK351jtzdzVFFP0XmKv9WVB9laFHSoGBfs0bi9pkipnSkKf+ +sUziU8fAeNQRr3sP/kENBNFJU9E73aNK52yXoqpPnpE3ah2LQDwAG8csK77Mpy0n +9zoUETOcF28t9ueeDr8k5tsoUAmFdiZ/gnM4heIEMoHjsOJea9BFlAxVpmkUlRMX +dRXJbQ4B+R1rdNFjlyATqMFpPRQtBpjnaGPcuzTUObatsM1GdqcYQeazx4MbwroX +NJpFwNHE9p0gxj83L3v3oLISqF9AOPodNE5IzQDnjGBttPYoYO+6KMEWxUFH+GaZ +QgeQLS+jYa+qXb107m42iOzAthFBPWPqbV2lWodfmaE4U2hXMUfy8S/Jy6mxfPCF +0aIo2gwwHXnlgExBiXvDb9n9jQ/QZZoyvxE8U4chtCxDaG93IExvb25nIEppbiA8 +bG9vbmdqaW5Ac29sdXRpb24tc3BhY2UuY29tPokCOAQTAQIAIgUCTdyxEAIbAwYL +CQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ+9UiW1iHUqF2kA//aAJ3EKsQ9bRk +3IND8d2aK9opnIKoAIjKcHihUK53lRREhrlt7kwowCf2buhlwQhfcl+RcgoCIG39 +PVLUTBEc1Wb5Aggxu1DLbb29sVgD5DVryaDnLKj+FLoq0Drh/OtQfF5PJ3nT1j4X +O7Ppmh1VNg9OH5xUAzKvG1CWgU5/3O0MrBci0aIge08odF77Az1d/QCpjR5CB08b +sbd1ZtNJs4qz1HivBRaMCCLjxxDwGl6K8P+kiQEoN5SQ4bARmMq5AU3vcsv5P835 +sXVbbMWmVyRd3ubv8gBG557FnLzl/dBs6PuffkbG4K1FXO8TNbshj2uLqNABTiJS +RyiowWsgJscCsfIYDOJrvTPUWx87mTBr+/NwnOJG1TeQ2VkeTTwvPYodol7YWnE+ +N5Pbyf2yRS2g0dlNldrgiizkBkg32xegpTSX2Dcmb9rkNn3vSag4gUIPyiRlZZgS +OUDY0/UepLT79B3Wo5F+zI2sJVqi2rwvcnqRwWE6eb94V8q4oxee1CcKvzjof1lQ +T9Lze5sypfk2BgOqrOH8uPT8EoxYyUy1r6EbagZf6e+GJP8Z0f8wg+DxQm2kbQ9y +XzbTRsPEu/yMy53qjJc6tkffdYpMiD1tUEE8phKGtnIw04I+jN0RkjYHekA9wsfu +vaDLYoRBLzzemJr0hjTpSILACWa6gEy5Ag0ETWvLBQEQALlaCKqTlXq/LDFSH6gw +TeyA8akZDNWvnoNA1Mf8XysixCunWBi6kw8uxJ2QggYtsv7+pIu+nNQzdVenPbYa +9PJyxxymNFk3SFl7K2qnG4m4J1RgFQEJRm3KpoI2X41jcpa2wWCficY8RU+0AIm3 +RCMmZML1rrXuxa9TANiA6v0o5qvsQ0/QOLXDBHYNzqsvYRnzsATk1963IAxF4caz +Lcy2wpcILfyyJL7NtDNRe8sb1T8XI3uTJn2o1PPArU3fOj1oIGosL1x1J0Uxg761 +OsfJ6O7wEnsMDL0YwLGesrl1T1gtcaZlQZO2w2H26JphfVUul9+/M3nhsK61HWP0 +RlwiY2rb2ekcfK9GSZLJGk6wXrJ8oY4nxvBNoTo2TrJ5c0yhNUF890CwkJTX4V/L +6xvrcn4T86MD2FiRrUzwzXhwjcKKk0Dc8Nt1UxBdP0ksdmx2BVu3ge1OcHyN2tsD +FqIRmH96pseHxYMGlMeCTXvrYkz1MUrHuchFUWL50Fej8uqnaD8CkwlBjWX0iG+m +t01NpxkgXeX8+2nOe8pnX0nYdXTp+qOrNuLaajlBGfb80XYbnweWCRpj9RheU1ep +jW8P/wSUZ/yf0tkzJSIGSUM001KvVlRRfKWoy4Af/8E3BWFKEwegvPMOHzorSdCG +sS4oa/zRnOcjfC2aS+sl4/hpABEBAAGJAh8EGAECAAkFAk1rywUCGwwACgkQ+9Ui +W1iHUqGDRQ/9H7Ht6ZAXQ+08JPe5m2sNsiJQfD5KbwZcPUMwyYvNVPrzC+lAFsxI +gn0wTKgLGFIK0YDgQwnEx5Czq7tXm3X4OvBn8bhey5xlCjKtGBI4ByfRE6LupBEx +Nv55QrCyDdodYZ4jqVn2Jj8G+tKLtS6Rkf/qNtVZLMD0aKBJd8dgnffGJBnVtiOh +oQSgSXDEteNF9oDFmLj9kECHMX0e55Lo4f4RljsWgWAaB8srdQQShnekbRDknPZy +Cx1ju7qtyg5UIOj1HWORzV9TCzufn4QOrmG87+anJYrirmEFRIn0D8KUXtwJoWMM +/3GFZ7ckINqujILWF8Kh74hhshxiq4RA/x1pfGlpVTExUnF0MgPCrb3aCogflP+z +nTwAE7Y0r7SpPAwn3wgVCQoPnSMAgSppm6HA0kWsrCAEgR1DXYcdBIBySwsO6A0G +RO5LlYZMEmMDsZs1IoaZxPzfsSPXe6+iI7sqD+pjdseo9rGwP6LKfoM02bEmkED4 +yvpsBov3jA4ptSd66HjbgU54moqFi2CRZsX/msc64dh8gQdDcTAJUSMCbeCo7tCZ +ObFWbT2OYOvQHsRa20gHDCgOue0YcRdmwenQH8gTXh8hxvJkFxKqZdNalhPfyp4c +QASZQxnJcAtWNTspVSEvzqAsFev8vZdIH9iC3JhOQg8CT83/F82whl0= +=L9/V +-----END PGP PUBLIC KEY BLOCK----- diff -Nru geany-plugins-1.24.0+20140222+git/debian/watch geany-plugins-1.24.1+dfsg/debian/watch --- geany-plugins-1.24.0+20140222+git/debian/watch 2013-05-10 07:45:40.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debian/watch 2014-04-19 11:16:45.000000000 +0000 @@ -1,5 +1,5 @@ # Compulsory line, this is a version 3 file version=3 -opts=dversionmangle=s/\+dfsg(\.\d+)?$// \ +opts=dversionmangle=s/\+dfsg(\.\d+)?$//,pgpsigurlmangle=s/$/.sig/ \ http://plugins.geany.org/geany-plugins/geany-plugins-(.*).tar.gz diff -Nru geany-plugins-1.24.0+20140222+git/debugger/img/Makefile.in geany-plugins-1.24.1+dfsg/debugger/img/Makefile.in --- geany-plugins-1.24.0+20140222+git/debugger/img/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debugger/img/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,640 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindata_DATA) +subdir = debugger/img +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindatadir)" +DATA = $(dist_plugindata_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = debugger +dist_plugindata_DATA = \ + continue.png \ + restart.gif \ + run.gif \ + run_to_cursor.gif \ + step_in.png \ + step_out.gif \ + step_over.gif \ + stop.gif \ + tabs.gif + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign debugger/img/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign debugger/img/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindataDATA: $(dist_plugindata_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindatadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindatadir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindatadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindatadir)" || exit $$?; \ + done + +uninstall-dist_plugindataDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindatadir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindatadir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindataDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindataDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindataDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_plugindataDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/debugger/Makefile.in geany-plugins-1.24.1+dfsg/debugger/Makefile.in --- geany-plugins-1.24.0+20140222+git/debugger/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debugger/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS TODO +subdir = debugger +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src img +plugin = debugger +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign debugger/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign debugger/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/debugger/src/callbacks.c geany-plugins-1.24.1+dfsg/debugger/src/callbacks.c --- geany-plugins-1.24.0+20140222+git/debugger/src/callbacks.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debugger/src/callbacks.c 2014-04-13 13:33:33.000000000 +0000 @@ -157,13 +157,17 @@ /* * Handles mouse leave event to check if a calltip is still present and hides it if yes */ -static gint leave_signal; +static gulong leave_signal = 0; static gboolean on_mouse_leave(GtkWidget *widget, GdkEvent *event, gpointer user_data) { ScintillaObject *so = (ScintillaObject*)widget; - if (scintilla_send_message (so, SCI_CALLTIPACTIVE, 0, 0)) + if (leave_signal > 0) { g_signal_handler_disconnect(G_OBJECT(widget), leave_signal); + leave_signal = 0; + } + if (scintilla_send_message (so, SCI_CALLTIPACTIVE, 0, 0)) + { scintilla_send_message (so, SCI_CALLTIPCANCEL, 0, 0); } return FALSE; @@ -234,12 +238,17 @@ } case SCN_DWELLEND: { + if (leave_signal > 0) + { + g_signal_handler_disconnect(G_OBJECT(editor->sci), leave_signal); + leave_signal = 0; + } + if (DBS_STOPPED != debug_get_state ()) break; if (scintilla_send_message (editor->sci, SCI_CALLTIPACTIVE, 0, 0)) { - g_signal_handler_disconnect(G_OBJECT(editor->sci), leave_signal); scintilla_send_message (editor->sci, SCI_CALLTIPCANCEL, 0, 0); } break; diff -Nru geany-plugins-1.24.0+20140222+git/debugger/src/Makefile.in geany-plugins-1.24.1+dfsg/debugger/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/debugger/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/debugger/src/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,1113 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/vars.docs.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = debugger/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +debugger_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) +am_debugger_la_OBJECTS = debugger_la-bptree.lo \ + debugger_la-breakpoint.lo debugger_la-breakpoints.lo \ + debugger_la-btnpanel.lo debugger_la-callbacks.lo \ + debugger_la-calltip.lo debugger_la-dbm_gdb.lo \ + debugger_la-dconfig.lo debugger_la-debug.lo \ + debugger_la-debug_module.lo debugger_la-dpaned.lo \ + debugger_la-envtree.lo debugger_la-gui.lo debugger_la-keys.lo \ + debugger_la-atree.lo debugger_la-markers.lo \ + debugger_la-pixbuf.lo debugger_la-plugin.lo \ + debugger_la-stree.lo debugger_la-tabs.lo debugger_la-tpage.lo \ + debugger_la-utils.lo debugger_la-vtree.lo \ + debugger_la-watch_model.lo debugger_la-wtree.lo \ + debugger_la-cellrendererbreakicon.lo \ + debugger_la-cellrendererframeicon.lo \ + debugger_la-cellrenderertoggle.lo +debugger_la_OBJECTS = $(am_debugger_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +debugger_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(debugger_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(debugger_la_SOURCES) +DIST_SOURCES = $(debugger_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +geanyplugins_LTLIBRARIES = debugger.la +plugin = debugger +debugger_la_SOURCES = \ + xpm/breakpoint_condition.xpm \ + xpm/breakpoint_disabled.xpm \ + xpm/breakpoint.xpm \ + xpm/frame_current.xpm \ + xpm/frame.xpm \ + xpm/argument.xpm \ + xpm/local.xpm \ + xpm/watch.xpm \ + bptree.c \ + bptree.h \ + breakpoint.c \ + breakpoint.h \ + breakpoints.c \ + breakpoints.h \ + btnpanel.c \ + btnpanel.h \ + callbacks.c \ + callbacks.h \ + calltip.c \ + calltip.h \ + dbm_gdb.c \ + dconfig.c \ + dconfig.h \ + debug.c \ + debug.h \ + debug_module.c \ + debug_module.h \ + dpaned.c \ + dpaned.h \ + envtree.c \ + envtree.h \ + gui.h \ + gui.c \ + keys.c \ + keys.h \ + atree.c \ + atree.h \ + markers.c \ + markers.h \ + pixbuf.c \ + pixbuf.h \ + plugin.c \ + stree.c \ + stree.h \ + tabs.c \ + tabs.h \ + tpage.c \ + tpage.h \ + utils.c \ + utils.h \ + vtree.c \ + vtree.h \ + watch_model.c \ + watch_model.h \ + wtree.c \ + wtree.h \ + cell_renderers/cellrendererbreakicon.c \ + cell_renderers/cellrendererbreakicon.h \ + cell_renderers/cellrendererframeicon.c \ + cell_renderers/cellrendererframeicon.h \ + cell_renderers/cellrenderertoggle.c \ + cell_renderers/cellrenderertoggle.h + +debugger_la_LIBADD = $(COMMONLIBS) $(VTE_LIBS) -lutil +debugger_la_CFLAGS = $(AM_CFLAGS) $(VTE_CFLAGS) -DDBGPLUG_DATA_DIR=\"$(plugindatadir)\" -DPLUGIN_NAME=\"$(plugin)\" +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign debugger/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign debugger/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +debugger.la: $(debugger_la_OBJECTS) $(debugger_la_DEPENDENCIES) $(EXTRA_debugger_la_DEPENDENCIES) + $(AM_V_CCLD)$(debugger_la_LINK) -rpath $(geanypluginsdir) $(debugger_la_OBJECTS) $(debugger_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-atree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-bptree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-breakpoint.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-breakpoints.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-btnpanel.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-callbacks.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-calltip.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-cellrendererbreakicon.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-cellrendererframeicon.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-cellrenderertoggle.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-dbm_gdb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-dconfig.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-debug.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-debug_module.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-dpaned.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-envtree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-gui.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-keys.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-markers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-pixbuf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-stree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-tabs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-tpage.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-vtree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-watch_model.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debugger_la-wtree.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +debugger_la-bptree.lo: bptree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-bptree.lo -MD -MP -MF $(DEPDIR)/debugger_la-bptree.Tpo -c -o debugger_la-bptree.lo `test -f 'bptree.c' || echo '$(srcdir)/'`bptree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-bptree.Tpo $(DEPDIR)/debugger_la-bptree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='bptree.c' object='debugger_la-bptree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-bptree.lo `test -f 'bptree.c' || echo '$(srcdir)/'`bptree.c + +debugger_la-breakpoint.lo: breakpoint.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-breakpoint.lo -MD -MP -MF $(DEPDIR)/debugger_la-breakpoint.Tpo -c -o debugger_la-breakpoint.lo `test -f 'breakpoint.c' || echo '$(srcdir)/'`breakpoint.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-breakpoint.Tpo $(DEPDIR)/debugger_la-breakpoint.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='breakpoint.c' object='debugger_la-breakpoint.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-breakpoint.lo `test -f 'breakpoint.c' || echo '$(srcdir)/'`breakpoint.c + +debugger_la-breakpoints.lo: breakpoints.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-breakpoints.lo -MD -MP -MF $(DEPDIR)/debugger_la-breakpoints.Tpo -c -o debugger_la-breakpoints.lo `test -f 'breakpoints.c' || echo '$(srcdir)/'`breakpoints.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-breakpoints.Tpo $(DEPDIR)/debugger_la-breakpoints.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='breakpoints.c' object='debugger_la-breakpoints.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-breakpoints.lo `test -f 'breakpoints.c' || echo '$(srcdir)/'`breakpoints.c + +debugger_la-btnpanel.lo: btnpanel.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-btnpanel.lo -MD -MP -MF $(DEPDIR)/debugger_la-btnpanel.Tpo -c -o debugger_la-btnpanel.lo `test -f 'btnpanel.c' || echo '$(srcdir)/'`btnpanel.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-btnpanel.Tpo $(DEPDIR)/debugger_la-btnpanel.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='btnpanel.c' object='debugger_la-btnpanel.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-btnpanel.lo `test -f 'btnpanel.c' || echo '$(srcdir)/'`btnpanel.c + +debugger_la-callbacks.lo: callbacks.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-callbacks.lo -MD -MP -MF $(DEPDIR)/debugger_la-callbacks.Tpo -c -o debugger_la-callbacks.lo `test -f 'callbacks.c' || echo '$(srcdir)/'`callbacks.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-callbacks.Tpo $(DEPDIR)/debugger_la-callbacks.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='callbacks.c' object='debugger_la-callbacks.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-callbacks.lo `test -f 'callbacks.c' || echo '$(srcdir)/'`callbacks.c + +debugger_la-calltip.lo: calltip.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-calltip.lo -MD -MP -MF $(DEPDIR)/debugger_la-calltip.Tpo -c -o debugger_la-calltip.lo `test -f 'calltip.c' || echo '$(srcdir)/'`calltip.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-calltip.Tpo $(DEPDIR)/debugger_la-calltip.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='calltip.c' object='debugger_la-calltip.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-calltip.lo `test -f 'calltip.c' || echo '$(srcdir)/'`calltip.c + +debugger_la-dbm_gdb.lo: dbm_gdb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-dbm_gdb.lo -MD -MP -MF $(DEPDIR)/debugger_la-dbm_gdb.Tpo -c -o debugger_la-dbm_gdb.lo `test -f 'dbm_gdb.c' || echo '$(srcdir)/'`dbm_gdb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-dbm_gdb.Tpo $(DEPDIR)/debugger_la-dbm_gdb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dbm_gdb.c' object='debugger_la-dbm_gdb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-dbm_gdb.lo `test -f 'dbm_gdb.c' || echo '$(srcdir)/'`dbm_gdb.c + +debugger_la-dconfig.lo: dconfig.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-dconfig.lo -MD -MP -MF $(DEPDIR)/debugger_la-dconfig.Tpo -c -o debugger_la-dconfig.lo `test -f 'dconfig.c' || echo '$(srcdir)/'`dconfig.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-dconfig.Tpo $(DEPDIR)/debugger_la-dconfig.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dconfig.c' object='debugger_la-dconfig.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-dconfig.lo `test -f 'dconfig.c' || echo '$(srcdir)/'`dconfig.c + +debugger_la-debug.lo: debug.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-debug.lo -MD -MP -MF $(DEPDIR)/debugger_la-debug.Tpo -c -o debugger_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-debug.Tpo $(DEPDIR)/debugger_la-debug.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='debug.c' object='debugger_la-debug.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c + +debugger_la-debug_module.lo: debug_module.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-debug_module.lo -MD -MP -MF $(DEPDIR)/debugger_la-debug_module.Tpo -c -o debugger_la-debug_module.lo `test -f 'debug_module.c' || echo '$(srcdir)/'`debug_module.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-debug_module.Tpo $(DEPDIR)/debugger_la-debug_module.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='debug_module.c' object='debugger_la-debug_module.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-debug_module.lo `test -f 'debug_module.c' || echo '$(srcdir)/'`debug_module.c + +debugger_la-dpaned.lo: dpaned.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-dpaned.lo -MD -MP -MF $(DEPDIR)/debugger_la-dpaned.Tpo -c -o debugger_la-dpaned.lo `test -f 'dpaned.c' || echo '$(srcdir)/'`dpaned.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-dpaned.Tpo $(DEPDIR)/debugger_la-dpaned.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dpaned.c' object='debugger_la-dpaned.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-dpaned.lo `test -f 'dpaned.c' || echo '$(srcdir)/'`dpaned.c + +debugger_la-envtree.lo: envtree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-envtree.lo -MD -MP -MF $(DEPDIR)/debugger_la-envtree.Tpo -c -o debugger_la-envtree.lo `test -f 'envtree.c' || echo '$(srcdir)/'`envtree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-envtree.Tpo $(DEPDIR)/debugger_la-envtree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='envtree.c' object='debugger_la-envtree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-envtree.lo `test -f 'envtree.c' || echo '$(srcdir)/'`envtree.c + +debugger_la-gui.lo: gui.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-gui.lo -MD -MP -MF $(DEPDIR)/debugger_la-gui.Tpo -c -o debugger_la-gui.lo `test -f 'gui.c' || echo '$(srcdir)/'`gui.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-gui.Tpo $(DEPDIR)/debugger_la-gui.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gui.c' object='debugger_la-gui.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-gui.lo `test -f 'gui.c' || echo '$(srcdir)/'`gui.c + +debugger_la-keys.lo: keys.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-keys.lo -MD -MP -MF $(DEPDIR)/debugger_la-keys.Tpo -c -o debugger_la-keys.lo `test -f 'keys.c' || echo '$(srcdir)/'`keys.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-keys.Tpo $(DEPDIR)/debugger_la-keys.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='keys.c' object='debugger_la-keys.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-keys.lo `test -f 'keys.c' || echo '$(srcdir)/'`keys.c + +debugger_la-atree.lo: atree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-atree.lo -MD -MP -MF $(DEPDIR)/debugger_la-atree.Tpo -c -o debugger_la-atree.lo `test -f 'atree.c' || echo '$(srcdir)/'`atree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-atree.Tpo $(DEPDIR)/debugger_la-atree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='atree.c' object='debugger_la-atree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-atree.lo `test -f 'atree.c' || echo '$(srcdir)/'`atree.c + +debugger_la-markers.lo: markers.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-markers.lo -MD -MP -MF $(DEPDIR)/debugger_la-markers.Tpo -c -o debugger_la-markers.lo `test -f 'markers.c' || echo '$(srcdir)/'`markers.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-markers.Tpo $(DEPDIR)/debugger_la-markers.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='markers.c' object='debugger_la-markers.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-markers.lo `test -f 'markers.c' || echo '$(srcdir)/'`markers.c + +debugger_la-pixbuf.lo: pixbuf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-pixbuf.lo -MD -MP -MF $(DEPDIR)/debugger_la-pixbuf.Tpo -c -o debugger_la-pixbuf.lo `test -f 'pixbuf.c' || echo '$(srcdir)/'`pixbuf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-pixbuf.Tpo $(DEPDIR)/debugger_la-pixbuf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pixbuf.c' object='debugger_la-pixbuf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-pixbuf.lo `test -f 'pixbuf.c' || echo '$(srcdir)/'`pixbuf.c + +debugger_la-plugin.lo: plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-plugin.lo -MD -MP -MF $(DEPDIR)/debugger_la-plugin.Tpo -c -o debugger_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-plugin.Tpo $(DEPDIR)/debugger_la-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='plugin.c' object='debugger_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c + +debugger_la-stree.lo: stree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-stree.lo -MD -MP -MF $(DEPDIR)/debugger_la-stree.Tpo -c -o debugger_la-stree.lo `test -f 'stree.c' || echo '$(srcdir)/'`stree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-stree.Tpo $(DEPDIR)/debugger_la-stree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stree.c' object='debugger_la-stree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-stree.lo `test -f 'stree.c' || echo '$(srcdir)/'`stree.c + +debugger_la-tabs.lo: tabs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-tabs.lo -MD -MP -MF $(DEPDIR)/debugger_la-tabs.Tpo -c -o debugger_la-tabs.lo `test -f 'tabs.c' || echo '$(srcdir)/'`tabs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-tabs.Tpo $(DEPDIR)/debugger_la-tabs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tabs.c' object='debugger_la-tabs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-tabs.lo `test -f 'tabs.c' || echo '$(srcdir)/'`tabs.c + +debugger_la-tpage.lo: tpage.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-tpage.lo -MD -MP -MF $(DEPDIR)/debugger_la-tpage.Tpo -c -o debugger_la-tpage.lo `test -f 'tpage.c' || echo '$(srcdir)/'`tpage.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-tpage.Tpo $(DEPDIR)/debugger_la-tpage.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tpage.c' object='debugger_la-tpage.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-tpage.lo `test -f 'tpage.c' || echo '$(srcdir)/'`tpage.c + +debugger_la-utils.lo: utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-utils.lo -MD -MP -MF $(DEPDIR)/debugger_la-utils.Tpo -c -o debugger_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-utils.Tpo $(DEPDIR)/debugger_la-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='debugger_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c + +debugger_la-vtree.lo: vtree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-vtree.lo -MD -MP -MF $(DEPDIR)/debugger_la-vtree.Tpo -c -o debugger_la-vtree.lo `test -f 'vtree.c' || echo '$(srcdir)/'`vtree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-vtree.Tpo $(DEPDIR)/debugger_la-vtree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vtree.c' object='debugger_la-vtree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-vtree.lo `test -f 'vtree.c' || echo '$(srcdir)/'`vtree.c + +debugger_la-watch_model.lo: watch_model.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-watch_model.lo -MD -MP -MF $(DEPDIR)/debugger_la-watch_model.Tpo -c -o debugger_la-watch_model.lo `test -f 'watch_model.c' || echo '$(srcdir)/'`watch_model.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-watch_model.Tpo $(DEPDIR)/debugger_la-watch_model.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='watch_model.c' object='debugger_la-watch_model.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-watch_model.lo `test -f 'watch_model.c' || echo '$(srcdir)/'`watch_model.c + +debugger_la-wtree.lo: wtree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-wtree.lo -MD -MP -MF $(DEPDIR)/debugger_la-wtree.Tpo -c -o debugger_la-wtree.lo `test -f 'wtree.c' || echo '$(srcdir)/'`wtree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-wtree.Tpo $(DEPDIR)/debugger_la-wtree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='wtree.c' object='debugger_la-wtree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-wtree.lo `test -f 'wtree.c' || echo '$(srcdir)/'`wtree.c + +debugger_la-cellrendererbreakicon.lo: cell_renderers/cellrendererbreakicon.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-cellrendererbreakicon.lo -MD -MP -MF $(DEPDIR)/debugger_la-cellrendererbreakicon.Tpo -c -o debugger_la-cellrendererbreakicon.lo `test -f 'cell_renderers/cellrendererbreakicon.c' || echo '$(srcdir)/'`cell_renderers/cellrendererbreakicon.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-cellrendererbreakicon.Tpo $(DEPDIR)/debugger_la-cellrendererbreakicon.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cell_renderers/cellrendererbreakicon.c' object='debugger_la-cellrendererbreakicon.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-cellrendererbreakicon.lo `test -f 'cell_renderers/cellrendererbreakicon.c' || echo '$(srcdir)/'`cell_renderers/cellrendererbreakicon.c + +debugger_la-cellrendererframeicon.lo: cell_renderers/cellrendererframeicon.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-cellrendererframeicon.lo -MD -MP -MF $(DEPDIR)/debugger_la-cellrendererframeicon.Tpo -c -o debugger_la-cellrendererframeicon.lo `test -f 'cell_renderers/cellrendererframeicon.c' || echo '$(srcdir)/'`cell_renderers/cellrendererframeicon.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-cellrendererframeicon.Tpo $(DEPDIR)/debugger_la-cellrendererframeicon.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cell_renderers/cellrendererframeicon.c' object='debugger_la-cellrendererframeicon.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-cellrendererframeicon.lo `test -f 'cell_renderers/cellrendererframeicon.c' || echo '$(srcdir)/'`cell_renderers/cellrendererframeicon.c + +debugger_la-cellrenderertoggle.lo: cell_renderers/cellrenderertoggle.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -MT debugger_la-cellrenderertoggle.lo -MD -MP -MF $(DEPDIR)/debugger_la-cellrenderertoggle.Tpo -c -o debugger_la-cellrenderertoggle.lo `test -f 'cell_renderers/cellrenderertoggle.c' || echo '$(srcdir)/'`cell_renderers/cellrenderertoggle.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/debugger_la-cellrenderertoggle.Tpo $(DEPDIR)/debugger_la-cellrenderertoggle.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cell_renderers/cellrenderertoggle.c' object='debugger_la-cellrenderertoggle.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(debugger_la_CFLAGS) $(CFLAGS) -c -o debugger_la-cellrenderertoggle.lo `test -f 'cell_renderers/cellrenderertoggle.c' || echo '$(srcdir)/'`cell_renderers/cellrenderertoggle.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/defineformat/Makefile.in geany-plugins-1.24.1+dfsg/defineformat/Makefile.in --- geany-plugins-1.24.0+20140222+git/defineformat/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/defineformat/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = defineformat +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = defineformat +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign defineformat/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign defineformat/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/defineformat/src/Makefile.in geany-plugins-1.24.1+dfsg/defineformat/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/defineformat/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/defineformat/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = defineformat/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +defineformat_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_defineformat_la_OBJECTS = defineformat.lo +defineformat_la_OBJECTS = $(am_defineformat_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(defineformat_la_SOURCES) +DIST_SOURCES = $(defineformat_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = defineformat.la +defineformat_la_SOURCES = defineformat.c +defineformat_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign defineformat/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign defineformat/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +defineformat.la: $(defineformat_la_OBJECTS) $(defineformat_la_DEPENDENCIES) $(EXTRA_defineformat_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(defineformat_la_OBJECTS) $(defineformat_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/defineformat.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/depcomp geany-plugins-1.24.1+dfsg/depcomp --- geany-plugins-1.24.0+20140222+git/depcomp 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/depcomp 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,791 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2013-05-30.07; # UTC + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. + +# 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, 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, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by 'PROGRAMS ARGS'. + object Object file output by 'PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +# Get the directory component of the given path, and save it in the +# global variables '$dir'. Note that this directory component will +# be either empty or ending with a '/' character. This is deliberate. +set_dir_from () +{ + case $1 in + */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; + *) dir=;; + esac +} + +# Get the suffix-stripped basename of the given path, and save it the +# global variable '$base'. +set_base_from () +{ + base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` +} + +# If no dependency file was actually created by the compiler invocation, +# we still have to create a dummy depfile, to avoid errors with the +# Makefile "include basename.Plo" scheme. +make_dummy_depfile () +{ + echo "#dummy" > "$depfile" +} + +# Factor out some common post-processing of the generated depfile. +# Requires the auxiliary global variable '$tmpdepfile' to be set. +aix_post_process_depfile () +{ + # If the compiler actually managed to produce a dependency file, + # post-process it. + if test -f "$tmpdepfile"; then + # Each line is of the form 'foo.o: dependency.h'. + # Do two passes, one to just change these to + # $object: dependency.h + # and one to simply output + # dependency.h: + # which is needed to avoid the deleted-header problem. + { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" + sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" + } > "$depfile" + rm -f "$tmpdepfile" + else + make_dummy_depfile + fi +} + +# A tabulation character. +tab=' ' +# A newline character. +nl=' +' +# Character ranges might be problematic outside the C locale. +# These definitions help. +upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ +lower=abcdefghijklmnopqrstuvwxyz +digits=0123456789 +alpha=${upper}${lower} + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Avoid interferences from the environment. +gccflag= dashmflag= + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +if test "$depmode" = xlc; then + # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. + gccflag=-qmakedep=gcc,-MF + depmode=gcc +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. +## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. +## (see the conditional assignment to $gccflag above). +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). Also, it might not be +## supported by the other compilers which use the 'gcc' depmode. +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The second -e expression handles DOS-style file names with drive + # letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the "deleted header file" problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. +## Some versions of gcc put a space before the ':'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like '#:fec' to the end of the + # dependency line. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ + | tr "$nl" ' ' >> "$depfile" + echo >> "$depfile" + # The second pass generates a dummy entry for each header file. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" + ;; + +xlc) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts '$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + aix_post_process_depfile + ;; + +tcc) + # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 + # FIXME: That version still under development at the moment of writing. + # Make that this statement remains true also for stable, released + # versions. + # It will wrap lines (doesn't matter whether long or short) with a + # trailing '\', as in: + # + # foo.o : \ + # foo.c \ + # foo.h \ + # + # It will put a trailing '\' even on the last line, and will use leading + # spaces rather than leading tabs (at least since its commit 0394caf7 + # "Emit spaces for -MD"). + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. + # We have to change lines of the first kind to '$object: \'. + sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" + # And for each line of the second kind, we have to emit a 'dep.h:' + # dummy dependency, to avoid the deleted-header problem. + sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" + rm -f "$tmpdepfile" + ;; + +## The order of this option in the case statement is important, since the +## shell code in configure will try each of these formats in the order +## listed in this file. A plain '-MD' option would be understood by many +## compilers, so we must ensure this comes after the gcc and icc options. +pgcc) + # Portland's C compiler understands '-MD'. + # Will always output deps to 'file.d' where file is the root name of the + # source file under compilation, even if file resides in a subdirectory. + # The object file name does not affect the name of the '.d' file. + # pgcc 10.2 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using '\' : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + set_dir_from "$object" + # Use the source, not the object, to determine the base name, since + # that's sadly what pgcc will do too. + set_base_from "$source" + tmpdepfile=$base.d + + # For projects that build the same source file twice into different object + # files, the pgcc approach of using the *source* file root name can cause + # problems in parallel builds. Use a locking strategy to avoid stomping on + # the same $tmpdepfile. + lockdir=$base.d-lock + trap " + echo '$0: caught signal, cleaning up...' >&2 + rmdir '$lockdir' + exit 1 + " 1 2 13 15 + numtries=100 + i=$numtries + while test $i -gt 0; do + # mkdir is a portable test-and-set. + if mkdir "$lockdir" 2>/dev/null; then + # This process acquired the lock. + "$@" -MD + stat=$? + # Release the lock. + rmdir "$lockdir" + break + else + # If the lock is being held by a different process, wait + # until the winning process is done or we timeout. + while test -d "$lockdir" && test $i -gt 0; do + sleep 1 + i=`expr $i - 1` + done + fi + i=`expr $i - 1` + done + trap - 1 2 13 15 + if test $i -le 0; then + echo "$0: failed to acquire lock after $numtries attempts" >&2 + echo "$0: check lockdir '$lockdir'" >&2 + exit 1 + fi + + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" + # Add 'dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in 'foo.d' instead, so we check for that too. + # Subdirectories are respected. + set_dir_from "$object" + set_base_from "$object" + + if test "$libtool" = yes; then + # Libtool generates 2 separate objects for the 2 libraries. These + # two compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir$base.o.d # libtool 1.5 + tmpdepfile2=$dir.libs/$base.o.d # Likewise. + tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + # Same post-processing that is required for AIX mode. + aix_post_process_depfile + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/'"$tab"'\1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/'"$tab"'/ + G + p +}' >> "$depfile" + echo >> "$depfile" # make sure the fragment doesn't end with a backslash + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for ':' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + "$@" $dashmflag | + sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this sed invocation + # correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process the last invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed '1,2d' "$tmpdepfile" \ + | tr ' ' "$nl" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E \ + | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + | sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" + echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/autogen.sh geany-plugins-1.24.1+dfsg/devhelp/autogen.sh --- geany-plugins-1.24.0+20140222+git/devhelp/autogen.sh 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -#!/bin/sh - -autoreconf -vfi || exit 1 - -echo 'Build system setup OK.' -echo 'Now type `./configure` to configure the package.' diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/configure.ac geany-plugins-1.24.1+dfsg/devhelp/configure.ac --- geany-plugins-1.24.0+20140222+git/devhelp/configure.ac 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/configure.ac 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -AC_PREREQ([2.67]) -AC_INIT([geany-devhelp], [0.1], [mbrush@leftclick.ca]) -AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([-Wall]) -LT_INIT - -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_MKDIR_P -AC_PROG_LIBTOOL - -PKG_CHECK_MODULES([GTK], [gtk+-2.0]) -PKG_CHECK_MODULES([GEANY], [geany]) -PKG_CHECK_MODULES([DEVHELP], [libdevhelp-1.0]) - -AM_SILENT_RULES([yes]) - -AC_CONFIG_FILES([Makefile data/Makefile src/Makefile]) -AC_OUTPUT - Binary files /tmp/CpX7UnuPPT/geany-plugins-1.24.0+20140222+git/devhelp/data/geany-devhelp.png and /tmp/BpMK8ffG3q/geany-plugins-1.24.1+dfsg/devhelp/data/geany-devhelp.png differ diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/data/Makefile.in geany-plugins-1.24.1+dfsg/devhelp/data/Makefile.in --- geany-plugins-1.24.0+20140222+git/devhelp/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/data/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,636 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindata_DATA) +subdir = devhelp/data +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindatadir)" +DATA = $(dist_plugindata_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = devhelp +dist_plugindata_DATA = \ + devhelp-plugin.svg \ + devhelp-plugin-48.png \ + geany-devhelp-plugin.png \ + home.html \ + devhelp.conf + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign devhelp/data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign devhelp/data/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindataDATA: $(dist_plugindata_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindatadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindatadir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindatadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindatadir)" || exit $$?; \ + done + +uninstall-dist_plugindataDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindatadir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindatadir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindataDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindataDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindataDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_plugindataDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/devhelp/ige-conf-mac.c geany-plugins-1.24.1+dfsg/devhelp/devhelp/ige-conf-mac.c --- geany-plugins-1.24.0+20140222+git/devhelp/devhelp/ige-conf-mac.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/devhelp/ige-conf-mac.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,342 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ -/* - * Copyright (C) 2008 Imendio AB - * - * 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., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#include "config.h" -#import -#include -#include "ige-conf-private.h" - -typedef struct { - NSUserDefaults *defaults; -} IgeConfPriv; - -typedef struct { - IgeConf *conf; - IgeConfNotifyFunc func; - gpointer user_data; -} IgeConfNotifyData; - -G_DEFINE_TYPE (IgeConf, ige_conf, G_TYPE_OBJECT); - -#define GET_PRIVATE(instance) G_TYPE_INSTANCE_GET_PRIVATE \ - (instance, IGE_TYPE_CONF, IgeConfPriv); - -static IgeConf *global_conf = NULL; - -static void -conf_finalize (GObject *object) -{ - IgeConfPriv *priv = GET_PRIVATE (object); - - [priv->defaults synchronize]; - - if (IGE_CONF (object) == global_conf) { - global_conf = NULL; - } - - G_OBJECT_CLASS (ige_conf_parent_class)->finalize (object); -} - -static void -ige_conf_class_init (IgeConfClass *class) -{ - GObjectClass *object_class; - - object_class = G_OBJECT_CLASS (class); - - object_class->finalize = conf_finalize; - - g_type_class_add_private (object_class, sizeof (IgeConfPriv)); -} - -static void -ige_conf_init (IgeConf *conf) -{ -} - -static void -conf_atexit (void) -{ - if (global_conf) { - IgeConfPriv *priv = GET_PRIVATE (global_conf); - - [priv->defaults synchronize]; - } -} - -IgeConf * -ige_conf_get (void) -{ - if (!global_conf) { - global_conf = g_object_new (IGE_TYPE_CONF, NULL); - g_atexit (conf_atexit); - } - - return global_conf; -} - -void -ige_conf_add_defaults (IgeConf *conf, - const gchar *path) -{ - IgeConfPriv *priv = GET_PRIVATE (conf); - NSDictionary *dict; - GList *defaults, *l; - - priv->defaults = [NSUserDefaults standardUserDefaults]; - - dict = [NSMutableDictionary dictionaryWithCapacity: 10]; - - defaults = _ige_conf_defaults_read_file (path, NULL); - for (l = defaults; l; l = l->next) { - IgeConfDefaultItem *item = l->data; - NSString *key; - NSString *value; - - key = [NSString stringWithUTF8String: item->key]; - value = [NSString stringWithUTF8String: item->value]; - [dict setValue:value forKey:key]; - } - - _ige_conf_defaults_free_list (defaults); - - [priv->defaults registerDefaults: dict]; -} - -gboolean -ige_conf_set_int (IgeConf *conf, - const gchar *key, - gint value) -{ - IgeConfPriv *priv; - NSString *string; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - string = [NSString stringWithUTF8String: key]; - [priv->defaults setInteger: value forKey: string]; - - return TRUE; -} - -gboolean -ige_conf_get_int (IgeConf *conf, - const gchar *key, - gint *value) -{ - IgeConfPriv *priv; - NSString *string; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - string = [NSString stringWithUTF8String: key]; - *value = [priv->defaults integerForKey: string]; - - return TRUE; -} - -gboolean -ige_conf_set_bool (IgeConf *conf, - const gchar *key, - gboolean value) -{ - IgeConfPriv *priv; - NSString *string; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - string = [NSString stringWithUTF8String: key]; - [priv->defaults setBool: value forKey: string]; - - return TRUE; -} - -gboolean -ige_conf_get_bool (IgeConf *conf, - const gchar *key, - gboolean *value) -{ - IgeConfPriv *priv; - NSString *string; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - string = [NSString stringWithUTF8String: key]; - *value = [priv->defaults boolForKey: string]; - - return TRUE; -} - -gboolean -ige_conf_set_string (IgeConf *conf, - const gchar *key, - const gchar *value) -{ - IgeConfPriv *priv; - NSString *string, *nsvalue; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - string = [NSString stringWithUTF8String: key]; - nsvalue = [NSString stringWithUTF8String: value]; - - [priv->defaults setObject: nsvalue forKey: string]; - - return TRUE; -} - -gboolean -ige_conf_get_string (IgeConf *conf, - const gchar *key, - gchar **value) -{ - IgeConfPriv *priv; - NSString *string, *nsvalue; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - *value = NULL; - - string = [NSString stringWithUTF8String: key]; - nsvalue = [priv->defaults stringForKey: string]; - if (nsvalue == NULL) { - return FALSE; - } - - *value = g_strdup ([nsvalue UTF8String]); - - return TRUE; -} - -gboolean -ige_conf_set_string_list (IgeConf *conf, - const gchar *key, - GSList *value) -{ - IgeConfPriv *priv; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - return TRUE; /*gconf_client_set_string_list (priv->gconf_client, - key, - value, - NULL); - */ -} - -gboolean -ige_conf_get_string_list (IgeConf *conf, - const gchar *key, - GSList **value) -{ - IgeConfPriv *priv; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - *value = NULL; /*gconf_client_get_string_list (priv->gconf_client, - key, - &error); - */ - return TRUE; -} - -/* -static void -conf_notify_data_free (IgeConfNotifyData *data) -{ - g_object_unref (data->conf); - g_slice_free (IgeConfNotifyData, data); -} - -static void -conf_notify_func (GConfClient *client, - guint id, - GConfEntry *entry, - gpointer user_data) -{ - IgeConfNotifyData *data; - - data = user_data; - - data->func (data->conf, - gconf_entry_get_key (entry), - data->user_data); -} -*/ - -guint -ige_conf_notify_add (IgeConf *conf, - const gchar *key, - IgeConfNotifyFunc func, - gpointer user_data) -{ - IgeConfPriv *priv; - guint id; - IgeConfNotifyData *data; - - g_return_val_if_fail (IGE_IS_CONF (conf), 0); - - priv = GET_PRIVATE (conf); - - data = g_slice_new (IgeConfNotifyData); - data->func = func; - data->user_data = user_data; - data->conf = g_object_ref (conf); - - id = 0; /*gconf_client_notify_add (priv->gconf_client, - key, - conf_notify_func, - data, - (GFreeFunc) conf_notify_data_free, - NULL); - */ - return id; -} - -gboolean -ige_conf_notify_remove (IgeConf *conf, - guint id) -{ - IgeConfPriv *priv; - - g_return_val_if_fail (IGE_IS_CONF (conf), FALSE); - - priv = GET_PRIVATE (conf); - - /*gconf_client_notify_remove (priv->gconf_client, id);*/ - - return TRUE; -} diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/devhelp/Makefile.in geany-plugins-1.24.1+dfsg/devhelp/devhelp/Makefile.in --- geany-plugins-1.24.0+20140222+git/devhelp/devhelp/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/devhelp/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,969 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = devhelp/devhelp +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/depcomp +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +am__DEPENDENCIES_1 = +libdevhelp_2_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am__objects_1 = +am_libdevhelp_2_la_OBJECTS = libdevhelp_2_la-dh-assistant.lo \ + libdevhelp_2_la-dh-assistant-view.lo \ + libdevhelp_2_la-dh-base.lo libdevhelp_2_la-dh-book.lo \ + libdevhelp_2_la-dh-book-manager.lo \ + libdevhelp_2_la-dh-book-tree.lo \ + libdevhelp_2_la-dh-enum-types.lo libdevhelp_2_la-dh-error.lo \ + libdevhelp_2_la-dh-keyword-model.lo libdevhelp_2_la-dh-link.lo \ + libdevhelp_2_la-dh-marshal.lo libdevhelp_2_la-dh-parser.lo \ + libdevhelp_2_la-dh-preferences.lo libdevhelp_2_la-dh-search.lo \ + libdevhelp_2_la-dh-util.lo libdevhelp_2_la-dh-window.lo \ + libdevhelp_2_la-eggfindbar.lo libdevhelp_2_la-ige-conf.lo \ + libdevhelp_2_la-ige-conf-gconf.lo $(am__objects_1) +libdevhelp_2_la_OBJECTS = $(am_libdevhelp_2_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libdevhelp_2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(libdevhelp_2_la_CFLAGS) $(CFLAGS) $(libdevhelp_2_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libdevhelp_2_la_SOURCES) +DIST_SOURCES = $(libdevhelp_2_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +noinst_LTLIBRARIES = libdevhelp-2.la +dh_headers = \ + dh-assistant.h \ + dh-assistant-view.h \ + dh-base.h \ + dh-book-manager.h \ + dh-book.h \ + dh-book-tree.h \ + dh-error.h \ + dh-keyword-model.h \ + dh-link.h \ + dh-search.h \ + dh-window.h + +BUILT_SOURCES = \ + dh-marshal.h \ + dh-marshal.c \ + dh-enum-types.h \ + dh-enum-types.c + +EXTRA_DIST = \ + dh-marshal.list \ + dh-enum-types.c.template \ + dh-enum-types.h.template + +libdevhelp_2_la_SOURCES = \ + dh-assistant.c \ + dh-assistant-view.c \ + dh-base.c \ + dh-book.c \ + dh-book-manager.c \ + dh-book-tree.c \ + dh-enum-types.c \ + dh-enum-types.h \ + dh-error.c \ + dh-keyword-model.c \ + dh-link.c \ + dh-marshal.c \ + dh-marshal.h \ + dh-parser.c \ + dh-parser.h \ + dh-preferences.c \ + dh-preferences.h \ + dh-search.c \ + dh-util.c \ + dh-util.h \ + dh-window.c \ + eggfindbar.c \ + eggfindbar.h \ + ige-conf.c \ + ige-conf-gconf.c \ + ige-conf.h \ + ige-conf-private.h \ + $(dh_headers) + +libdevhelp_2_la_CPPFLAGS = \ + -I$(top_srcdir) \ + -DLOCALEDIR=\""$(datadir)/locale"\" \ + -DDATADIR=\""$(datadir)"\" \ + -DG_LOG_DOMAIN=\"Devhelp\" \ + $(DEVHELP_CPPFLAGS) + +libdevhelp_2_la_CFLAGS = \ + $(DEVHELP_CFLAGS) + +libdevhelp_2_la_LIBADD = \ + $(DEVHELP_LIBS) + +libdevhelp_2_la_LDFLAGS = \ + -no-undefined + +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign devhelp/devhelp/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign devhelp/devhelp/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libdevhelp-2.la: $(libdevhelp_2_la_OBJECTS) $(libdevhelp_2_la_DEPENDENCIES) $(EXTRA_libdevhelp_2_la_DEPENDENCIES) + $(AM_V_CCLD)$(libdevhelp_2_la_LINK) $(libdevhelp_2_la_OBJECTS) $(libdevhelp_2_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-assistant-view.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-assistant.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-base.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-book-manager.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-book-tree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-book.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-enum-types.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-error.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-keyword-model.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-link.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-marshal.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-parser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-preferences.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-search.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-util.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-dh-window.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-eggfindbar.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-ige-conf-gconf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdevhelp_2_la-ige-conf.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +libdevhelp_2_la-dh-assistant.lo: dh-assistant.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-assistant.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-assistant.Tpo -c -o libdevhelp_2_la-dh-assistant.lo `test -f 'dh-assistant.c' || echo '$(srcdir)/'`dh-assistant.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-assistant.Tpo $(DEPDIR)/libdevhelp_2_la-dh-assistant.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-assistant.c' object='libdevhelp_2_la-dh-assistant.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-assistant.lo `test -f 'dh-assistant.c' || echo '$(srcdir)/'`dh-assistant.c + +libdevhelp_2_la-dh-assistant-view.lo: dh-assistant-view.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-assistant-view.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-assistant-view.Tpo -c -o libdevhelp_2_la-dh-assistant-view.lo `test -f 'dh-assistant-view.c' || echo '$(srcdir)/'`dh-assistant-view.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-assistant-view.Tpo $(DEPDIR)/libdevhelp_2_la-dh-assistant-view.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-assistant-view.c' object='libdevhelp_2_la-dh-assistant-view.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-assistant-view.lo `test -f 'dh-assistant-view.c' || echo '$(srcdir)/'`dh-assistant-view.c + +libdevhelp_2_la-dh-base.lo: dh-base.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-base.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-base.Tpo -c -o libdevhelp_2_la-dh-base.lo `test -f 'dh-base.c' || echo '$(srcdir)/'`dh-base.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-base.Tpo $(DEPDIR)/libdevhelp_2_la-dh-base.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-base.c' object='libdevhelp_2_la-dh-base.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-base.lo `test -f 'dh-base.c' || echo '$(srcdir)/'`dh-base.c + +libdevhelp_2_la-dh-book.lo: dh-book.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-book.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-book.Tpo -c -o libdevhelp_2_la-dh-book.lo `test -f 'dh-book.c' || echo '$(srcdir)/'`dh-book.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-book.Tpo $(DEPDIR)/libdevhelp_2_la-dh-book.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-book.c' object='libdevhelp_2_la-dh-book.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-book.lo `test -f 'dh-book.c' || echo '$(srcdir)/'`dh-book.c + +libdevhelp_2_la-dh-book-manager.lo: dh-book-manager.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-book-manager.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-book-manager.Tpo -c -o libdevhelp_2_la-dh-book-manager.lo `test -f 'dh-book-manager.c' || echo '$(srcdir)/'`dh-book-manager.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-book-manager.Tpo $(DEPDIR)/libdevhelp_2_la-dh-book-manager.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-book-manager.c' object='libdevhelp_2_la-dh-book-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-book-manager.lo `test -f 'dh-book-manager.c' || echo '$(srcdir)/'`dh-book-manager.c + +libdevhelp_2_la-dh-book-tree.lo: dh-book-tree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-book-tree.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-book-tree.Tpo -c -o libdevhelp_2_la-dh-book-tree.lo `test -f 'dh-book-tree.c' || echo '$(srcdir)/'`dh-book-tree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-book-tree.Tpo $(DEPDIR)/libdevhelp_2_la-dh-book-tree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-book-tree.c' object='libdevhelp_2_la-dh-book-tree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-book-tree.lo `test -f 'dh-book-tree.c' || echo '$(srcdir)/'`dh-book-tree.c + +libdevhelp_2_la-dh-enum-types.lo: dh-enum-types.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-enum-types.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-enum-types.Tpo -c -o libdevhelp_2_la-dh-enum-types.lo `test -f 'dh-enum-types.c' || echo '$(srcdir)/'`dh-enum-types.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-enum-types.Tpo $(DEPDIR)/libdevhelp_2_la-dh-enum-types.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-enum-types.c' object='libdevhelp_2_la-dh-enum-types.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-enum-types.lo `test -f 'dh-enum-types.c' || echo '$(srcdir)/'`dh-enum-types.c + +libdevhelp_2_la-dh-error.lo: dh-error.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-error.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-error.Tpo -c -o libdevhelp_2_la-dh-error.lo `test -f 'dh-error.c' || echo '$(srcdir)/'`dh-error.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-error.Tpo $(DEPDIR)/libdevhelp_2_la-dh-error.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-error.c' object='libdevhelp_2_la-dh-error.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-error.lo `test -f 'dh-error.c' || echo '$(srcdir)/'`dh-error.c + +libdevhelp_2_la-dh-keyword-model.lo: dh-keyword-model.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-keyword-model.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-keyword-model.Tpo -c -o libdevhelp_2_la-dh-keyword-model.lo `test -f 'dh-keyword-model.c' || echo '$(srcdir)/'`dh-keyword-model.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-keyword-model.Tpo $(DEPDIR)/libdevhelp_2_la-dh-keyword-model.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-keyword-model.c' object='libdevhelp_2_la-dh-keyword-model.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-keyword-model.lo `test -f 'dh-keyword-model.c' || echo '$(srcdir)/'`dh-keyword-model.c + +libdevhelp_2_la-dh-link.lo: dh-link.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-link.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-link.Tpo -c -o libdevhelp_2_la-dh-link.lo `test -f 'dh-link.c' || echo '$(srcdir)/'`dh-link.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-link.Tpo $(DEPDIR)/libdevhelp_2_la-dh-link.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-link.c' object='libdevhelp_2_la-dh-link.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-link.lo `test -f 'dh-link.c' || echo '$(srcdir)/'`dh-link.c + +libdevhelp_2_la-dh-marshal.lo: dh-marshal.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-marshal.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-marshal.Tpo -c -o libdevhelp_2_la-dh-marshal.lo `test -f 'dh-marshal.c' || echo '$(srcdir)/'`dh-marshal.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-marshal.Tpo $(DEPDIR)/libdevhelp_2_la-dh-marshal.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-marshal.c' object='libdevhelp_2_la-dh-marshal.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-marshal.lo `test -f 'dh-marshal.c' || echo '$(srcdir)/'`dh-marshal.c + +libdevhelp_2_la-dh-parser.lo: dh-parser.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-parser.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-parser.Tpo -c -o libdevhelp_2_la-dh-parser.lo `test -f 'dh-parser.c' || echo '$(srcdir)/'`dh-parser.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-parser.Tpo $(DEPDIR)/libdevhelp_2_la-dh-parser.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-parser.c' object='libdevhelp_2_la-dh-parser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-parser.lo `test -f 'dh-parser.c' || echo '$(srcdir)/'`dh-parser.c + +libdevhelp_2_la-dh-preferences.lo: dh-preferences.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-preferences.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-preferences.Tpo -c -o libdevhelp_2_la-dh-preferences.lo `test -f 'dh-preferences.c' || echo '$(srcdir)/'`dh-preferences.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-preferences.Tpo $(DEPDIR)/libdevhelp_2_la-dh-preferences.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-preferences.c' object='libdevhelp_2_la-dh-preferences.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-preferences.lo `test -f 'dh-preferences.c' || echo '$(srcdir)/'`dh-preferences.c + +libdevhelp_2_la-dh-search.lo: dh-search.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-search.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-search.Tpo -c -o libdevhelp_2_la-dh-search.lo `test -f 'dh-search.c' || echo '$(srcdir)/'`dh-search.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-search.Tpo $(DEPDIR)/libdevhelp_2_la-dh-search.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-search.c' object='libdevhelp_2_la-dh-search.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-search.lo `test -f 'dh-search.c' || echo '$(srcdir)/'`dh-search.c + +libdevhelp_2_la-dh-util.lo: dh-util.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-util.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-util.Tpo -c -o libdevhelp_2_la-dh-util.lo `test -f 'dh-util.c' || echo '$(srcdir)/'`dh-util.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-util.Tpo $(DEPDIR)/libdevhelp_2_la-dh-util.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-util.c' object='libdevhelp_2_la-dh-util.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-util.lo `test -f 'dh-util.c' || echo '$(srcdir)/'`dh-util.c + +libdevhelp_2_la-dh-window.lo: dh-window.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-dh-window.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-dh-window.Tpo -c -o libdevhelp_2_la-dh-window.lo `test -f 'dh-window.c' || echo '$(srcdir)/'`dh-window.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-dh-window.Tpo $(DEPDIR)/libdevhelp_2_la-dh-window.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dh-window.c' object='libdevhelp_2_la-dh-window.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-dh-window.lo `test -f 'dh-window.c' || echo '$(srcdir)/'`dh-window.c + +libdevhelp_2_la-eggfindbar.lo: eggfindbar.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-eggfindbar.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-eggfindbar.Tpo -c -o libdevhelp_2_la-eggfindbar.lo `test -f 'eggfindbar.c' || echo '$(srcdir)/'`eggfindbar.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-eggfindbar.Tpo $(DEPDIR)/libdevhelp_2_la-eggfindbar.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='eggfindbar.c' object='libdevhelp_2_la-eggfindbar.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-eggfindbar.lo `test -f 'eggfindbar.c' || echo '$(srcdir)/'`eggfindbar.c + +libdevhelp_2_la-ige-conf.lo: ige-conf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-ige-conf.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-ige-conf.Tpo -c -o libdevhelp_2_la-ige-conf.lo `test -f 'ige-conf.c' || echo '$(srcdir)/'`ige-conf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-ige-conf.Tpo $(DEPDIR)/libdevhelp_2_la-ige-conf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ige-conf.c' object='libdevhelp_2_la-ige-conf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-ige-conf.lo `test -f 'ige-conf.c' || echo '$(srcdir)/'`ige-conf.c + +libdevhelp_2_la-ige-conf-gconf.lo: ige-conf-gconf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -MT libdevhelp_2_la-ige-conf-gconf.lo -MD -MP -MF $(DEPDIR)/libdevhelp_2_la-ige-conf-gconf.Tpo -c -o libdevhelp_2_la-ige-conf-gconf.lo `test -f 'ige-conf-gconf.c' || echo '$(srcdir)/'`ige-conf-gconf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libdevhelp_2_la-ige-conf-gconf.Tpo $(DEPDIR)/libdevhelp_2_la-ige-conf-gconf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ige-conf-gconf.c' object='libdevhelp_2_la-ige-conf-gconf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libdevhelp_2_la_CPPFLAGS) $(CPPFLAGS) $(libdevhelp_2_la_CFLAGS) $(CFLAGS) -c -o libdevhelp_2_la-ige-conf-gconf.lo `test -f 'ige-conf-gconf.c' || echo '$(srcdir)/'`ige-conf-gconf.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: all check install install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + + +dh-enum-types.h: dh-enum-types.h.template $(dh_headers) $(GLIB_MKENUMS) + $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template dh-enum-types.h.template $(dh_headers)) > $@ + +dh-enum-types.c: dh-enum-types.c.template $(dh_headers) $(GLIB_MKENUMS) + $(AM_V_GEN) (cd $(srcdir) && $(GLIB_MKENUMS) --template dh-enum-types.c.template $(dh_headers)) > $@ + +dh-marshal.h: dh-marshal.list + $(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=_dh_marshal dh-marshal.list > $@ + +dh-marshal.c: dh-marshal.list + $(AM_V_GEN) echo "#include \"dh-marshal.h\"" > $@ && \ + $(GLIB_GENMARSHAL) $< --body --prefix=_dh_marshal dh-marshal.list >> $@ + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/doc/Doxyfile geany-plugins-1.24.1+dfsg/devhelp/doc/Doxyfile --- geany-plugins-1.24.0+20140222+git/devhelp/doc/Doxyfile 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/doc/Doxyfile 1970-01-01 00:00:00.000000000 +0000 @@ -1,1630 +0,0 @@ -# Doxyfile 1.7.1 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# http://www.gnu.org/software/libiconv for the list of possible encodings. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = "Geany DevHelp Plugin" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = 0.1 - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = reference - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, -# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English -# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, -# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, -# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = NO - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified -# scopes will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for -# Fortran. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for -# VHDL. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given extension. -# Doxygen has a built-in mapping, but you can override or extend it using this -# tag. The format is ext=language, where ext is a file extension, and language -# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, -# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make -# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C -# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions -# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. - -EXTENSION_MAPPING = - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public -# instead of private inheritance when no explicit protection keyword is present. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate getter -# and setter methods for a property. Setting this option to YES (the default) -# will make doxygen to replace the get and set methods by a property in the -# documentation. This will only work if the methods are indeed getting or -# setting a simple type. If this is not the case, or you want to show the -# methods anyway, you should set this option to NO. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum -# is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically -# be useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. - -TYPEDEF_HIDES_STRUCT = NO - -# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to -# determine which symbols to keep in memory and which to flush to disk. -# When the cache is full, less often used symbols will be written to disk. -# For small to medium size projects (<1000 input files) the default value is -# probably good enough. For larger projects a too small cache size can cause -# doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. -# If the system has enough physical memory increasing the cache will improve the -# performance by keeping more symbols in memory. Note that the value works on -# a logarithmic scale so increasing the size by one will rougly double the -# memory usage. The cache size is given by this formula: -# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, -# corresponding to a cache size of 2^16 = 65536 symbols - -SYMBOL_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespace are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen -# will list include files with double quotes in the documentation -# rather than with sharp brackets. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen -# will sort the (brief and detailed) documentation of class members so that -# constructors and destructors are listed first. If set to NO (the default) -# the constructors will appear in the respective orders defined by -# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. -# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO -# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is NO. - -SHOW_DIRECTORIES = NO - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. -# This will remove the Files entry from the Quick Index and from the -# Folder Tree View (if specified). The default is YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the -# Namespaces page. -# This will remove the Namespaces entry from the Quick Index -# and from the Folder Tree View (if specified). The default is YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the program writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. The create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. -# You can optionally specify a file name after the option, if omitted -# DoxygenLayout.xml will be used as the name of the layout file. - -LAYOUT_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = ../src/ - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. -# If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. -# Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. -# The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = YES - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = YES - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C and C++ comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) -# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from -# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will -# link to the source code. -# Otherwise they will link to the documentation. - -REFERENCES_LINK_SOURCE = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = YES - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! - -HTML_STYLESHEET = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. -# Doxygen will adjust the colors in the stylesheet and background images -# according to this color. Hue is specified as an angle on a colorwheel, -# see http://en.wikipedia.org/wiki/Hue for more information. -# For instance the value 0 represents red, 60 is yellow, 120 is green, -# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. -# The allowed range is 0 to 359. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of -# the colors in the HTML output. For a value of 0 the output will use -# grayscales only. A value of 255 will produce the most vivid colors. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to -# the luminance component of the colors in the HTML output. Values below -# 100 gradually make the output lighter, whereas values above 100 make -# the output darker. The value divided by 100 is the actual gamma applied, -# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, -# and 100 does not change the gamma. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting -# this to NO can help when comparing the output of multiple runs. - -HTML_TIMESTAMP = YES - -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. - -HTML_ALIGN_MEMBERS = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. For this to work a browser that supports -# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox -# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). - -HTML_DYNAMIC_SECTIONS = NO - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. -# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING -# is used to encode HtmlHelp index (hhk), content (hhc) and project file -# content. - -CHM_INDEX_ENCODING = - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated -# that can be used as input for Qt's qhelpgenerator to generate a -# Qt Compressed Help (.qch) of the generated HTML documentation. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can -# be used to specify the file name of the resulting .qch file. -# The path specified is relative to the HTML output folder. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#namespace - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#virtual-folders - -QHP_VIRTUAL_FOLDER = doc - -# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to -# add. For more information please see -# http://doc.trolltech.com/qthelpproject.html#custom-filters - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see -# -# Qt Help Project / Custom Filters. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's -# filter section matches. -# -# Qt Help Project / Filter Attributes. - -QHP_SECT_FILTER_ATTRS = - -# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can -# be used to specify the location of Qt's qhelpgenerator. -# If non-empty doxygen will try to run qhelpgenerator on the generated -# .qhp file. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files -# will be generated, which together with the HTML files, form an Eclipse help -# plugin. To install this plugin and make it available under the help contents -# menu in Eclipse, the contents of the directory containing the HTML and XML -# files needs to be copied into the plugins directory of eclipse. The name of -# the directory within the plugins directory should be the same as -# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before -# the help appears. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have -# this name. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. - -DISABLE_INDEX = NO - -# This tag can be used to set the number of enum values (range [1..20]) -# that doxygen will group on one line in the generated HTML documentation. - -ENUM_VALUES_PER_LINE = 4 - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. -# If the tag value is set to YES, a side panel will be generated -# containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). -# Windows users are probably better off using the HTML help feature. - -GENERATE_TREEVIEW = NO - -# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, -# and Class Hierarchy pages using a tree view instead of an ordered list. - -USE_INLINE_TREES = NO - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open -# links to external symbols imported via tag files in a separate window. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of Latex formulas included -# as images in the HTML documentation. The default is 10. Note that -# when you change the font size after a successful doxygen run you need -# to manually remove any form_*.png images from the HTML output directory -# to force them to be regenerated. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are -# not supported properly for IE 6.0, but are supported on all modern browsers. -# Note that when changing this option you need to delete any form_*.png files -# in the HTML output before the changes have effect. - -FORMULA_TRANSPARENT = YES - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box -# for the HTML output. The underlying search engine uses javascript -# and DHTML and should work on any modern browser. Note that when using -# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets -# (GENERATE_DOCSET) there is already a search function so this one should -# typically be disabled. For large projects the javascript based search engine -# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. - -SEARCHENGINE = YES - -# When the SERVER_BASED_SEARCH tag is enabled the search engine will be -# implemented using a PHP enabled web server instead of at the web client -# using Javascript. Doxygen will generate the search PHP script and index -# file to put on the web server. The advantage of the server -# based approach is that it scales better to large projects and allows -# full text search. The disadvances is that it is more difficult to setup -# and does not have live searching capabilities. - -SERVER_BASED_SEARCH = NO - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = YES - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. -# Note that when enabling USE_PDFLATEX this option is only used for -# generating bitmaps for formulas in the HTML output, but not in the -# Makefile that is written to the output directory. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -# If LATEX_SOURCE_CODE is set to YES then doxygen will include -# source code with syntax highlighting in the LaTeX output. -# Note that which sources are shown also depends on other settings -# such as SOURCE_BROWSER. - -LATEX_SOURCE_CODE = NO - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = NO - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = NO - -# Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = NO - -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `man' will be used as the default path. - -MAN_OUTPUT = man - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- - -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of -# the code including all documentation. - -GENERATE_XML = NO - -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `xml' will be used as the default path. - -XML_OUTPUT = xml - -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_DTD = - -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that -# enabling this will significantly increase the size of the XML output. - -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- - -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental -# and incomplete at the moment. - -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- - -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the -# moment. - -GENERATE_PERLMOD = NO - -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able -# to generate PDF and DVI output from the Perl module output. - -PERLMOD_LATEX = NO - -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. -# This is useful -# if you want to understand what is going on. -# On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller -# and Perl will parse it just the same. - -PERLMOD_PRETTY = YES - -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same -# Makefile don't overwrite each other's variables. - -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = NO - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_DEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse -# the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. The format of a tag file without -# this location is as follows: -# -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths or -# URLs. If a location is present for each tag, the installdox tool -# does not have to be run to correct the links. -# Note that each tag file must have a unique name -# (where the name does NOT include the path) -# If a tag file is not located in the directory in which doxygen -# is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more -# powerful graphs. - -CLASS_DIAGRAMS = YES - -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = NO - -# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is -# allowed to run in parallel. When set to 0 (the default) doxygen will -# base this on the number of processors available in the system. You can set it -# explicitly to a value larger than 0 to get control over the balance -# between CPU load and processing speed. - -DOT_NUM_THREADS = 0 - -# By default doxygen will write a font called FreeSans.ttf to the output -# directory and reference it in all dot files that doxygen generates. This -# font does not include all possible unicode characters however, so when you need -# these (or just want a differently looking font) you can specify the font name -# using DOT_FONTNAME. You need need to make sure dot is able to find the font, -# which can be done by putting it in a standard location or by setting the -# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory -# containing the font. - -DOT_FONTNAME = FreeSans.ttf - -# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. -# The default size is 10pt. - -DOT_FONTSIZE = 10 - -# By default doxygen will tell dot to use the output directory to look for the -# FreeSans.ttf font (which doxygen will put there itself). If you specify a -# different font using DOT_FONTNAME you can set the path where dot -# can find it using this tag. - -DOT_FONTPATH = - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT options are set to YES then -# doxygen will generate a call dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable call graphs -# for selected functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then -# doxygen will generate a caller dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable caller -# graphs for selected functions only using the \callergraph command. - -CALLER_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are png, jpg, or gif -# If left blank png will be used. - -DOT_IMAGE_FORMAT = png - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, because dot on Windows does not -# seem to support this out of the box. Warning: Depending on the platform used, -# enabling this option may lead to badly anti-aliased labels on the edges of -# a graph (i.e. they become hard to read). - -DOT_TRANSPARENT = NO - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = YES - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/m4/libtool.m4 geany-plugins-1.24.1+dfsg/devhelp/m4/libtool.m4 --- geany-plugins-1.24.0+20140222+git/devhelp/m4/libtool.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/m4/libtool.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,7377 +0,0 @@ -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008 Free Software Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -m4_define([_LT_COPYING], [dnl -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, -# 2006, 2007, 2008 Free Software Foundation, Inc. -# Written by Gordon Matzigkeit, 1996 -# -# This file is part of GNU Libtool. -# -# GNU Libtool 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. -# -# As a special exception to the GNU General Public License, -# if you distribute this file as part of a program or library that -# is built using GNU Libtool, you may include this file under the -# same distribution terms that you use for the rest of that program. -# -# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy -# can be downloaded from http://www.gnu.org/licenses/gpl.html, or -# obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -]) - -# serial 56 LT_INIT - - -# LT_PREREQ(VERSION) -# ------------------ -# Complain and exit if this libtool version is less that VERSION. -m4_defun([LT_PREREQ], -[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, - [m4_default([$3], - [m4_fatal([Libtool version $1 or higher is required], - 63)])], - [$2])]) - - -# _LT_CHECK_BUILDDIR -# ------------------ -# Complain if the absolute build directory name contains unusual characters -m4_defun([_LT_CHECK_BUILDDIR], -[case `pwd` in - *\ * | *\ *) - AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; -esac -]) - - -# LT_INIT([OPTIONS]) -# ------------------ -AC_DEFUN([LT_INIT], -[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT -AC_BEFORE([$0], [LT_LANG])dnl -AC_BEFORE([$0], [LT_OUTPUT])dnl -AC_BEFORE([$0], [LTDL_INIT])dnl -m4_require([_LT_CHECK_BUILDDIR])dnl - -dnl Autoconf doesn't catch unexpanded LT_ macros by default: -m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl -m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl -dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 -dnl unless we require an AC_DEFUNed macro: -AC_REQUIRE([LTOPTIONS_VERSION])dnl -AC_REQUIRE([LTSUGAR_VERSION])dnl -AC_REQUIRE([LTVERSION_VERSION])dnl -AC_REQUIRE([LTOBSOLETE_VERSION])dnl -m4_require([_LT_PROG_LTMAIN])dnl - -dnl Parse OPTIONS -_LT_SET_OPTIONS([$0], [$1]) - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ltmain" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -_LT_SETUP - -# Only expand once: -m4_define([LT_INIT]) -])# LT_INIT - -# Old names: -AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) -AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PROG_LIBTOOL], []) -dnl AC_DEFUN([AM_PROG_LIBTOOL], []) - - -# _LT_CC_BASENAME(CC) -# ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -m4_defun([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` -]) - - -# _LT_FILEUTILS_DEFAULTS -# ---------------------- -# It is okay to use these file commands and assume they have been set -# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. -m4_defun([_LT_FILEUTILS_DEFAULTS], -[: ${CP="cp -f"} -: ${MV="mv -f"} -: ${RM="rm -f"} -])# _LT_FILEUTILS_DEFAULTS - - -# _LT_SETUP -# --------- -m4_defun([_LT_SETUP], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -_LT_DECL([], [host_alias], [0], [The host system])dnl -_LT_DECL([], [host], [0])dnl -_LT_DECL([], [host_os], [0])dnl -dnl -_LT_DECL([], [build_alias], [0], [The build system])dnl -_LT_DECL([], [build], [0])dnl -_LT_DECL([], [build_os], [0])dnl -dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -dnl -AC_REQUIRE([AC_PROG_LN_S])dnl -test -z "$LN_S" && LN_S="ln -s" -_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl -dnl -AC_REQUIRE([LT_CMD_MAX_LEN])dnl -_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl -_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl -dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_CHECK_SHELL_FEATURES])dnl -m4_require([_LT_CMD_RELOAD])dnl -m4_require([_LT_CHECK_MAGIC_METHOD])dnl -m4_require([_LT_CMD_OLD_ARCHIVE])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl - -_LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options which allow our -# commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi -]) -if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi - -_LT_CHECK_OBJDIR - -m4_require([_LT_TAG_COMPILER])dnl -_LT_PROG_ECHO_BACKSLASH - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' - -# Same as above, but do not quote variable references. -double_quote_subst='s/\([["`\\]]\)/\\\1/g' - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to delay expansion of an escaped single quote. -delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Global variables: -ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a - -with_gnu_ld="$lt_cv_prog_gnu_ld" - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$LD" && LD=ld -test -z "$ac_objext" && ac_objext=o - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -test -z "$MAGIC_CMD" && MAGIC_CMD=file -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - _LT_PATH_MAGIC - fi - ;; -esac - -# Use C for the default configuration in the libtool script -LT_SUPPORTED_TAG([CC]) -_LT_LANG_C_CONFIG -_LT_LANG_DEFAULT_CONFIG -_LT_CONFIG_COMMANDS -])# _LT_SETUP - - -# _LT_PROG_LTMAIN -# --------------- -# Note that this code is called both from `configure', and `config.status' -# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# `config.status' has no value for ac_aux_dir unless we are using Automake, -# so we pass a copy along to make sure it has a sensible value anyway. -m4_defun([_LT_PROG_LTMAIN], -[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl -_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain="$ac_aux_dir/ltmain.sh" -])# _LT_PROG_LTMAIN - - -## ------------------------------------- ## -## Accumulate code for creating libtool. ## -## ------------------------------------- ## - -# So that we can recreate a full libtool script including additional -# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the `libtool' -# label. - - -# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) -# ---------------------------------------- -# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL_INIT], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_INIT], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_INIT]) - - -# _LT_CONFIG_LIBTOOL([COMMANDS]) -# ------------------------------ -# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. -m4_define([_LT_CONFIG_LIBTOOL], -[m4_ifval([$1], - [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], - [$1 -])])]) - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) - - -# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) -# ----------------------------------------------------- -m4_defun([_LT_CONFIG_SAVE_COMMANDS], -[_LT_CONFIG_LIBTOOL([$1]) -_LT_CONFIG_LIBTOOL_INIT([$2]) -]) - - -# _LT_FORMAT_COMMENT([COMMENT]) -# ----------------------------- -# Add leading comment marks to the start of each line, and a trailing -# full-stop to the whole comment if one is not present already. -m4_define([_LT_FORMAT_COMMENT], -[m4_ifval([$1], [ -m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], - [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) -)]) - - - -## ------------------------ ## -## FIXME: Eliminate VARNAME ## -## ------------------------ ## - - -# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) -# ------------------------------------------------------------------- -# CONFIGNAME is the name given to the value in the libtool script. -# VARNAME is the (base) name used in the configure script. -# VALUE may be 0, 1 or 2 for a computed quote escaped value based on -# VARNAME. Any other value will be used directly. -m4_define([_LT_DECL], -[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], - [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], - [m4_ifval([$1], [$1], [$2])]) - lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) - m4_ifval([$4], - [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) - lt_dict_add_subkey([lt_decl_dict], [$2], - [tagged?], [m4_ifval([$5], [yes], [no])])]) -]) - - -# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) -# -------------------------------------------------------- -m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) - - -# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_tag_varnames], -[_lt_decl_filter([tagged?], [yes], $@)]) - - -# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) -# --------------------------------------------------------- -m4_define([_lt_decl_filter], -[m4_case([$#], - [0], [m4_fatal([$0: too few arguments: $#])], - [1], [m4_fatal([$0: too few arguments: $#: $1])], - [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], - [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], - [lt_dict_filter([lt_decl_dict], $@)])[]dnl -]) - - -# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) -# -------------------------------------------------- -m4_define([lt_decl_quote_varnames], -[_lt_decl_filter([value], [1], $@)]) - - -# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_dquote_varnames], -[_lt_decl_filter([value], [2], $@)]) - - -# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) -# --------------------------------------------------- -m4_define([lt_decl_varnames_tagged], -[m4_assert([$# <= 2])dnl -_$0(m4_quote(m4_default([$1], [[, ]])), - m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), - m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) -m4_define([_lt_decl_varnames_tagged], -[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) - - -# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) -# ------------------------------------------------ -m4_define([lt_decl_all_varnames], -[_$0(m4_quote(m4_default([$1], [[, ]])), - m4_if([$2], [], - m4_quote(lt_decl_varnames), - m4_quote(m4_shift($@))))[]dnl -]) -m4_define([_lt_decl_all_varnames], -[lt_join($@, lt_decl_varnames_tagged([$1], - lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl -]) - - -# _LT_CONFIG_STATUS_DECLARE([VARNAME]) -# ------------------------------------ -# Quote a variable value, and forward it to `config.status' so that its -# declaration there will have the same value as in `configure'. VARNAME -# must have a single quote delimited value for this to work. -m4_define([_LT_CONFIG_STATUS_DECLARE], -[$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) - - -# _LT_CONFIG_STATUS_DECLARATIONS -# ------------------------------ -# We delimit libtool config variables with single quotes, so when -# we write them to config.status, we have to be sure to quote all -# embedded single quotes properly. In configure, this macro expands -# each variable declared with _LT_DECL (and _LT_TAGDECL) into: -# -# ='`$ECHO "X$" | $Xsed -e "$delay_single_quote_subst"`' -m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], -[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), - [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAGS -# ---------------- -# Output comment and list of tags supported by the script -m4_defun([_LT_LIBTOOL_TAGS], -[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags="_LT_TAGS"dnl -]) - - -# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) -# ----------------------------------- -# Extract the dictionary values for VARNAME (optionally with TAG) and -# expand to a commented shell variable setting: -# -# # Some comment about what VAR is for. -# visible_name=$lt_internal_name -m4_define([_LT_LIBTOOL_DECLARE], -[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], - [description])))[]dnl -m4_pushdef([_libtool_name], - m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl -m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), - [0], [_libtool_name=[$]$1], - [1], [_libtool_name=$lt_[]$1], - [2], [_libtool_name=$lt_[]$1], - [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl -m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl -]) - - -# _LT_LIBTOOL_CONFIG_VARS -# ----------------------- -# Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' -# script. Tagged libtool config variables (even for the LIBTOOL CONFIG -# section) are produced by _LT_LIBTOOL_TAG_VARS. -m4_defun([_LT_LIBTOOL_CONFIG_VARS], -[m4_foreach([_lt_var], - m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) - - -# _LT_LIBTOOL_TAG_VARS(TAG) -# ------------------------- -m4_define([_LT_LIBTOOL_TAG_VARS], -[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), - [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) - - -# _LT_TAGVAR(VARNAME, [TAGNAME]) -# ------------------------------ -m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) - - -# _LT_CONFIG_COMMANDS -# ------------------- -# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of -# variables for single and double quote escaping we saved from calls -# to _LT_DECL, we can put quote escaped variables declarations -# into `config.status', and then the shell code to quote escape them in -# for loops in `config.status'. Finally, any additional code accumulated -# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. -m4_defun([_LT_CONFIG_COMMANDS], -[AC_PROVIDE_IFELSE([LT_OUTPUT], - dnl If the libtool generation code has been placed in $CONFIG_LT, - dnl instead of duplicating it all over again into config.status, - dnl then we will have config.status run $CONFIG_LT later, so it - dnl needs to know what name is stored there: - [AC_CONFIG_COMMANDS([libtool], - [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], - dnl If the libtool generation code is destined for config.status, - dnl expand the accumulated commands and init code now: - [AC_CONFIG_COMMANDS([libtool], - [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) -])#_LT_CONFIG_COMMANDS - - -# Initialize. -m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], -[ - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -sed_quote_subst='$sed_quote_subst' -double_quote_subst='$double_quote_subst' -delay_variable_subst='$delay_variable_subst' -_LT_CONFIG_STATUS_DECLARATIONS -LTCC='$LTCC' -LTCFLAGS='$LTCFLAGS' -compiler='$compiler_DEFAULT' - -# Quote evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_quote_varnames); do - case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Double-quote double-evaled strings. -for var in lt_decl_all_varnames([[ \ -]], lt_decl_dquote_varnames); do - case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in - *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" - ;; - *) - eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" - ;; - esac -done - -# Fix-up fallback echo if it was mangled by the above quoting rules. -case \$lt_ECHO in -*'\\\[$]0 --fallback-echo"')dnl " - lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\` - ;; -esac - -_LT_OUTPUT_LIBTOOL_INIT -]) - - -# LT_OUTPUT -# --------- -# This macro allows early generation of the libtool script (before -# AC_OUTPUT is called), incase it is used in configure for compilation -# tests. -AC_DEFUN([LT_OUTPUT], -[: ${CONFIG_LT=./config.lt} -AC_MSG_NOTICE([creating $CONFIG_LT]) -cat >"$CONFIG_LT" <<_LTEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate a libtool stub with the current configuration. - -lt_cl_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_LTEOF - -cat >>"$CONFIG_LT" <<\_LTEOF -AS_SHELL_SANITIZE -_AS_PREPARE - -exec AS_MESSAGE_FD>&1 -exec AS_MESSAGE_LOG_FD>>config.log -{ - echo - AS_BOX([Running $as_me.]) -} >&AS_MESSAGE_LOG_FD - -lt_cl_help="\ -\`$as_me' creates a local libtool stub from the current configuration, -for use in further configure time tests before the real libtool is -generated. - -Usage: $[0] [[OPTIONS]] - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - -Report bugs to ." - -lt_cl_version="\ -m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl -m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) -configured by $[0], generated by m4_PACKAGE_STRING. - -Copyright (C) 2008 Free Software Foundation, Inc. -This config.lt script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." - -while test $[#] != 0 -do - case $[1] in - --version | --v* | -V ) - echo "$lt_cl_version"; exit 0 ;; - --help | --h* | -h ) - echo "$lt_cl_help"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --quiet | --q* | --silent | --s* | -q ) - lt_cl_silent=: ;; - - -*) AC_MSG_ERROR([unrecognized option: $[1] -Try \`$[0] --help' for more information.]) ;; - - *) AC_MSG_ERROR([unrecognized argument: $[1] -Try \`$[0] --help' for more information.]) ;; - esac - shift -done - -if $lt_cl_silent; then - exec AS_MESSAGE_FD>/dev/null -fi -_LTEOF - -cat >>"$CONFIG_LT" <<_LTEOF -_LT_OUTPUT_LIBTOOL_COMMANDS_INIT -_LTEOF - -cat >>"$CONFIG_LT" <<\_LTEOF -AC_MSG_NOTICE([creating $ofile]) -_LT_OUTPUT_LIBTOOL_COMMANDS -AS_EXIT(0) -_LTEOF -chmod +x "$CONFIG_LT" - -# configure is writing to config.log, but config.lt does its own redirection, -# appending to config.log, which fails on DOS, as config.log is still kept -# open by configure. Here we exec the FD to /dev/null, effectively closing -# config.log, so it can be properly (re)opened and appended to by config.lt. -if test "$no_create" != yes; then - lt_cl_success=: - test "$silent" = yes && - lt_config_lt_args="$lt_config_lt_args --quiet" - exec AS_MESSAGE_LOG_FD>/dev/null - $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false - exec AS_MESSAGE_LOG_FD>>config.log - $lt_cl_success || AS_EXIT(1) -fi -])# LT_OUTPUT - - -# _LT_CONFIG(TAG) -# --------------- -# If TAG is the built-in tag, create an initial libtool script with a -# default configuration from the untagged config vars. Otherwise add code -# to config.status for appending the configuration named by TAG from the -# matching tagged config vars. -m4_defun([_LT_CONFIG], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_CONFIG_SAVE_COMMANDS([ - m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl - m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options which allow our - # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST - fi - - cfgfile="${ofile}T" - trap "$RM \"$cfgfile\"; exit 1" 1 2 15 - $RM "$cfgfile" - - cat <<_LT_EOF >> "$cfgfile" -#! $SHELL - -# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -_LT_COPYING -_LT_LIBTOOL_TAGS - -# ### BEGIN LIBTOOL CONFIG -_LT_LIBTOOL_CONFIG_VARS -_LT_LIBTOOL_TAG_VARS -# ### END LIBTOOL CONFIG - -_LT_EOF - - case $host_os in - aix3*) - cat <<\_LT_EOF >> "$cfgfile" -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -_LT_EOF - ;; - esac - - _LT_PROG_LTMAIN - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - _LT_PROG_XSI_SHELLFNS - - sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ - || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -], -[cat <<_LT_EOF >> "$ofile" - -dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded -dnl in a comment (ie after a #). -# ### BEGIN LIBTOOL TAG CONFIG: $1 -_LT_LIBTOOL_TAG_VARS(_LT_TAG) -# ### END LIBTOOL TAG CONFIG: $1 -_LT_EOF -])dnl /m4_if -], -[m4_if([$1], [], [ - PACKAGE='$PACKAGE' - VERSION='$VERSION' - TIMESTAMP='$TIMESTAMP' - RM='$RM' - ofile='$ofile'], []) -])dnl /_LT_CONFIG_SAVE_COMMANDS -])# _LT_CONFIG - - -# LT_SUPPORTED_TAG(TAG) -# --------------------- -# Trace this macro to discover what tags are supported by the libtool -# --tag option, using: -# autoconf --trace 'LT_SUPPORTED_TAG:$1' -AC_DEFUN([LT_SUPPORTED_TAG], []) - - -# C support is built-in for now -m4_define([_LT_LANG_C_enabled], []) -m4_define([_LT_TAGS], []) - - -# LT_LANG(LANG) -# ------------- -# Enable libtool support for the given language if not already enabled. -AC_DEFUN([LT_LANG], -[AC_BEFORE([$0], [LT_OUTPUT])dnl -m4_case([$1], - [C], [_LT_LANG(C)], - [C++], [_LT_LANG(CXX)], - [Java], [_LT_LANG(GCJ)], - [Fortran 77], [_LT_LANG(F77)], - [Fortran], [_LT_LANG(FC)], - [Windows Resource], [_LT_LANG(RC)], - [m4_ifdef([_LT_LANG_]$1[_CONFIG], - [_LT_LANG($1)], - [m4_fatal([$0: unsupported language: "$1"])])])dnl -])# LT_LANG - - -# _LT_LANG(LANGNAME) -# ------------------ -m4_defun([_LT_LANG], -[m4_ifdef([_LT_LANG_]$1[_enabled], [], - [LT_SUPPORTED_TAG([$1])dnl - m4_append([_LT_TAGS], [$1 ])dnl - m4_define([_LT_LANG_]$1[_enabled], [])dnl - _LT_LANG_$1_CONFIG($1)])dnl -])# _LT_LANG - - -# _LT_LANG_DEFAULT_CONFIG -# ----------------------- -m4_defun([_LT_LANG_DEFAULT_CONFIG], -[AC_PROVIDE_IFELSE([AC_PROG_CXX], - [LT_LANG(CXX)], - [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) - -AC_PROVIDE_IFELSE([AC_PROG_F77], - [LT_LANG(F77)], - [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) - -AC_PROVIDE_IFELSE([AC_PROG_FC], - [LT_LANG(FC)], - [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) - -dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal -dnl pulling things in needlessly. -AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [LT_LANG(GCJ)], - [AC_PROVIDE_IFELSE([LT_PROG_GCJ], - [LT_LANG(GCJ)], - [m4_ifdef([AC_PROG_GCJ], - [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([A][M_PROG_GCJ], - [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) - m4_ifdef([LT_PROG_GCJ], - [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) - -AC_PROVIDE_IFELSE([LT_PROG_RC], - [LT_LANG(RC)], - [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) -])# _LT_LANG_DEFAULT_CONFIG - -# Obsolete macros: -AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) -AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) -AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) -AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_CXX], []) -dnl AC_DEFUN([AC_LIBTOOL_F77], []) -dnl AC_DEFUN([AC_LIBTOOL_FC], []) -dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) - - -# _LT_TAG_COMPILER -# ---------------- -m4_defun([_LT_TAG_COMPILER], -[AC_REQUIRE([AC_PROG_CC])dnl - -_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl -_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl -_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl -_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC -])# _LT_TAG_COMPILER - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -m4_defun([_LT_COMPILER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$RM conftest* -])# _LT_COMPILER_BOILERPLATE - - -# _LT_LINKER_BOILERPLATE -# ---------------------- -# Check for linker boilerplate output or warnings with -# the simple link test code. -m4_defun([_LT_LINKER_BOILERPLATE], -[m4_require([_LT_DECL_SED])dnl -ac_outfile=conftest.$ac_objext -echo "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$RM -r conftest* -])# _LT_LINKER_BOILERPLATE - -# _LT_REQUIRED_DARWIN_CHECKS -# ------------------------- -m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ - case $host_os in - rhapsody* | darwin*) - AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) - AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) - AC_CHECK_TOOL([LIPO], [lipo], [:]) - AC_CHECK_TOOL([OTOOL], [otool], [:]) - AC_CHECK_TOOL([OTOOL64], [otool64], [:]) - _LT_DECL([], [DSYMUTIL], [1], - [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) - _LT_DECL([], [NMEDIT], [1], - [Tool to change global to local symbols on Mac OS X]) - _LT_DECL([], [LIPO], [1], - [Tool to manipulate fat objects and archives on Mac OS X]) - _LT_DECL([], [OTOOL], [1], - [ldd/readelf like tool for Mach-O binaries on Mac OS X]) - _LT_DECL([], [OTOOL64], [1], - [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) - - AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], - [lt_cv_apple_cc_single_mod=no - if test -z "${LT_MULTI_MODULE}"; then - # By default we will add the -single_module flag. You can override - # by either setting the environment variable LT_MULTI_MODULE - # non-empty at configure time, or by adding -multi_module to the - # link flags. - rm -rf libconftest.dylib* - echo "int foo(void){return 1;}" > conftest.c - echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ --dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib -Wl,-single_module conftest.c 2>conftest.err - _lt_result=$? - if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then - lt_cv_apple_cc_single_mod=yes - else - cat conftest.err >&AS_MESSAGE_LOG_FD - fi - rm -rf libconftest.dylib* - rm -f conftest.* - fi]) - AC_CACHE_CHECK([for -exported_symbols_list linker flag], - [lt_cv_ld_exported_symbols_list], - [lt_cv_ld_exported_symbols_list=no - save_LDFLAGS=$LDFLAGS - echo "_main" > conftest.sym - LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [lt_cv_ld_exported_symbols_list=yes], - [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS="$save_LDFLAGS" - ]) - case $host_os in - rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - 10.[[012]]*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; - esac - ;; - esac - if test "$lt_cv_apple_cc_single_mod" = "yes"; then - _lt_dar_single_mod='$single_module' - fi - if test "$lt_cv_ld_exported_symbols_list" = "yes"; then - _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' - else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - if test "$DSYMUTIL" != ":"; then - _lt_dsymutil='~$DSYMUTIL $lib || :' - else - _lt_dsymutil= - fi - ;; - esac -]) - - -# _LT_DARWIN_LINKER_FEATURES -# -------------------------- -# Checks for linker and compiler features on darwin -m4_defun([_LT_DARWIN_LINKER_FEATURES], -[ - m4_require([_LT_REQUIRED_DARWIN_CHECKS]) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_automatic, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" - case $cc_basename in - ifort*) _lt_dar_can_shared=yes ;; - *) _lt_dar_can_shared=$GCC ;; - esac - if test "$_lt_dar_can_shared" = "yes"; then - output_verbose_link_cmd=echo - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" - m4_if([$1], [CXX], -[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" - fi -],[]) - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi -]) - -# _LT_SYS_MODULE_PATH_AIX -# ----------------------- -# Links a minimal program and checks the executable -# for the system default hardcoded library path. In most cases, -# this is /usr/lib:/lib, but when the MPI compilers are used -# the location of the communication and MPI libs are included too. -# If we don't find anything, use the default library path according -# to the aix ld manual. -m4_defun([_LT_SYS_MODULE_PATH_AIX], -[m4_require([_LT_DECL_SED])dnl -AC_LINK_IFELSE(AC_LANG_PROGRAM,[ -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi],[]) -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -])# _LT_SYS_MODULE_PATH_AIX - - -# _LT_SHELL_INIT(ARG) -# ------------------- -m4_define([_LT_SHELL_INIT], -[ifdef([AC_DIVERSION_NOTICE], - [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], - [AC_DIVERT_PUSH(NOTICE)]) -$1 -AC_DIVERT_POP -])# _LT_SHELL_INIT - - -# _LT_PROG_ECHO_BACKSLASH -# ----------------------- -# Add some code to the start of the generated configure script which -# will find an echo command which doesn't interpret backslashes. -m4_defun([_LT_PROG_ECHO_BACKSLASH], -[_LT_SHELL_INIT([ -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$lt_ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` - ;; -esac - -ECHO=${lt_ECHO-echo} -if test "X[$]1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X[$]1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then - # Yippee, $ECHO works! - : -else - # Restart under the correct shell. - exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} -fi - -if test "X[$]1" = X--fallback-echo; then - # used as fallback echo - shift - cat <<_LT_EOF -[$]* -_LT_EOF - exit 0 -fi - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -if test -z "$lt_ECHO"; then - if test "X${echo_test_string+set}" != Xset; then - # find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if { echo_test_string=`eval $cmd`; } 2>/dev/null && - { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null - then - break - fi - done - fi - - if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : - else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - ECHO="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$ECHO" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - ECHO='print -r' - elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} - else - # Try using printf. - ECHO='printf %s\n' - if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && - echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - ECHO="$CONFIG_SHELL [$]0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - ECHO="$CONFIG_SHELL [$]0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do - if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "[$]0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} - else - # Oops. We lost completely, so just stick with echo. - ECHO=echo - fi - fi - fi - fi - fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -lt_ECHO=$ECHO -if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then - lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" -fi - -AC_SUBST(lt_ECHO) -]) -_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) -_LT_DECL([], [ECHO], [1], - [An echo program that does not interpret backslashes]) -])# _LT_PROG_ECHO_BACKSLASH - - -# _LT_ENABLE_LOCK -# --------------- -m4_defun([_LT_ENABLE_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AS_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '[#]line __oline__ "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ -s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_i386_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*kfreebsd*-gnu) - LD="${LD-ld} -m elf_x86_64_fbsd" - ;; - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*|s390*-*tpf*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, - [AC_LANG_PUSH(C) - AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) - AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) - if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then - LD="${LD-ld} -64" - fi - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; -esac - -need_locks="$enable_libtool_lock" -])# _LT_ENABLE_LOCK - - -# _LT_CMD_OLD_ARCHIVE -# ------------------- -m4_defun([_LT_CMD_OLD_ARCHIVE], -[AC_CHECK_TOOL(AR, ar, false) -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru -_LT_DECL([], [AR], [1], [The archiver]) -_LT_DECL([], [AR_FLAGS], [1]) - -AC_CHECK_TOOL(STRIP, strip, :) -test -z "$STRIP" && STRIP=: -_LT_DECL([], [STRIP], [1], [A symbol stripping program]) - -AC_CHECK_TOOL(RANLIB, ranlib, :) -test -z "$RANLIB" && RANLIB=: -_LT_DECL([], [RANLIB], [1], - [Commands used to install an old-style archive]) - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi -_LT_DECL([], [old_postinstall_cmds], [2]) -_LT_DECL([], [old_postuninstall_cmds], [2]) -_LT_TAGDECL([], [old_archive_cmds], [2], - [Commands used to build an old-style archive]) -])# _LT_CMD_OLD_ARCHIVE - - -# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([_LT_COMPILER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s "$ac_outfile"; then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings other than the usual output. - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - fi - $RM conftest* -]) - -if test x"[$]$2" = xyes; then - m4_if([$5], , :, [$5]) -else - m4_if([$6], , :, [$6]) -fi -])# _LT_COMPILER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) - - -# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------- -# Check whether the given linker option works -AC_DEFUN([_LT_LINKER_OPTION], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_SED])dnl -AC_CACHE_CHECK([$1], [$2], - [$2=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $3" - echo "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&AS_MESSAGE_LOG_FD - $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - else - $2=yes - fi - fi - $RM -r conftest* - LDFLAGS="$save_LDFLAGS" -]) - -if test x"[$]$2" = xyes; then - m4_if([$4], , :, [$4]) -else - m4_if([$5], , :, [$5]) -fi -])# _LT_LINKER_OPTION - -# Old name: -AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) - - -# LT_CMD_MAX_LEN -#--------------- -AC_DEFUN([LT_CMD_MAX_LEN], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -# find the maximum length of command line arguments -AC_MSG_CHECKING([the maximum length of command line arguments]) -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw* | cegcc*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len"; then - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - else - # Make teststring a little bigger before we do anything with it. - # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8 ; do - teststring=$teststring$teststring - done - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ - = "XX$teststring$teststring"; } >/dev/null 2>&1 && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - # Only check the string length outside the loop. - lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` - teststring= - # Add a significant safety factor because C++ compilers can tack on - # massive amounts of additional arguments before passing them to the - # linker. It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - fi - ;; - esac -]) -if test -n $lt_cv_sys_max_cmd_len ; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) -else - AC_MSG_RESULT(none) -fi -max_cmd_len=$lt_cv_sys_max_cmd_len -_LT_DECL([], [max_cmd_len], [0], - [What is the maximum length of a command?]) -])# LT_CMD_MAX_LEN - -# Old name: -AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) - - -# _LT_HEADER_DLFCN -# ---------------- -m4_defun([_LT_HEADER_DLFCN], -[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl -])# _LT_HEADER_DLFCN - - -# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# ---------------------------------------------------------------- -m4_defun([_LT_TRY_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test "$cross_compiling" = yes; then : - [$4] -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext <<_LT_EOF -[#line __oline__ "configure" -#include "confdefs.h" - -#if HAVE_DLFCN_H -#include -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - return status; -}] -_LT_EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) $1 ;; - x$lt_dlneed_uscore) $2 ;; - x$lt_dlunknown|x*) $3 ;; - esac - else : - # compilation failed - $3 - fi -fi -rm -fr conftest* -])# _LT_TRY_DLOPEN_SELF - - -# LT_SYS_DLOPEN_SELF -# ------------------ -AC_DEFUN([LT_SYS_DLOPEN_SELF], -[m4_require([_LT_HEADER_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32* | cegcc*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ]) - ;; - - *) - AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], - [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], - [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], - [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], - [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], - [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) - ]) - ]) - ]) - ]) - ]) - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - AC_CACHE_CHECK([whether a program can dlopen itself], - lt_cv_dlopen_self, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) - ]) - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], - lt_cv_dlopen_self_static, [dnl - _LT_TRY_DLOPEN_SELF( - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) - ]) - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi -_LT_DECL([dlopen_support], [enable_dlopen], [0], - [Whether dlopen is supported]) -_LT_DECL([dlopen_self], [enable_dlopen_self], [0], - [Whether dlopen of programs is supported]) -_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], - [Whether dlopen of statically linked programs is supported]) -])# LT_SYS_DLOPEN_SELF - -# Old name: -AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) - - -# _LT_COMPILER_C_O([TAGNAME]) -# --------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler. -# This macro does not hard code the compiler like AC_PROG_CC_C_O. -m4_defun([_LT_COMPILER_C_O], -[m4_require([_LT_DECL_SED])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no - $RM -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ - -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - fi - fi - chmod u+w . 2>&AS_MESSAGE_LOG_FD - $RM conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files - $RM out/* && rmdir out - cd .. - $RM -r conftest - $RM conftest* -]) -_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], - [Does compiler simultaneously support -c and -o options?]) -])# _LT_COMPILER_C_O - - -# _LT_COMPILER_FILE_LOCKS([TAGNAME]) -# ---------------------------------- -# Check to see if we can do hard links to lock some files if needed -m4_defun([_LT_COMPILER_FILE_LOCKS], -[m4_require([_LT_ENABLE_LOCK])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -_LT_COMPILER_C_O([$1]) - -hard_links="nottested" -if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - AC_MSG_CHECKING([if we can lock with hard links]) - hard_links=yes - $RM conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) - need_locks=warn - fi -else - need_locks=no -fi -_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) -])# _LT_COMPILER_FILE_LOCKS - - -# _LT_CHECK_OBJDIR -# ---------------- -m4_defun([_LT_CHECK_OBJDIR], -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], -[rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null]) -objdir=$lt_cv_objdir -_LT_DECL([], [objdir], [0], - [The name of the directory that contains temporary libtool files])dnl -m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", - [Define to the sub-directory in which libtool stores uninstalled libraries.]) -])# _LT_CHECK_OBJDIR - - -# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) -# -------------------------------------- -# Check hardcoding attributes. -m4_defun([_LT_LINKER_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || - test -n "$_LT_TAGVAR(runpath_var, $1)" || - test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then - - # We can hardcode non-existent directories. - if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then - # Linking always hardcodes the temporary library directory. - _LT_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) - -if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || - test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi -_LT_TAGDECL([], [hardcode_action], [0], - [How to hardcode a shared library path into an executable]) -])# _LT_LINKER_HARDCODE_LIBPATH - - -# _LT_CMD_STRIPLIB -# ---------------- -m4_defun([_LT_CMD_STRIPLIB], -[m4_require([_LT_DECL_EGREP]) -striplib= -old_striplib= -AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - old_striplib="$STRIP -S" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac -fi -_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) -_LT_DECL([], [striplib], [1]) -])# _LT_CMD_STRIPLIB - - -# _LT_SYS_DYNAMIC_LINKER([TAG]) -# ----------------------------- -# PORTME Fill in your ld.so characteristics -m4_defun([_LT_SYS_DYNAMIC_LINKER], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_OBJDUMP])dnl -m4_require([_LT_DECL_SED])dnl -AC_MSG_CHECKING([dynamic linker characteristics]) -m4_if([$1], - [], [ -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` - else - lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary. - lt_tmp_lt_search_path_spec= - lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path/$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" - else - test -d "$lt_sys_path" && \ - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" - fi - done - lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' -BEGIN {RS=" "; FS="/|\n";} { - lt_foo=""; - lt_count=0; - for (lt_i = NF; lt_i > 0; lt_i--) { - if ($lt_i != "" && $lt_i != ".") { - if ($lt_i == "..") { - lt_count++; - } else { - if (lt_count == 0) { - lt_foo="/" $lt_i lt_foo; - } else { - lt_count--; - } - } - } - } - if (lt_foo != "") { lt_freq[[lt_foo]]++; } - if (lt_freq[[lt_foo]] == 1) { print lt_foo; } -}'` - sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi]) -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix[[4-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[[01]] | aix4.[[01]].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - case $host_cpu in - powerpc) - # Since July 2007 AmigaOS4 officially supports .so libraries. - # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - ;; - m68k) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - esac - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[[45]]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32* | cegcc*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw* | cegcc*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' -m4_if([$1], [],[ - sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[[123]]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[[01]]* | freebsdelf3.[[01]]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ - freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - *) # from 4.6 on, and DragonFly - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix[[3-9]]*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # Some binutils ld are patched to set DT_RUNPATH - save_LDFLAGS=$LDFLAGS - save_libdir=$libdir - eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ - LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" - AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], - [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], - [shlibpath_overrides_runpath=yes])]) - LDFLAGS=$save_LDFLAGS - libdir=$save_libdir - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -*nto* | *qnx*) - version_type=qnx - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='ldqnx.so' - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -rdos*) - dynamic_linker=no - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -tpf*) - # TPF is a cross-target only. Preferred cross-host = GNU/Linux. - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi - -if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then - sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -fi -if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then - sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" -fi - -_LT_DECL([], [variables_saved_for_relink], [1], - [Variables whose values should be saved in libtool wrapper scripts and - restored at link time]) -_LT_DECL([], [need_lib_prefix], [0], - [Do we need the "lib" prefix for modules?]) -_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) -_LT_DECL([], [version_type], [0], [Library versioning type]) -_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) -_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) -_LT_DECL([], [shlibpath_overrides_runpath], [0], - [Is shlibpath searched before the hard-coded library search path?]) -_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) -_LT_DECL([], [library_names_spec], [1], - [[List of archive names. First name is the real one, the rest are links. - The last name is the one that the linker finds with -lNAME]]) -_LT_DECL([], [soname_spec], [1], - [[The coded name of the library, if different from the real name]]) -_LT_DECL([], [postinstall_cmds], [2], - [Command to use after installation of a shared archive]) -_LT_DECL([], [postuninstall_cmds], [2], - [Command to use after uninstallation of a shared archive]) -_LT_DECL([], [finish_cmds], [2], - [Commands used to finish a libtool library installation in a directory]) -_LT_DECL([], [finish_eval], [1], - [[As "finish_cmds", except a single script fragment to be evaled but - not shown]]) -_LT_DECL([], [hardcode_into_libs], [0], - [Whether we should hardcode library paths into libraries]) -_LT_DECL([], [sys_lib_search_path_spec], [2], - [Compile-time system search path for libraries]) -_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], - [Run-time system search path for libraries]) -])# _LT_SYS_DYNAMIC_LINKER - - -# _LT_PATH_TOOL_PREFIX(TOOL) -# -------------------------- -# find a file program which can recognize shared library -AC_DEFUN([_LT_PATH_TOOL_PREFIX], -[m4_require([_LT_DECL_EGREP])dnl -AC_MSG_CHECKING([for $1]) -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, -[case $MAGIC_CMD in -[[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -dnl $ac_dummy forces splitting on constant user-supplied paths. -dnl POSIX.2 word splitting is done only on the output of word expansions, -dnl not every word. This closes a longstanding sh security hole. - ac_dummy="m4_if([$2], , $PATH, [$2])" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <<_LT_EOF 1>&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -_LT_EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - AC_MSG_RESULT($MAGIC_CMD) -else - AC_MSG_RESULT(no) -fi -_LT_DECL([], [MAGIC_CMD], [0], - [Used to examine libraries when file_magic_cmd begins with "file"])dnl -])# _LT_PATH_TOOL_PREFIX - -# Old name: -AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) - - -# _LT_PATH_MAGIC -# -------------- -# find a file program which can recognize a shared library -m4_defun([_LT_PATH_MAGIC], -[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# _LT_PATH_MAGIC - - -# LT_PATH_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([LT_PATH_LD], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl - -AC_ARG_WITH([gnu-ld], - [AS_HELP_STRING([--with-gnu-ld], - [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], - [with_gnu_ld=no])dnl - -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by $CC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` - while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do - ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(lt_cv_path_LD, -[if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' - lt_cv_file_magic_cmd='func_win32_libid' - else - lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -cegcc) - # use the weaker test based on 'objdump'. See mingw*. - lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - ;; - -darwin* | rhapsody*) - lt_cv_deplibs_check_method=pass_all - ;; - -freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix[[3-9]]*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -*nto* | *qnx*) - lt_cv_deplibs_check_method=pass_all - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -rdos*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -tpf*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown - -_LT_DECL([], [deplibs_check_method], [1], - [Method to check whether dependent libraries are shared objects]) -_LT_DECL([], [file_magic_cmd], [1], - [Command to use when deplibs_check_method == "file_magic"]) -])# _LT_CHECK_MAGIC_METHOD - - -# LT_PATH_NM -# ---------- -# find the pathname to a BSD- or MS-compatible name lister -AC_DEFUN([LT_PATH_NM], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, -[if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - : ${lt_cv_path_NM=no} -fi]) -if test "$lt_cv_path_NM" != "no"; then - NM="$lt_cv_path_NM" -else - # Didn't find any BSD compatible name lister, look for dumpbin. - AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :) - AC_SUBST([DUMPBIN]) - if test "$DUMPBIN" != ":"; then - NM="$DUMPBIN" - fi -fi -test -z "$NM" && NM=nm -AC_SUBST([NM]) -_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl - -AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], - [lt_cv_nm_interface="BSD nm" - echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$ac_compile" 2>conftest.err) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) - (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) - cat conftest.err >&AS_MESSAGE_LOG_FD - (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD) - cat conftest.out >&AS_MESSAGE_LOG_FD - if $GREP 'External.*some_variable' conftest.out > /dev/null; then - lt_cv_nm_interface="MS dumpbin" - fi - rm -f conftest*]) -])# LT_PATH_NM - -# Old names: -AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) -AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_PROG_NM], []) -dnl AC_DEFUN([AC_PROG_NM], []) - - -# LT_LIB_M -# -------- -# check for math library -AC_DEFUN([LT_LIB_M], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) - # These system don't have libm, or don't need it - ;; -*-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") - ;; -*) - AC_CHECK_LIB(m, cos, LIBM="-lm") - ;; -esac -AC_SUBST([LIBM]) -])# LT_LIB_M - -# Old name: -AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_CHECK_LIBM], []) - - -# _LT_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------- -m4_defun([_LT_COMPILER_NO_RTTI], -[m4_require([_LT_TAG_COMPILER])dnl - -_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test "$GCC" = yes; then - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - - _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], - [Compiler flag to turn off builtin functions]) -])# _LT_COMPILER_NO_RTTI - - -# _LT_CMD_GLOBAL_SYMBOLS -# ---------------------- -m4_defun([_LT_CMD_GLOBAL_SYMBOLS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([LT_PATH_NM])dnl -AC_REQUIRE([LT_PATH_LD])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_TAG_COMPILER])dnl - -# Check for command to grab the raw symbol name followed by C symbol from nm. -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], -[ -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[[BCDEGRST]]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32* | cegcc*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) - if test "$host_cpu" = ia64; then - symcode='[[ABCDEGRST]]' - fi - ;; -irix* | nonstopux*) - symcode='[[BCDEGRST]]' - ;; -osf*) - symcode='[[BCDEGQRST]]' - ;; -solaris*) - symcode='[[BDRT]]' - ;; -sco3.2v5*) - symcode='[[DT]]' - ;; -sysv4.2uw2*) - symcode='[[DT]]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[[ABDT]]' - ;; -sysv4) - symcode='[[DFNSTU]]' - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -# Transform an extracted symbol line into a proper C declaration. -# Some systems (esp. on ia64) link data and code symbols differently, -# so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# Try without a prefix underscore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function - # and D for any global variable. - # Also find C++ and __fastcall symbols from MSVC++, - # which start with @ or ?. - lt_cv_sys_global_symbol_pipe="$AWK ['"\ -" {last_section=section; section=\$ 3};"\ -" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" \$ 0!~/External *\|/{next};"\ -" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ -" {if(hide[section]) next};"\ -" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ -" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ -" s[1]~/^[@?]/{print s[1], s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ -" ' prfx=^$ac_symprfx]" - else - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - fi - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext <<_LT_EOF -#ifdef __cplusplus -extern "C" { -#endif -char nm_test_var; -void nm_test_func(void); -void nm_test_func(void){} -#ifdef __cplusplus -} -#endif -int main(){nm_test_var='a';nm_test_func();return(0);} -_LT_EOF - - if AC_TRY_EVAL(ac_compile); then - # Now try to grab the symbols. - nlist=conftest.nm - if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if $GREP ' nm_test_var$' "$nlist" >/dev/null; then - if $GREP ' nm_test_func$' "$nlist" >/dev/null; then - cat <<_LT_EOF > conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -_LT_EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' - - cat <<_LT_EOF >> conftest.$ac_ext - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - void *address; -} -lt__PROGRAM__LTX_preloaded_symbols[[]] = -{ - { "@PROGRAM@", (void *) 0 }, -_LT_EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext - cat <<\_LT_EOF >> conftest.$ac_ext - {0, (void *) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt__PROGRAM__LTX_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif -_LT_EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS="$lt_save_LIBS" - CFLAGS="$lt_save_CFLAGS" - else - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.$ac_ext >&5 - fi - rm -rf conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done -]) -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - AC_MSG_RESULT(failed) -else - AC_MSG_RESULT(ok) -fi - -_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], - [Take the output of nm and produce a listing of raw symbols and C names]) -_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], - [Transform the output of nm in a proper C declaration]) -_LT_DECL([global_symbol_to_c_name_address], - [lt_cv_sys_global_symbol_to_c_name_address], [1], - [Transform the output of nm in a C name address pair]) -_LT_DECL([global_symbol_to_c_name_address_lib_prefix], - [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], - [Transform the output of nm in a C name address pair when lib prefix is needed]) -]) # _LT_CMD_GLOBAL_SYMBOLS - - -# _LT_COMPILER_PIC([TAGNAME]) -# --------------------------- -m4_defun([_LT_COMPILER_PIC], -[m4_require([_LT_TAG_COMPILER])dnl -_LT_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_TAGVAR(lt_prog_compiler_static, $1)= - -AC_MSG_CHECKING([for $compiler option to produce PIC]) -m4_if([$1], [CXX], [ - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - case $host_os in - aix[[4-9]]*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - ecpc* ) - # old Intel C++ for x86_64 which still supported -KPIC. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - icpc* ) - # Intel C++, used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xlc* | xlC*) - # IBM XL 8.0 on PPC - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd* | netbsdelf*-gnu) - ;; - *qnx* | *nto*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test "$GCC" = yes; then - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - m68k) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - esac - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - # Although the cygwin gcc ignores -fPIC, still need this for old-style - # (--disable-auto-import) libraries - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - hpux*) - # PIC is the default for 64-bit PA HP-UX, but not for 32-bit - # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag - # sets the default TLS model and affects inlining. - case $host_cpu in - hppa*64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - interix[[3-9]]*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - - mingw* | cygwin* | pw32* | os2* | cegcc*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - m4_if([$1], [GCJ], [], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - hpux9* | hpux10* | hpux11*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - # old Intel for x86_64 which still supported -KPIC. - ecc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # icc used to be incompatible with GCC. - # ICC 10 doesn't accept -KPIC any more. - icc* | ifort*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - # Lahey Fortran 8.1. - lf95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' - _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - xl*) - # IBM XL C 8.0/Fortran 10.1 on PPC - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_TAGVAR(lt_prog_compiler_wl, $1)='' - ;; - esac - ;; - esac - ;; - - newsos6) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *nto* | *qnx*) - # QNX uses GNU C++, but need to define -shared option too, otherwise - # it will coredump. - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' - ;; - - osf3* | osf4* | osf5*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - rdos*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" - ;; -esac -AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) -_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], - [How to pass a linker flag through the compiler]) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then - _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], - [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], - [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], - [Additional compiler flags for building library objects]) - -# -# Check to make sure the static flag actually works. -# -wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" -_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) -_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], - [Compiler flag to prevent dynamic linking]) -])# _LT_COMPILER_PIC - - -# _LT_LINKER_SHLIBS([TAGNAME]) -# ---------------------------- -# See if the linker supports building shared libraries. -m4_defun([_LT_LINKER_SHLIBS], -[AC_REQUIRE([LT_PATH_LD])dnl -AC_REQUIRE([LT_PATH_NM])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl -m4_require([_LT_DECL_SED])dnl -m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -m4_require([_LT_TAG_COMPILER])dnl -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -m4_if([$1], [CXX], [ - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix[[4-9]]*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw* | cegcc*) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' - ;; - linux* | k*bsd*-gnu) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] -], [ - runpath_var= - _LT_TAGVAR(allow_undefined_flag, $1)= - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(archive_cmds, $1)= - _LT_TAGVAR(archive_expsym_cmds, $1)= - _LT_TAGVAR(compiler_needs_object, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - _LT_TAGVAR(hardcode_automatic, $1)=no - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_TAGVAR(hardcode_libdir_separator, $1)= - _LT_TAGVAR(hardcode_minus_L, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_TAGVAR(inherit_rpath, $1)=no - _LT_TAGVAR(link_all_deplibs, $1)=unknown - _LT_TAGVAR(module_cmds, $1)= - _LT_TAGVAR(module_expsym_cmds, $1)= - _LT_TAGVAR(old_archive_from_new_cmds, $1)= - _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_TAGVAR(thread_safe_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - # Exclude shared library initialization/finalization symbols. -dnl Note also adjust exclude_expsyms for C++ above. - extract_expsyms_cmds= - - case $host_os in - cygwin* | mingw* | pw32* | cegcc*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - linux* | k*bsd*-gnu) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; - esac - - _LT_TAGVAR(ld_shlibs, $1)=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v 2>&1` in - *GNU\ gold*) supports_anon_versioning=yes ;; - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix[[3-9]]*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -_LT_EOF - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) - tmp_diet=no - if test "$host_os" = linux-dietlibc; then - case $cc_basename in - diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) - esac - fi - if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test "$tmp_diet" = no - then - tmp_addflag= - tmp_sharedflag='-shared' - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - lf95*) # Lahey Fortran 8.1 - _LT_TAGVAR(whole_archive_flag_spec, $1)= - tmp_sharedflag='--shared' ;; - xl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) - tmp_sharedflag='-qmkshrobj' - tmp_addflag= ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - - case $cc_basename in - xlf*) - # IBM XL Fortran 10.1 on PPC cannot create shared libs itself - _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' - fi - ;; - esac - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then - runpath_var= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - _LT_TAGVAR(hardcode_direct, $1)=unsupported - fi - ;; - - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - else - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' - - if test "$GCC" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - _LT_TAGVAR(link_all_deplibs, $1)=no - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - case $host_cpu in - powerpc) - # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='' - ;; - m68k) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - ;; - - bsdi[[45]]*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' - _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - dgux*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - freebsd1*) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - # Try to use the -exported_symbol ld option, if it does not - # work, assume that -exports_file does not work either and - # implicitly export all symbols. - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" - AC_LINK_IFELSE(int foo(void) {}, - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' - ) - LDFLAGS="$save_LDFLAGS" - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - netbsd* | netbsdelf*-gnu) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *nto* | *qnx*) - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac - fi - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - else - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' - - # Both c and cxx compiler support -rpath directly - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - else - case `$CC -V 2>&1` in - *"Compilers 5.0"*) - wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' - ;; - *) - wlarc='${wl}' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' - ;; - esac - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. GCC discards it without `$wl', - # but is careful enough not to reorder. - # Supported since Solaris 2.6 (maybe 2.5.1?) - if test "$GCC" = yes; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - fi - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - if test x$host_vendor = xsni; then - case $host in - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' - ;; - esac - fi - fi -]) -AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld - -_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl -_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl -_LT_DECL([], [extract_expsyms_cmds], [2], - [The commands to extract the exported symbol list from a shared archive]) - -# -# Do we need to explicitly link libc? -# -case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $_LT_TAGVAR(archive_cmds, $1) in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - AC_MSG_CHECKING([whether -lc should be explicitly linked in]) - $RM conftest* - echo "$lt_simple_compile_test_code" > conftest.$ac_ext - - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) - _LT_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) - then - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - else - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $RM conftest* - AC_MSG_RESULT([$_LT_TAGVAR(archive_cmds_need_lc, $1)]) - ;; - esac - fi - ;; -esac - -_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], - [Whether or not to add -lc for building shared libraries]) -_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], - [enable_shared_with_static_runtimes], [0], - [Whether or not to disallow shared libs when runtime libs are static]) -_LT_TAGDECL([], [export_dynamic_flag_spec], [1], - [Compiler flag to allow reflexive dlopens]) -_LT_TAGDECL([], [whole_archive_flag_spec], [1], - [Compiler flag to generate shared objects directly from archives]) -_LT_TAGDECL([], [compiler_needs_object], [1], - [Whether the compiler copes with passing no objects directly]) -_LT_TAGDECL([], [old_archive_from_new_cmds], [2], - [Create an old-style archive from a shared archive]) -_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], - [Create a temporary old-style archive to link instead of a shared archive]) -_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) -_LT_TAGDECL([], [archive_expsym_cmds], [2]) -_LT_TAGDECL([], [module_cmds], [2], - [Commands used to build a loadable module if different from building - a shared archive.]) -_LT_TAGDECL([], [module_expsym_cmds], [2]) -_LT_TAGDECL([], [with_gnu_ld], [1], - [Whether we are building with GNU ld or not]) -_LT_TAGDECL([], [allow_undefined_flag], [1], - [Flag that allows shared libraries with undefined symbols to be built]) -_LT_TAGDECL([], [no_undefined_flag], [1], - [Flag that enforces no undefined symbols]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], - [Flag to hardcode $libdir into a binary during linking. - This must work even if $libdir does not exist]) -_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], - [[If ld is used when linking, flag to hardcode $libdir into a binary - during linking. This must work even if $libdir does not exist]]) -_LT_TAGDECL([], [hardcode_libdir_separator], [1], - [Whether we need a single "-rpath" flag with a separated argument]) -_LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes - DIR into the resulting binary]) -_LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes - DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting ${shlibpath_var} if the - library is relocated]) -_LT_TAGDECL([], [hardcode_minus_L], [0], - [Set to "yes" if using the -LDIR flag during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_shlibpath_var], [0], - [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR - into the resulting binary]) -_LT_TAGDECL([], [hardcode_automatic], [0], - [Set to "yes" if building a shared library automatically hardcodes DIR - into the library and all subsequent libraries and executables linked - against it]) -_LT_TAGDECL([], [inherit_rpath], [0], - [Set to yes if linker adds runtime paths of dependent libraries - to runtime path list]) -_LT_TAGDECL([], [link_all_deplibs], [0], - [Whether libtool must link a program against all its dependency libraries]) -_LT_TAGDECL([], [fix_srcfile_path], [1], - [Fix the shell variable $srcfile for the compiler]) -_LT_TAGDECL([], [always_export_symbols], [0], - [Set to "yes" if exported symbols are required]) -_LT_TAGDECL([], [export_symbols_cmds], [2], - [The commands to list exported symbols]) -_LT_TAGDECL([], [exclude_expsyms], [1], - [Symbols that should not be listed in the preloaded symbols]) -_LT_TAGDECL([], [include_expsyms], [1], - [Symbols that must always be exported]) -_LT_TAGDECL([], [prelink_cmds], [2], - [Commands necessary for linking programs (against libraries) with templates]) -_LT_TAGDECL([], [file_list_spec], [1], - [Specify filename containing input files]) -dnl FIXME: Not yet implemented -dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], -dnl [Compiler flag to generate thread safe objects]) -])# _LT_LINKER_SHLIBS - - -# _LT_LANG_C_CONFIG([TAG]) -# ------------------------ -# Ensure that the configuration variables for a C compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. -m4_defun([_LT_LANG_C_CONFIG], -[m4_require([_LT_DECL_EGREP])dnl -lt_save_CC="$CC" -AC_LANG_PUSH(C) - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}' - -_LT_TAG_COMPILER -# Save the default compiler, since it gets overwritten when the other -# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. -compiler_DEFAULT=$CC - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - LT_SYS_DLOPEN_SELF - _LT_CMD_STRIPLIB - - # Report which library types will actually be built - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_CONFIG($1) -fi -AC_LANG_POP -CC="$lt_save_CC" -])# _LT_LANG_C_CONFIG - - -# _LT_PROG_CXX -# ------------ -# Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++ -# compiler, we have our own version here. -m4_defun([_LT_PROG_CXX], -[ -pushdef([AC_MSG_ERROR], [_lt_caught_CXX_error=yes]) -AC_PROG_CXX -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_PROG_CXXCPP -else - _lt_caught_CXX_error=yes -fi -popdef([AC_MSG_ERROR]) -])# _LT_PROG_CXX - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([_LT_PROG_CXX], []) - - -# _LT_LANG_CXX_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a C++ compiler are suitably -# defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to `libtool'. -m4_defun([_LT_LANG_CXX_CONFIG], -[AC_REQUIRE([_LT_PROG_CXX])dnl -m4_require([_LT_FILEUTILS_DEFAULTS])dnl -m4_require([_LT_DECL_EGREP])dnl - -AC_LANG_PUSH(C++) -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(compiler_needs_object, $1)=no -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the CXX compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_caught_CXX_error" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="int some_variable = 0;" - - # Code to be used in simple link tests - lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC=$CC - lt_save_LD=$LD - lt_save_GCC=$GCC - GCC=$GXX - lt_save_with_gnu_ld=$with_gnu_ld - lt_save_path_LD=$lt_cv_path_LD - if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx - else - $as_unset lt_cv_prog_gnu_ld - fi - if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX - else - $as_unset lt_cv_path_LD - fi - test -z "${LDCXX+set}" || LD=$LDCXX - CC=${CXX-"c++"} - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - # We don't want -fno-exception when compiling C++ code, so set the - # no_builtin_flag separately - if test "$GXX" = yes; then - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - else - _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - fi - - if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - LT_PATH_LD - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | - $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - - else - GXX=no - with_gnu_ld=no - wlarc= - fi - - # PORTME: fill in a description of your system's C++ link characteristics - AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) - _LT_TAGVAR(ld_shlibs, $1)=yes - case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aix[[4-9]]*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_TAGVAR(archive_cmds, $1)='' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' - - if test "$GXX" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && - strings "$collect2name" | $GREP resolve_lib_name >/dev/null - then - # We have reworked collect2 - : - else - # We have old collect2 - _LT_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)= - fi - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to - # export. - _LT_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty - # executable. - _LT_SYS_MODULE_PATH_AIX - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an - # empty executable. - _LT_SYS_MODULE_PATH_AIX - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared - # libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32* | cegcc*) - # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_TAGVAR(always_export_symbols, $1)=no - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - darwin* | rhapsody*) - _LT_DARWIN_LINKER_FEATURES($1) - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - freebsd[[12]]*) - # C++ shared libraries reported to be fairly broken before - # switch to ELF - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - freebsd-elf*) - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - gnu*) - ;; - - hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - interix[[3-9]]*) - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' - fi - fi - _LT_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(inherit_rpath, $1)=yes - ;; - - linux* | k*bsd*-gnu | kopensolaris*-gnu) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc* | ecpc* ) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - case `$CC -V` in - *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*) - _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' - _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ - $RANLIB $oldlib' - _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - *) # Version 6 will use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - xl*) - # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - if test "x$supports_anon_versioning" = xyes; then - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' - _LT_TAGVAR(compiler_needs_object, $1)=yes - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - - lynxos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - m88k*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - - *nto* | *qnx*) - _LT_TAGVAR(ld_shlibs, $1)=yes - ;; - - openbsd2*) - # C++ shared libraries are fairly broken - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd=echo - else - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - case $host in - osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; - *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; - esac - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - case $host in - osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - ;; - *) - _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ - $RM $lib.exp' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - case $host in - osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - ;; - esac - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - psos*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine and reorder linker options, - # but understands `-z linker_flag'. - # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - ;; - esac - _LT_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' - if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' - fi - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - ;; - esac - fi - ;; - esac - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' - _LT_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - vxworks*) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - - *) - # FIXME: insert proper C++ library support - _LT_TAGVAR(ld_shlibs, $1)=no - ;; - esac - - AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - - _LT_TAGVAR(GCC, $1)="$GXX" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - CC=$lt_save_CC - LDCXX=$LD - LD=$lt_save_LD - GCC=$lt_save_GCC - with_gnu_ld=$lt_save_with_gnu_ld - lt_cv_path_LDCXX=$lt_cv_path_LD - lt_cv_path_LD=$lt_save_path_LD - lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld - lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test "$_lt_caught_CXX_error" != yes - -AC_LANG_POP -])# _LT_LANG_CXX_CONFIG - - -# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) -# --------------------------------- -# Figure out "hidden" library dependencies from verbose -# compiler output when linking a shared library. -# Parse the compiler output and extract the necessary -# objects, libraries and library flags. -m4_defun([_LT_SYS_HIDDEN_LIBDEPS], -[m4_require([_LT_FILEUTILS_DEFAULTS])dnl -# Dependencies to place before and after the object being linked: -_LT_TAGVAR(predep_objects, $1)= -_LT_TAGVAR(postdep_objects, $1)= -_LT_TAGVAR(predeps, $1)= -_LT_TAGVAR(postdeps, $1)= -_LT_TAGVAR(compiler_lib_search_path, $1)= - -dnl we can't use the lt_simple_compile_test_code here, -dnl because it contains code intended for an executable, -dnl not a library. It's possible we should let each -dnl tag define a new lt_????_link_test_code variable, -dnl but it's only used here... -m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF -int a; -void foo (void) { a = 0; } -_LT_EOF -], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF -class Foo -{ -public: - Foo (void) { a = 0; } -private: - int a; -}; -_LT_EOF -], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer*4 a - a=0 - return - end -_LT_EOF -], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF - subroutine foo - implicit none - integer a - a=0 - return - end -_LT_EOF -], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF -public class foo { - private int a; - public void bar (void) { - a = 0; - } -}; -_LT_EOF -]) -dnl Parse the compiler output and extract the necessary -dnl objects, libraries and library flags. -if AC_TRY_EVAL(ac_compile); then - # Parse the compiler output and extract the necessary - # objects, libraries and library flags. - - # Sentinel used to keep track of whether or not we are before - # the conftest object file. - pre_test_object_deps_done=no - - for p in `eval "$output_verbose_link_cmd"`; do - case $p in - - -L* | -R* | -l*) - # Some compilers place space between "-{L,R}" and the path. - # Remove the space. - if test $p = "-L" || - test $p = "-R"; then - prev=$p - continue - else - prev= - fi - - if test "$pre_test_object_deps_done" = no; then - case $p in - -L* | -R*) - # Internal compiler library paths should come after those - # provided the user. The postdeps already come after the - # user supplied libs so there is no need to process them. - if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" - else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" - fi - ;; - # The "-l" case would never come before the object being - # linked, so don't bother handling this case. - esac - else - if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)="${prev}${p}" - else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" - fi - fi - ;; - - *.$objext) - # This assumes that the test object file only shows up - # once in the compiler output. - if test "$p" = "conftest.$objext"; then - pre_test_object_deps_done=yes - continue - fi - - if test "$pre_test_object_deps_done" = no; then - if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)="$p" - else - _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" - fi - else - if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)="$p" - else - _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" - fi - fi - ;; - - *) ;; # Ignore the rest. - - esac - done - - # Clean up. - rm -f a.out a.exe -else - echo "libtool.m4: error: problem compiling $1 test program" -fi - -$RM -f confest.$objext - -# PORTME: override above test on systems where it is broken -m4_if([$1], [CXX], -[case $host_os in -interix[[3-9]]*) - # Interix 3.5 installs completely hosed .la files for C++, so rather than - # hack all around it, let's just trust "g++" to DTRT. - _LT_TAGVAR(predep_objects,$1)= - _LT_TAGVAR(postdep_objects,$1)= - _LT_TAGVAR(postdeps,$1)= - ;; - -linux*) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC*) - # The more standards-conforming stlport4 library is - # incompatible with the Cstd library. Avoid specifying - # it if it's in CXXFLAGS. Ignore libCrun as - # -library=stlport4 depends on it. - case " $CXX $CXXFLAGS " in - *" -library=stlport4 "*) - solaris_use_stlport4=yes - ;; - esac - - # Adding this requires a known-good setup of shared libraries for - # Sun compiler versions before 5.6, else PIC objects from an old - # archive will be linked into the output, leading to subtle bugs. - if test "$solaris_use_stlport4" != yes; then - _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac -]) - -case " $_LT_TAGVAR(postdeps, $1) " in -*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; -esac - _LT_TAGVAR(compiler_lib_search_dirs, $1)= -if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` -fi -_LT_TAGDECL([], [compiler_lib_search_dirs], [1], - [The directories searched by this compiler when creating a shared library]) -_LT_TAGDECL([], [predep_objects], [1], - [Dependencies to place before and after the objects being linked to - create a shared library]) -_LT_TAGDECL([], [postdep_objects], [1]) -_LT_TAGDECL([], [predeps], [1]) -_LT_TAGDECL([], [postdeps], [1]) -_LT_TAGDECL([], [compiler_lib_search_path], [1], - [The library search path used internally by the compiler when linking - a shared library]) -])# _LT_SYS_HIDDEN_LIBDEPS - - -# _LT_PROG_F77 -# ------------ -# Since AC_PROG_F77 is broken, in that it returns the empty string -# if there is no fortran compiler, we have our own version here. -m4_defun([_LT_PROG_F77], -[ -pushdef([AC_MSG_ERROR], [_lt_disable_F77=yes]) -AC_PROG_F77 -if test -z "$F77" || test "X$F77" = "Xno"; then - _lt_disable_F77=yes -fi -popdef([AC_MSG_ERROR]) -])# _LT_PROG_F77 - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([_LT_PROG_F77], []) - - -# _LT_LANG_F77_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for a Fortran 77 compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_F77_CONFIG], -[AC_REQUIRE([_LT_PROG_F77])dnl -AC_LANG_PUSH(Fortran 77) - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for f77 test sources. -ac_ext=f - -# Object file extension for compiled f77 test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the F77 compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_F77" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - CC=${F77-"f77"} - compiler=$CC - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - GCC=$G77 - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)="$G77" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC="$lt_save_CC" -fi # test "$_lt_disable_F77" != yes - -AC_LANG_POP -])# _LT_LANG_F77_CONFIG - - -# _LT_PROG_FC -# ----------- -# Since AC_PROG_FC is broken, in that it returns the empty string -# if there is no fortran compiler, we have our own version here. -m4_defun([_LT_PROG_FC], -[ -pushdef([AC_MSG_ERROR], [_lt_disable_FC=yes]) -AC_PROG_FC -if test -z "$FC" || test "X$FC" = "Xno"; then - _lt_disable_FC=yes -fi -popdef([AC_MSG_ERROR]) -])# _LT_PROG_FC - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([_LT_PROG_FC], []) - - -# _LT_LANG_FC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for a Fortran compiler are -# suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_FC_CONFIG], -[AC_REQUIRE([_LT_PROG_FC])dnl -AC_LANG_PUSH(Fortran) - -_LT_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_TAGVAR(allow_undefined_flag, $1)= -_LT_TAGVAR(always_export_symbols, $1)=no -_LT_TAGVAR(archive_expsym_cmds, $1)= -_LT_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_TAGVAR(hardcode_direct, $1)=no -_LT_TAGVAR(hardcode_direct_absolute, $1)=no -_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_TAGVAR(hardcode_libdir_separator, $1)= -_LT_TAGVAR(hardcode_minus_L, $1)=no -_LT_TAGVAR(hardcode_automatic, $1)=no -_LT_TAGVAR(inherit_rpath, $1)=no -_LT_TAGVAR(module_cmds, $1)= -_LT_TAGVAR(module_expsym_cmds, $1)= -_LT_TAGVAR(link_all_deplibs, $1)=unknown -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_TAGVAR(no_undefined_flag, $1)= -_LT_TAGVAR(whole_archive_flag_spec, $1)= -_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Source file extension for fc test sources. -ac_ext=${ac_fc_srcext-f} - -# Object file extension for compiled fc test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# No sense in running all these tests if we already determined that -# the FC compiler isn't working. Some variables (like enable_shared) -# are currently assumed to apply to all compilers on this platform, -# and will be corrupted by setting them based on a non-working compiler. -if test "$_lt_disable_FC" != yes; then - # Code to be used in simple compile tests - lt_simple_compile_test_code="\ - subroutine t - return - end -" - - # Code to be used in simple link tests - lt_simple_link_test_code="\ - program t - end -" - - # ltmain only uses $CC for tagged configurations so make sure $CC is set. - _LT_TAG_COMPILER - - # save warnings/boilerplate of simple test code - _LT_COMPILER_BOILERPLATE - _LT_LINKER_BOILERPLATE - - # Allow CC to be a program name with arguments. - lt_save_CC="$CC" - lt_save_GCC=$GCC - CC=${FC-"f95"} - compiler=$CC - GCC=$ac_cv_fc_compiler_gnu - - _LT_TAGVAR(compiler, $1)=$CC - _LT_CC_BASENAME([$compiler]) - - if test -n "$compiler"; then - AC_MSG_CHECKING([if libtool supports shared libraries]) - AC_MSG_RESULT([$can_build_shared]) - - AC_MSG_CHECKING([whether to build shared libraries]) - test "$can_build_shared" = "no" && enable_shared=no - - # On AIX, shared libraries and static libraries use the same namespace, and - # are all built from PIC. - case $host_os in - aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - aix[[4-9]]*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; - esac - AC_MSG_RESULT([$enable_shared]) - - AC_MSG_CHECKING([whether to build static libraries]) - # Make sure either enable_shared or enable_static is yes. - test "$enable_shared" = yes || enable_static=yes - AC_MSG_RESULT([$enable_static]) - - _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" - _LT_TAGVAR(LD, $1)="$LD" - - ## CAVEAT EMPTOR: - ## There is no encapsulation within the following macros, do not change - ## the running order or otherwise move them around unless you know exactly - ## what you are doing... - _LT_SYS_HIDDEN_LIBDEPS($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_SYS_DYNAMIC_LINKER($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) - fi # test -n "$compiler" - - GCC=$lt_save_GCC - CC="$lt_save_CC" -fi # test "$_lt_disable_FC" != yes - -AC_LANG_POP -])# _LT_LANG_FC_CONFIG - - -# _LT_LANG_GCJ_CONFIG([TAG]) -# -------------------------- -# Ensure that the configuration variables for the GNU Java Compiler compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_GCJ_CONFIG], -[AC_REQUIRE([LT_PROG_GCJ])dnl -AC_LANG_SAVE - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="class foo {}" - -# Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -lt_save_GCC=$GCC -GCC=yes -CC=${GCJ-"gcj"} -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)="$LD" -_LT_CC_BASENAME([$compiler]) - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -_LT_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -if test -n "$compiler"; then - _LT_COMPILER_NO_RTTI($1) - _LT_COMPILER_PIC($1) - _LT_COMPILER_C_O($1) - _LT_COMPILER_FILE_LOCKS($1) - _LT_LINKER_SHLIBS($1) - _LT_LINKER_HARDCODE_LIBPATH($1) - - _LT_CONFIG($1) -fi - -AC_LANG_RESTORE - -GCC=$lt_save_GCC -CC="$lt_save_CC" -])# _LT_LANG_GCJ_CONFIG - - -# _LT_LANG_RC_CONFIG([TAG]) -# ------------------------- -# Ensure that the configuration variables for the Windows resource compiler -# are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to `libtool'. -m4_defun([_LT_LANG_RC_CONFIG], -[AC_REQUIRE([LT_PROG_RC])dnl -AC_LANG_SAVE - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -_LT_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' - -# Code to be used in simple link tests -lt_simple_link_test_code="$lt_simple_compile_test_code" - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_TAG_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC="$CC" -lt_save_GCC=$GCC -GCC= -CC=${RC-"windres"} -compiler=$CC -_LT_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) -_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - -if test -n "$compiler"; then - : - _LT_CONFIG($1) -fi - -GCC=$lt_save_GCC -AC_LANG_RESTORE -CC="$lt_save_CC" -])# _LT_LANG_RC_CONFIG - - -# LT_PROG_GCJ -# ----------- -AC_DEFUN([LT_PROG_GCJ], -[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], - [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], - [AC_CHECK_TOOL(GCJ, gcj,) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS)])])[]dnl -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_GCJ], []) - - -# LT_PROG_RC -# ---------- -AC_DEFUN([LT_PROG_RC], -[AC_CHECK_TOOL(RC, windres,) -]) - -# Old name: -AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_RC], []) - - -# _LT_DECL_EGREP -# -------------- -# If we don't have a new enough Autoconf to choose the best grep -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_EGREP], -[AC_REQUIRE([AC_PROG_EGREP])dnl -AC_REQUIRE([AC_PROG_FGREP])dnl -test -z "$GREP" && GREP=grep -_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) -_LT_DECL([], [EGREP], [1], [An ERE matcher]) -_LT_DECL([], [FGREP], [1], [A literal string matcher]) -dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too -AC_SUBST([GREP]) -]) - - -# _LT_DECL_OBJDUMP -# -------------- -# If we don't have a new enough Autoconf to choose the best objdump -# available, choose the one first in the user's PATH. -m4_defun([_LT_DECL_OBJDUMP], -[AC_CHECK_TOOL(OBJDUMP, objdump, false) -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) -AC_SUBST([OBJDUMP]) -]) - - -# _LT_DECL_SED -# ------------ -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -m4_defun([_LT_DECL_SED], -[AC_PROG_SED -test -z "$SED" && SED=sed -Xsed="$SED -e 1s/^X//" -_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) -_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], - [Sed that helps us avoid accidentally triggering echo(1) options like -n]) -])# _LT_DECL_SED - -m4_ifndef([AC_PROG_SED], [ -############################################################ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_SED. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -############################################################ - -m4_defun([AC_PROG_SED], -[AC_MSG_CHECKING([for a sed that does not truncate output]) -AC_CACHE_VAL(lt_cv_path_SED, -[# Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -IFS=$as_save_IFS -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done -]) -SED=$lt_cv_path_SED -AC_SUBST([SED]) -AC_MSG_RESULT([$SED]) -])#AC_PROG_SED -])#m4_ifndef - -# Old name: -AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([LT_AC_PROG_SED], []) - - -# _LT_CHECK_SHELL_FEATURES -# ------------------------ -# Find out whether the shell is Bourne or XSI compatible, -# or has some other useful features. -m4_defun([_LT_CHECK_SHELL_FEATURES], -[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) -# Try some XSI features -xsi_shell=no -( _lt_dummy="a/b/c" - test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ - = c,a/b,, \ - && eval 'test $(( 1 + 1 )) -eq 2 \ - && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ - && xsi_shell=yes -AC_MSG_RESULT([$xsi_shell]) -_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) - -AC_MSG_CHECKING([whether the shell understands "+="]) -lt_shell_append=no -( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ - >/dev/null 2>&1 \ - && lt_shell_append=yes -AC_MSG_RESULT([$lt_shell_append]) -_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) - -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - lt_unset=unset -else - lt_unset=false -fi -_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl - -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - lt_SP2NL='tr \040 \012' - lt_NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - lt_SP2NL='tr \100 \n' - lt_NL2SP='tr \r\n \100\100' - ;; -esac -_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl -_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl -])# _LT_CHECK_SHELL_FEATURES - - -# _LT_PROG_XSI_SHELLFNS -# --------------------- -# Bourne and XSI compatible variants of some useful shell functions. -m4_defun([_LT_PROG_XSI_SHELLFNS], -[case $xsi_shell in - yes) - cat << \_LT_EOF >> "$cfgfile" - -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac -} - -# func_basename file -func_basename () -{ - func_basename_result="${1##*/}" -} - -# func_dirname_and_basename file append nondir_replacement -# perform func_basename and func_dirname in a single function -# call: -# dirname: Compute the dirname of FILE. If nonempty, -# add APPEND to the result, otherwise set result -# to NONDIR_REPLACEMENT. -# value returned in "$func_dirname_result" -# basename: Compute filename of FILE. -# value retuned in "$func_basename_result" -# Implementation must be kept synchronized with func_dirname -# and func_basename. For efficiency, we do not delegate to -# those functions but instead duplicate the functionality here. -func_dirname_and_basename () -{ - case ${1} in - */*) func_dirname_result="${1%/*}${2}" ;; - * ) func_dirname_result="${3}" ;; - esac - func_basename_result="${1##*/}" -} - -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -func_stripname () -{ - # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are - # positional parameters, so assign one to ordinary parameter first. - func_stripname_result=${3} - func_stripname_result=${func_stripname_result#"${1}"} - func_stripname_result=${func_stripname_result%"${2}"} -} - -# func_opt_split -func_opt_split () -{ - func_opt_split_opt=${1%%=*} - func_opt_split_arg=${1#*=} -} - -# func_lo2o object -func_lo2o () -{ - case ${1} in - *.lo) func_lo2o_result=${1%.lo}.${objext} ;; - *) func_lo2o_result=${1} ;; - esac -} - -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=${1%.*}.lo -} - -# func_arith arithmetic-term... -func_arith () -{ - func_arith_result=$(( $[*] )) -} - -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=${#1} -} - -_LT_EOF - ;; - *) # Bourne compatible functions. - cat << \_LT_EOF >> "$cfgfile" - -# func_dirname file append nondir_replacement -# Compute the dirname of FILE. If nonempty, add APPEND to the result, -# otherwise set result to NONDIR_REPLACEMENT. -func_dirname () -{ - # Extract subdirectory from the argument. - func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` - if test "X$func_dirname_result" = "X${1}"; then - func_dirname_result="${3}" - else - func_dirname_result="$func_dirname_result${2}" - fi -} - -# func_basename file -func_basename () -{ - func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` -} - -dnl func_dirname_and_basename -dnl A portable version of this function is already defined in general.m4sh -dnl so there is no need for it here. - -# func_stripname prefix suffix name -# strip PREFIX and SUFFIX off of NAME. -# PREFIX and SUFFIX must not contain globbing or regex special -# characters, hashes, percent signs, but SUFFIX may contain a leading -# dot (in which case that matches only a dot). -# func_strip_suffix prefix name -func_stripname () -{ - case ${2} in - .*) func_stripname_result=`$ECHO "X${3}" \ - | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; - *) func_stripname_result=`$ECHO "X${3}" \ - | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; - esac -} - -# sed scripts: -my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q' -my_sed_long_arg='1s/^-[[^=]]*=//' - -# func_opt_split -func_opt_split () -{ - func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` - func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` -} - -# func_lo2o object -func_lo2o () -{ - func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` -} - -# func_xform libobj-or-source -func_xform () -{ - func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'` -} - -# func_arith arithmetic-term... -func_arith () -{ - func_arith_result=`expr "$[@]"` -} - -# func_len string -# STRING may not start with a hyphen. -func_len () -{ - func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len` -} - -_LT_EOF -esac - -case $lt_shell_append in - yes) - cat << \_LT_EOF >> "$cfgfile" - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () -{ - eval "$[1]+=\$[2]" -} -_LT_EOF - ;; - *) - cat << \_LT_EOF >> "$cfgfile" - -# func_append var value -# Append VALUE to the end of shell variable VAR. -func_append () -{ - eval "$[1]=\$$[1]\$[2]" -} - -_LT_EOF - ;; - esac -]) diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/m4/lt~obsolete.m4 geany-plugins-1.24.1+dfsg/devhelp/m4/lt~obsolete.m4 --- geany-plugins-1.24.0+20140222+git/devhelp/m4/lt~obsolete.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/m4/lt~obsolete.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,92 +0,0 @@ -# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- -# -# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. -# Written by Scott James Remnant, 2004. -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 4 lt~obsolete.m4 - -# These exist entirely to fool aclocal when bootstrapping libtool. -# -# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) -# which have later been changed to m4_define as they aren't part of the -# exported API, or moved to Autoconf or Automake where they belong. -# -# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN -# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us -# using a macro with the same name in our local m4/libtool.m4 it'll -# pull the old libtool.m4 in (it doesn't see our shiny new m4_define -# and doesn't know about Autoconf macros at all.) -# -# So we provide this file, which has a silly filename so it's always -# included after everything else. This provides aclocal with the -# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything -# because those macros already exist, or will be overwritten later. -# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. -# -# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. -# Yes, that means every name once taken will need to remain here until -# we give up compatibility with versions before 1.7, at which point -# we need to keep only those names which we still refer to. - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) - -m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) -m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) -m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) -m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) -m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) -m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) -m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) -m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) -m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) -m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) -m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) -m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) -m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) -m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) -m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) -m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) -m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) -m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) -m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) -m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) -m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) -m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) -m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) -m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) -m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) -m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) -m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) -m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) -m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) -m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) -m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) -m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) -m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) -m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) -m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) -m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) -m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) -m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) -m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) -m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])]) -m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) -m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) -m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) -m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) -m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) -m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) -m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) -m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) -m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/m4/ltoptions.m4 geany-plugins-1.24.1+dfsg/devhelp/m4/ltoptions.m4 --- geany-plugins-1.24.0+20140222+git/devhelp/m4/ltoptions.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/m4/ltoptions.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,368 +0,0 @@ -# Helper functions for option handling. -*- Autoconf -*- -# -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. -# Written by Gary V. Vaughan, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 6 ltoptions.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) - - -# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) -# ------------------------------------------ -m4_define([_LT_MANGLE_OPTION], -[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) - - -# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) -# --------------------------------------- -# Set option OPTION-NAME for macro MACRO-NAME, and if there is a -# matching handler defined, dispatch to it. Other OPTION-NAMEs are -# saved as a flag. -m4_define([_LT_SET_OPTION], -[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl -m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), - _LT_MANGLE_DEFUN([$1], [$2]), - [m4_warning([Unknown $1 option `$2'])])[]dnl -]) - - -# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) -# ------------------------------------------------------------ -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -m4_define([_LT_IF_OPTION], -[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) - - -# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) -# ------------------------------------------------------- -# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME -# are set. -m4_define([_LT_UNLESS_OPTIONS], -[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), - [m4_define([$0_found])])])[]dnl -m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 -])[]dnl -]) - - -# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) -# ---------------------------------------- -# OPTION-LIST is a space-separated list of Libtool options associated -# with MACRO-NAME. If any OPTION has a matching handler declared with -# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about -# the unknown option and exit. -m4_defun([_LT_SET_OPTIONS], -[# Set options -m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), - [_LT_SET_OPTION([$1], _LT_Option)]) - -m4_if([$1],[LT_INIT],[ - dnl - dnl Simply set some default values (i.e off) if boolean options were not - dnl specified: - _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no - ]) - _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no - ]) - dnl - dnl If no reference was made to various pairs of opposing options, then - dnl we run the default mode handler for the pair. For example, if neither - dnl `shared' nor `disable-shared' was passed, we enable building of shared - dnl archives by default: - _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) - _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) - _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], - [_LT_ENABLE_FAST_INSTALL]) - ]) -])# _LT_SET_OPTIONS - - -## --------------------------------- ## -## Macros to handle LT_INIT options. ## -## --------------------------------- ## - -# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) -# ----------------------------------------- -m4_define([_LT_MANGLE_DEFUN], -[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) - - -# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) -# ----------------------------------------------- -m4_define([LT_OPTION_DEFINE], -[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl -])# LT_OPTION_DEFINE - - -# dlopen -# ------ -LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes -]) - -AU_DEFUN([AC_LIBTOOL_DLOPEN], -[_LT_SET_OPTION([LT_INIT], [dlopen]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `dlopen' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) - - -# win32-dll -# --------- -# Declare package support for building win32 dll's. -LT_OPTION_DEFINE([LT_INIT], [win32-dll], -[enable_win32_dll=yes - -case $host in -*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; -esac - -test -z "$AS" && AS=as -_LT_DECL([], [AS], [0], [Assembler program])dnl - -test -z "$DLLTOOL" && DLLTOOL=dlltool -_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl - -test -z "$OBJDUMP" && OBJDUMP=objdump -_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl -])# win32-dll - -AU_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -_LT_SET_OPTION([LT_INIT], [win32-dll]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `win32-dll' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) - - -# _LT_ENABLE_SHARED([DEFAULT]) -# ---------------------------- -# implement the --enable-shared flag, and supports the `shared' and -# `disable-shared' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_SHARED], -[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([shared], - [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) - - _LT_DECL([build_libtool_libs], [enable_shared], [0], - [Whether or not to build shared libraries]) -])# _LT_ENABLE_SHARED - -LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) -]) - -AC_DEFUN([AC_DISABLE_SHARED], -[_LT_SET_OPTION([LT_INIT], [disable-shared]) -]) - -AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_SHARED], []) -dnl AC_DEFUN([AM_DISABLE_SHARED], []) - - - -# _LT_ENABLE_STATIC([DEFAULT]) -# ---------------------------- -# implement the --enable-static flag, and support the `static' and -# `disable-static' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_STATIC], -[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([static], - [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_static=]_LT_ENABLE_STATIC_DEFAULT) - - _LT_DECL([build_old_libs], [enable_static], [0], - [Whether or not to build static libraries]) -])# _LT_ENABLE_STATIC - -LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) - -# Old names: -AC_DEFUN([AC_ENABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) -]) - -AC_DEFUN([AC_DISABLE_STATIC], -[_LT_SET_OPTION([LT_INIT], [disable-static]) -]) - -AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AM_ENABLE_STATIC], []) -dnl AC_DEFUN([AM_DISABLE_STATIC], []) - - - -# _LT_ENABLE_FAST_INSTALL([DEFAULT]) -# ---------------------------------- -# implement the --enable-fast-install flag, and support the `fast-install' -# and `disable-fast-install' LT_INIT options. -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -m4_define([_LT_ENABLE_FAST_INSTALL], -[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl -AC_ARG_ENABLE([fast-install], - [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) - -_LT_DECL([fast_install], [enable_fast_install], [0], - [Whether or not to optimize for fast installation])dnl -])# _LT_ENABLE_FAST_INSTALL - -LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) -LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) - -# Old names: -AU_DEFUN([AC_ENABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `fast-install' option into LT_INIT's first parameter.]) -]) - -AU_DEFUN([AC_DISABLE_FAST_INSTALL], -[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you put -the `disable-fast-install' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) -dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) - - -# _LT_WITH_PIC([MODE]) -# -------------------- -# implement the --with-pic flag, and support the `pic-only' and `no-pic' -# LT_INIT options. -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. -m4_define([_LT_WITH_PIC], -[AC_ARG_WITH([pic], - [AS_HELP_STRING([--with-pic], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], - [pic_mode=default]) - -test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) - -_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl -])# _LT_WITH_PIC - -LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) -LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) - -# Old name: -AU_DEFUN([AC_LIBTOOL_PICMODE], -[_LT_SET_OPTION([LT_INIT], [pic-only]) -AC_DIAGNOSE([obsolete], -[$0: Remove this warning and the call to _LT_SET_OPTION when you -put the `pic-only' option into LT_INIT's first parameter.]) -]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) - -## ----------------- ## -## LTDL_INIT Options ## -## ----------------- ## - -m4_define([_LTDL_MODE], []) -LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], - [m4_define([_LTDL_MODE], [nonrecursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [recursive], - [m4_define([_LTDL_MODE], [recursive])]) -LT_OPTION_DEFINE([LTDL_INIT], [subproject], - [m4_define([_LTDL_MODE], [subproject])]) - -m4_define([_LTDL_TYPE], []) -LT_OPTION_DEFINE([LTDL_INIT], [installable], - [m4_define([_LTDL_TYPE], [installable])]) -LT_OPTION_DEFINE([LTDL_INIT], [convenience], - [m4_define([_LTDL_TYPE], [convenience])]) diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/m4/ltsugar.m4 geany-plugins-1.24.1+dfsg/devhelp/m4/ltsugar.m4 --- geany-plugins-1.24.0+20140222+git/devhelp/m4/ltsugar.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/m4/ltsugar.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,123 +0,0 @@ -# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- -# -# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. -# Written by Gary V. Vaughan, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 6 ltsugar.m4 - -# This is to help aclocal find these macros, as it can't see m4_define. -AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) - - -# lt_join(SEP, ARG1, [ARG2...]) -# ----------------------------- -# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their -# associated separator. -# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier -# versions in m4sugar had bugs. -m4_define([lt_join], -[m4_if([$#], [1], [], - [$#], [2], [[$2]], - [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) -m4_define([_lt_join], -[m4_if([$#$2], [2], [], - [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) - - -# lt_car(LIST) -# lt_cdr(LIST) -# ------------ -# Manipulate m4 lists. -# These macros are necessary as long as will still need to support -# Autoconf-2.59 which quotes differently. -m4_define([lt_car], [[$1]]) -m4_define([lt_cdr], -[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], - [$#], 1, [], - [m4_dquote(m4_shift($@))])]) -m4_define([lt_unquote], $1) - - -# lt_append(MACRO-NAME, STRING, [SEPARATOR]) -# ------------------------------------------ -# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. -# Note that neither SEPARATOR nor STRING are expanded; they are appended -# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). -# No SEPARATOR is output if MACRO-NAME was previously undefined (different -# than defined and empty). -# -# This macro is needed until we can rely on Autoconf 2.62, since earlier -# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. -m4_define([lt_append], -[m4_define([$1], - m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) - - - -# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) -# ---------------------------------------------------------- -# Produce a SEP delimited list of all paired combinations of elements of -# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list -# has the form PREFIXmINFIXSUFFIXn. -# Needed until we can rely on m4_combine added in Autoconf 2.62. -m4_define([lt_combine], -[m4_if(m4_eval([$# > 3]), [1], - [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl -[[m4_foreach([_Lt_prefix], [$2], - [m4_foreach([_Lt_suffix], - ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, - [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) - - -# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) -# ----------------------------------------------------------------------- -# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited -# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. -m4_define([lt_if_append_uniq], -[m4_ifdef([$1], - [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], - [lt_append([$1], [$2], [$3])$4], - [$5])], - [lt_append([$1], [$2], [$3])$4])]) - - -# lt_dict_add(DICT, KEY, VALUE) -# ----------------------------- -m4_define([lt_dict_add], -[m4_define([$1($2)], [$3])]) - - -# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) -# -------------------------------------------- -m4_define([lt_dict_add_subkey], -[m4_define([$1($2:$3)], [$4])]) - - -# lt_dict_fetch(DICT, KEY, [SUBKEY]) -# ---------------------------------- -m4_define([lt_dict_fetch], -[m4_ifval([$3], - m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), - m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) - - -# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) -# ----------------------------------------------------------------- -m4_define([lt_if_dict_fetch], -[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], - [$5], - [$6])]) - - -# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) -# -------------------------------------------------------------- -m4_define([lt_dict_filter], -[m4_if([$5], [], [], - [lt_join(m4_quote(m4_default([$4], [[, ]])), - lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), - [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl -]) diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/m4/ltversion.m4 geany-plugins-1.24.1+dfsg/devhelp/m4/ltversion.m4 --- geany-plugins-1.24.0+20140222+git/devhelp/m4/ltversion.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/m4/ltversion.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -# ltversion.m4 -- version numbers -*- Autoconf -*- -# -# Copyright (C) 2004 Free Software Foundation, Inc. -# Written by Scott James Remnant, 2004 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# Generated from ltversion.in. - -# serial 3017 ltversion.m4 -# This file is part of GNU Libtool - -m4_define([LT_PACKAGE_VERSION], [2.2.6b]) -m4_define([LT_PACKAGE_REVISION], [1.3017]) - -AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.2.6b' -macro_revision='1.3017' -_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) -_LT_DECL(, macro_revision, 0) -]) diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/Makefile.in geany-plugins-1.24.1+dfsg/devhelp/Makefile.in --- geany-plugins-1.24.0+20140222+git/devhelp/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = devhelp +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = devhelp src data +plugin = devhelp +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign devhelp/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign devhelp/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/devhelp/src/Makefile.in geany-plugins-1.24.1+dfsg/devhelp/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/devhelp/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/devhelp/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,853 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp $(noinst_HEADERS) +subdir = devhelp/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +devhelp_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(top_builddir)/devhelp/devhelp/libdevhelp-2.la +am_devhelp_la_OBJECTS = devhelp_la-dhp-manpages.lo \ + devhelp_la-dhp-object.lo devhelp_la-dhp-plugin.lo +devhelp_la_OBJECTS = $(am_devhelp_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +devhelp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(devhelp_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(devhelp_la_SOURCES) +DIST_SOURCES = $(devhelp_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = devhelp +geanyplugins_LTLIBRARIES = devhelp.la +devhelp_la_SOURCES = \ + dhp-manpages.c \ + dhp-object.c \ + dhp-plugin.c + +EXTRA_DIST = \ + dhp-settings.c + +noinst_HEADERS = \ + dhp.h \ + dhp-plugin.h + +devhelp_la_CFLAGS = \ + $(AM_CFLAGS) \ + -I$(top_srcdir)/devhelp \ + $(DEVHELP_CFLAGS) \ + -DDHPLUG_DATA_DIR=\"$(plugindatadir)\" \ + -DHAVE_BOOK_MANAGER=1 + +devhelp_la_LIBADD = \ + $(DEVHELP_LIBS) \ + $(top_builddir)/devhelp/devhelp/libdevhelp-2.la + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign devhelp/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign devhelp/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +devhelp.la: $(devhelp_la_OBJECTS) $(devhelp_la_DEPENDENCIES) $(EXTRA_devhelp_la_DEPENDENCIES) + $(AM_V_CCLD)$(devhelp_la_LINK) -rpath $(geanypluginsdir) $(devhelp_la_OBJECTS) $(devhelp_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/devhelp_la-dhp-manpages.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/devhelp_la-dhp-object.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/devhelp_la-dhp-plugin.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +devhelp_la-dhp-manpages.lo: dhp-manpages.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -MT devhelp_la-dhp-manpages.lo -MD -MP -MF $(DEPDIR)/devhelp_la-dhp-manpages.Tpo -c -o devhelp_la-dhp-manpages.lo `test -f 'dhp-manpages.c' || echo '$(srcdir)/'`dhp-manpages.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/devhelp_la-dhp-manpages.Tpo $(DEPDIR)/devhelp_la-dhp-manpages.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dhp-manpages.c' object='devhelp_la-dhp-manpages.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -c -o devhelp_la-dhp-manpages.lo `test -f 'dhp-manpages.c' || echo '$(srcdir)/'`dhp-manpages.c + +devhelp_la-dhp-object.lo: dhp-object.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -MT devhelp_la-dhp-object.lo -MD -MP -MF $(DEPDIR)/devhelp_la-dhp-object.Tpo -c -o devhelp_la-dhp-object.lo `test -f 'dhp-object.c' || echo '$(srcdir)/'`dhp-object.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/devhelp_la-dhp-object.Tpo $(DEPDIR)/devhelp_la-dhp-object.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dhp-object.c' object='devhelp_la-dhp-object.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -c -o devhelp_la-dhp-object.lo `test -f 'dhp-object.c' || echo '$(srcdir)/'`dhp-object.c + +devhelp_la-dhp-plugin.lo: dhp-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -MT devhelp_la-dhp-plugin.lo -MD -MP -MF $(DEPDIR)/devhelp_la-dhp-plugin.Tpo -c -o devhelp_la-dhp-plugin.lo `test -f 'dhp-plugin.c' || echo '$(srcdir)/'`dhp-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/devhelp_la-dhp-plugin.Tpo $(DEPDIR)/devhelp_la-dhp-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dhp-plugin.c' object='devhelp_la-dhp-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(devhelp_la_CFLAGS) $(CFLAGS) -c -o devhelp_la-dhp-plugin.lo `test -f 'dhp-plugin.c' || echo '$(srcdir)/'`dhp-plugin.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanydoc/Makefile.in geany-plugins-1.24.1+dfsg/geanydoc/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanydoc/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanydoc/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README THANKS +subdir = geanydoc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src tests +plugin = geanydoc +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanydoc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanydoc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanydoc/src/config.c geany-plugins-1.24.1+dfsg/geanydoc/src/config.c --- geany-plugins-1.24.0+20140222+git/geanydoc/src/config.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanydoc/src/config.c 2014-04-12 14:28:39.000000000 +0000 @@ -111,12 +111,12 @@ gchar *key = g_strdup_printf("command%d", cmd_num); ret = utils_get_setting_string(config, lang, key, ""); g_free(key); - if (!NZV(ret)) + if (EMPTY(ret)) return ret; key = g_strdup_printf("command%d", cmd_num + 1); tmp = utils_get_setting_string(config, lang, key, ""); g_free(key); - if (NZV(tmp)) + if (! EMPTY(tmp)) *intern = TRUE; else *intern = utils_get_setting_boolean(config, lang, "internal", FALSE); diff -Nru geany-plugins-1.24.0+20140222+git/geanydoc/src/geanydoc.c geany-plugins-1.24.1+dfsg/geanydoc/src/geanydoc.c --- geany-plugins-1.24.0+20140222+git/geanydoc/src/geanydoc.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanydoc/src/geanydoc.c 2014-04-12 14:28:39.000000000 +0000 @@ -185,7 +185,7 @@ ftype = doc->file_type->name; command = config_get_command(ftype, cmd_num, &intern); - if (!NZV(command)) + if (EMPTY(command)) { g_free(command); return; @@ -201,7 +201,7 @@ if (intern) { g_spawn_command_line_sync(command, &tmp, NULL, NULL, NULL); - if (NZV(tmp)) + if (! EMPTY(tmp)) { show_output(tmp, "*DOC*", NULL, doc->file_type->id); } @@ -271,11 +271,11 @@ if (from != NULL) { - if (NZV(cmd0_txt)) + if (! EMPTY(cmd0_txt)) g_key_file_set_string(config, from, "command0", cmd0_txt); else g_key_file_remove_key(config, from, "command0", NULL); - if (NZV(cmd1_txt)) + if (! EMPTY(cmd1_txt)) g_key_file_set_string(config, from, "command1", cmd1_txt); else g_key_file_remove_key(config, from, "command1", NULL); diff -Nru geany-plugins-1.24.0+20140222+git/geanydoc/src/Makefile.in geany-plugins-1.24.1+dfsg/geanydoc/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanydoc/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanydoc/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanydoc/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanydoc_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanydoc_la_OBJECTS = geanydoc_la-config.lo geanydoc_la-geanydoc.lo +geanydoc_la_OBJECTS = $(am_geanydoc_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanydoc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanydoc_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanydoc_la_SOURCES) +DIST_SOURCES = $(geanydoc_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanydoc.la +geanydoc_la_SOURCES = \ + config.c \ + geanydoc.c \ + geanydoc.h + +geanydoc_la_CFLAGS = $(AM_CFLAGS) +geanydoc_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanydoc/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanydoc/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanydoc.la: $(geanydoc_la_OBJECTS) $(geanydoc_la_DEPENDENCIES) $(EXTRA_geanydoc_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanydoc_la_LINK) -rpath $(geanypluginsdir) $(geanydoc_la_OBJECTS) $(geanydoc_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanydoc_la-config.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanydoc_la-geanydoc.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanydoc_la-config.lo: config.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanydoc_la_CFLAGS) $(CFLAGS) -MT geanydoc_la-config.lo -MD -MP -MF $(DEPDIR)/geanydoc_la-config.Tpo -c -o geanydoc_la-config.lo `test -f 'config.c' || echo '$(srcdir)/'`config.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanydoc_la-config.Tpo $(DEPDIR)/geanydoc_la-config.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='config.c' object='geanydoc_la-config.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanydoc_la_CFLAGS) $(CFLAGS) -c -o geanydoc_la-config.lo `test -f 'config.c' || echo '$(srcdir)/'`config.c + +geanydoc_la-geanydoc.lo: geanydoc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanydoc_la_CFLAGS) $(CFLAGS) -MT geanydoc_la-geanydoc.lo -MD -MP -MF $(DEPDIR)/geanydoc_la-geanydoc.Tpo -c -o geanydoc_la-geanydoc.lo `test -f 'geanydoc.c' || echo '$(srcdir)/'`geanydoc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanydoc_la-geanydoc.Tpo $(DEPDIR)/geanydoc_la-geanydoc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanydoc.c' object='geanydoc_la-geanydoc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanydoc_la_CFLAGS) $(CFLAGS) -c -o geanydoc_la-geanydoc.lo `test -f 'geanydoc.c' || echo '$(srcdir)/'`geanydoc.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanydoc/tests/Makefile.in geany-plugins-1.24.1+dfsg/geanydoc/tests/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanydoc/tests/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanydoc/tests/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,1125 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver +@UNITTESTS_TRUE@TESTS = unittests$(EXEEXT) +@UNITTESTS_TRUE@noinst_PROGRAMS = unittests$(EXEEXT) +subdir = geanydoc/tests +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am__unittests_SOURCES_DIST = unittests.c +@UNITTESTS_TRUE@am_unittests_OBJECTS = unittests-unittests.$(OBJEXT) +unittests_OBJECTS = $(am_unittests_OBJECTS) +am__DEPENDENCIES_1 = +@UNITTESTS_TRUE@unittests_DEPENDENCIES = $(am__DEPENDENCIES_1) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +unittests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(unittests_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(unittests_SOURCES) +DIST_SOURCES = $(am__unittests_SOURCES_DIST) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = @EXEEXT@ .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +@UNITTESTS_TRUE@AM_CFLAGS = \ +@UNITTESTS_TRUE@ -DLOCALEDIR=\""$(LOCALEDIR)"\" \ +@UNITTESTS_TRUE@ -DPREFIX=\""$(prefix)"\" \ +@UNITTESTS_TRUE@ -DDOCDIR=\""$(docdir)"\" \ +@UNITTESTS_TRUE@ -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ +@UNITTESTS_TRUE@ -DPKGDATADIR=\""$(pkgdatadir)"\" \ +@UNITTESTS_TRUE@ -DLIBDIR=\""$(libdir)"\" \ +@UNITTESTS_TRUE@ -DPKGLIBDIR=\""$(pkglibdir)"\" \ +@UNITTESTS_TRUE@ $(GEANY_CFLAGS) \ +@UNITTESTS_TRUE@ $(GP_CFLAGS) + +@UNITTESTS_TRUE@AM_LDFLAGS = -module -avoid-version +@UNITTESTS_TRUE@COMMONLIBS = \ +@UNITTESTS_TRUE@ $(GEANY_LIBS) \ +@UNITTESTS_TRUE@ $(INTLLIBS) + +@UNITTESTS_TRUE@unittests_SOURCES = unittests.c +@UNITTESTS_TRUE@unittests_CFLAGS = $(GEANY_CFLAGS) -DUNITTESTS +@UNITTESTS_TRUE@unittests_LDADD = @GEANY_LIBS@ $(INTLLIBS) @CHECK_LIBS@ +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanydoc/tests/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanydoc/tests/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +unittests$(EXEEXT): $(unittests_OBJECTS) $(unittests_DEPENDENCIES) $(EXTRA_unittests_DEPENDENCIES) + @rm -f unittests$(EXEEXT) + $(AM_V_CCLD)$(unittests_LINK) $(unittests_OBJECTS) $(unittests_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittests-unittests.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +unittests-unittests.o: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.o -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c + +unittests-unittests.obj: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.obj -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + else \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +unittests.log: unittests$(EXEEXT) + @p='unittests$(EXEEXT)'; \ + b='unittests'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +@am__EXEEXT_TRUE@.test$(EXEEXT).log: +@am__EXEEXT_TRUE@ @p='$<'; \ +@am__EXEEXT_TRUE@ $(am__set_b); \ +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \ + clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyextrasel/Makefile.in geany-plugins-1.24.1+dfsg/geanyextrasel/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyextrasel/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyextrasel/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = geanyextrasel +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanyextrasel +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyextrasel/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyextrasel/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyextrasel/src/Makefile.in geany-plugins-1.24.1+dfsg/geanyextrasel/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyextrasel/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyextrasel/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanyextrasel/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanyextrasel_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanyextrasel_la_OBJECTS = extrasel.lo +geanyextrasel_la_OBJECTS = $(am_geanyextrasel_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanyextrasel_la_SOURCES) +DIST_SOURCES = $(geanyextrasel_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanyextrasel.la +geanyextrasel_la_SOURCES = extrasel.c +geanyextrasel_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyextrasel/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyextrasel/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanyextrasel.la: $(geanyextrasel_la_OBJECTS) $(geanyextrasel_la_DEPENDENCIES) $(EXTRA_geanyextrasel_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanyextrasel_la_OBJECTS) $(geanyextrasel_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extrasel.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/data/filetypes/Makefile.in geany-plugins-1.24.1+dfsg/geanygendoc/data/filetypes/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanygendoc/data/filetypes/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/data/filetypes/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,634 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_filetypes_DATA) +subdir = geanygendoc/data/filetypes +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(filetypesdir)" +DATA = $(dist_filetypes_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanygendoc +filetypesdir = $(plugindatadir)/filetypes +dist_filetypes_DATA = \ + c.conf \ + vala.conf + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanygendoc/data/filetypes/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanygendoc/data/filetypes/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_filetypesDATA: $(dist_filetypes_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_filetypes_DATA)'; test -n "$(filetypesdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(filetypesdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(filetypesdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(filetypesdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(filetypesdir)" || exit $$?; \ + done + +uninstall-dist_filetypesDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_filetypes_DATA)'; test -n "$(filetypesdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(filetypesdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(filetypesdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_filetypesDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_filetypesDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_filetypesDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_filetypesDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/data/filetypes/php.conf geany-plugins-1.24.1+dfsg/geanygendoc/data/filetypes/php.conf --- geany-plugins-1.24.0+20140222+git/geanygendoc/data/filetypes/php.conf 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/data/filetypes/php.conf 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ - -settings = { - # [type ][&]$arg[default value, ...](,|EOL) - # - # Detailed expression: - # - # (?: - # matches () not to try to extract an argument for it - # ^\\([ \t]*\\)$ - # | - # optional type - # (?:(?:[a-zA-Z0-9_]+[ \t]+)* - # optional pass-by-ref - # (?:&[ \t]*)? - # the argument name itself (only capture) - # (\\$[a-zA-Z0-9_.]+) - # permissive match for post-arg (e.g. default value) - # [^,]* - # , or EOL - # (?:,|$) - # ) - # - # note that \ are escaped, so to have a \ you need to put \\ - match_function_arguments = "(?:^\\([ \t]*\\)$|(?:[a-zA-Z0-9_]+[ \t]+)*(?:&[ \t]*)?(\\$[a-zA-Z0-9_.]+)[^,]*(?:,|$))"; - - # global env - global_environment = "doxygen_prefix = \"@\"; - write_since = 0;"; -} - -doctypes = { - doxygen = { - function.template = "/**\n * {doxygen_prefix}brief {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; - macro.template = "/**\n * {doxygen_prefix}brief {cursor}\n{for a in argument_list} * {doxygen_prefix}param {a} \n{end}{if returns} * {doxygen_prefix}returns \n{end}{if write_since} * {doxygen_prefix}since \n{end} * \n * \n */\n"; - struct.member = { - template = " /**< {cursor} */"; - position = AFTER; - } - struct = { - template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - auto_doc_children = True; - } - union.member = { - template = " /**< {cursor} */"; - position = AFTER; - } - union = { - template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - auto_doc_children = True; - } - enum = { - template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - auto_doc_children = True; - } - enum.enumval = { - template = " /**< {cursor} */"; - position = AFTER; - } - typedef.template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - define.template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - class.template = "/**\n * {doxygen_prefix}brief {cursor}\n * \n * \n */\n"; - - # Completely ignore variables since they are reported even inside a - # function, which is more annoying than anything else. - # Unfortunately GGD don't know (yet?) the parent of a variable with PHP, - # so we can't restrict it to only function.variable - variable.policy = PASS; - } -} - diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/data/Makefile.in geany-plugins-1.24.1+dfsg/geanygendoc/data/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanygendoc/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/data/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,747 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = geanygendoc/data +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = filetypes +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanygendoc/data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanygendoc/data/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/docs/Makefile.in geany-plugins-1.24.1+dfsg/geanygendoc/docs/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanygendoc/docs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/docs/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,669 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) \ + $(dist_pluginhtmldoc_DATA) +subdir = geanygendoc/docs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" \ + "$(DESTDIR)$(pluginhtmldocdir)" +DATA = $(dist_plugindoc_DATA) $(dist_pluginhtmldoc_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanygendoc +pluginhtmldocdir = $(plugindocdir)/html +EXTRA_DIST = \ + manual.css \ + html4css1.css + +dist_plugindoc_DATA = \ + manual.rst + +dist_pluginhtmldoc_DATA = \ + manual.html + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanygendoc/docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanygendoc/docs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) +install-dist_pluginhtmldocDATA: $(dist_pluginhtmldoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_pluginhtmldoc_DATA)'; test -n "$(pluginhtmldocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pluginhtmldocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pluginhtmldocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pluginhtmldocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pluginhtmldocdir)" || exit $$?; \ + done + +uninstall-dist_pluginhtmldocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_pluginhtmldoc_DATA)'; test -n "$(pluginhtmldocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pluginhtmldocdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindocdir)" "$(DESTDIR)$(pluginhtmldocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindocDATA \ + install-dist_pluginhtmldocDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA \ + uninstall-dist_pluginhtmldocDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dist_pluginhtmldocDATA \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA uninstall-dist_pluginhtmldocDATA + + +@BUILD_RST_TRUE@manual.html: manual.rst manual.css html4css1.css +@BUILD_RST_TRUE@ $(AM_V_GEN) $(RST2HTML) -d --strict --stylesheet-path html4css1.css,manual.css $< $@ + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/HACKING geany-plugins-1.24.1+dfsg/geanygendoc/HACKING --- geany-plugins-1.24.0+20140222+git/geanygendoc/HACKING 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/HACKING 1970-01-01 00:00:00.000000000 +0000 @@ -1,175 +0,0 @@ -====================== -Hacking on GeanyGenDoc -====================== - -.. contents:: - - -Introduction -============ - -This file contains some information that may be useful to start hacking on -GeanyGenDoc; but there might be some things that are missing. If you have a -question for which you can't find the answer, feel free to ask a developer -(me in fact, I'm currently the only one). - - -Directory structure -=================== - -src/ - Contains all the source code of GeanyGenDoc, see below for details. - -docs/ - Contains the manual, this is the place to go to improve the end-user - documentation. - -data/ - Contains the various data files of GeanyGenDoc. - - filetypes/ - Contains the file type definitions. See the end-user documentation for - details on the syntax of these files. - - -Code organisation -================= - -All source files starts with the `ggd` prefix that, obviously, stands for -GeanyGenDoc. - -ggd-plugin.{c,h} - This is the actual plugin, the part that interacts with Geany directly: - it implements all the symbols that a Geany plusing must export; it takes care - of setting everything necessary up, and so on. Think of it as the plugin's - `main()`. - - This is the only part of the plugin that is allowed to export symbols (see - below). - -ggd.{c,h} - This is the higher-level API of the plugin. It is meant to be the primary API - to use to build and insert documentation basis on a Geany document. - -ggd-doc-setting.{c,h}, ggd-doc-type.{c,h}, ggd-file-type.{c,h} - The main three data types of GeanyGenDoc, and their manipulation functions - -ggd-file-type-loader.{c,h} - File type loader - -ggd-file-type-manager.{c,h} - High-level loading and management of file types, also acting as a cache - -ggd-options.{c,h} - Configuration manager - -ggd-tag-utils.{c,h} - Geany's tagmanager management and utility functions. Almost all acces to tags - is done through this module - -ggd-macros.h, ggd-utils.{c,h} - Various utility functions and macros - -ggd-widget-* - These files are custom GTK+ widgets used by the UI part of the plugin. - - ggd-widget-doctype-selector.{c,h} - The documentation type selector and manager widget - - ggd-widget-frame.{c,h} - A custom frame widget - - -Coding style -============ - -The first rule is: look at the code and follow the style. - -To give further consideration, the style is close to 1TBS-K&R with some -GNU-style things. Here's an exemple, followed by notes about it: - -:: - - /** - * a_function: - * @arg1: something - * @n: another thing - * - * This is the documentation of the function. Write documentation for each and - * every non-local function. Local function can has a full documentation but - * in a normal comment (starting with /* and not /**), or can either have only - * a few line describing it or no comment at all if it is enough explicit. - * - * Returns: A number, obviously... but what does it mean? - */ - int - a_function (const char *arg1, - int n) - { - int a; - const char *b; - - a = foo (); - if (a == n) { - b = arg1; - } else { - int tmp; - - b = stuff (arg1, n, A_LONG_CONSTANT, , - ANOTHER_LONG_CONSTANT_THAT_GOES_BEYOND_80TH_COLUMN); - if (got_it (&tmp)) { - a = tmp; - } else { - a = n; - } - } - if (! variable || (A_THIRD_WAY_TOO_LONG_CONSTANT && ITS_ME_AGAIN && - PLEASE_STOP_THIS)) { - /* you may want to explain why you do this operation, so put a comment - * just before it. it is also good to document magic numbers such as this - * "8" that comes from nowhere. */ - a = n << 8; - } - - return a; - } - -You can see that (in random order): - -* The indentation consists of 2 spaces per level -- no tabs; -* The return type is on its own line (as in GNU style); -* There is a space between function name and argumen list; -* Variables and arguments declarations are aligned, one per line. -* If the arguments of a function call, a macro, an expression, etc., would - overflow the 80th column rule, it is split on two (or more, as needed) lines, - aligned on the corresponding parenthesis; -* There is blank lines at two places: right after some variable declarations, - and right before the return statement; -* There is no parenthesis around the return statement; -* Put a space between the unary operator `!` and its operand; -* There is a space around binary operators; -* Use const everywhere it makes sense, almost like a sementic annotation; -* There is braces around every block (1TBS style); -* Constants are uppercase; -* So are macros that may have side effects; -* Decalre local variables at the scope they belongs; -* Document non-local functions with a Gtk-Doc documentation comment -- you know - what? GeanyGenDoc can help! -* You don't see it in this example, but give pointful names to functions, - variables, marcos, etc. - - -API, ABI, exported symbols, stuff like that -------------------------------------------- - -Always use static functions if they should have file scope; and prefix all -non-local symbol with the `ggd` prefix (with the appropriate case). - -Besides this, don't pollute the list of exported symbols of the plugin. Even if -all symbols that might be exported by accident are prefixed, exporting them has -no point (this isn't a library) and only bloates the output ELF (or whatever) -binary. - -To prevent this, all "public" (read: that is used outside its file/module) -should have a protorype that is protected with `GGD_BEGIN_PLUGIN_API` -and `GGD_END_PLUGIN_API` (see gdd-macros.h for details). diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/Makefile.in geany-plugins-1.24.1+dfsg/geanygendoc/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanygendoc/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README TODO +subdir = geanygendoc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src docs data +plugin = geanygendoc +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanygendoc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanygendoc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanygendoc/src/Makefile.in geany-plugins-1.24.1+dfsg/geanygendoc/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanygendoc/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanygendoc/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,949 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp $(noinst_HEADERS) +subdir = geanygendoc/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanygendoc_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_geanygendoc_la_OBJECTS = geanygendoc_la-ggd.lo \ + geanygendoc_la-ggd-doc-setting.lo \ + geanygendoc_la-ggd-doc-type.lo geanygendoc_la-ggd-file-type.lo \ + geanygendoc_la-ggd-file-type-loader.lo \ + geanygendoc_la-ggd-file-type-manager.lo \ + geanygendoc_la-ggd-tag-utils.lo geanygendoc_la-ggd-options.lo \ + geanygendoc_la-ggd-plugin.lo geanygendoc_la-ggd-utils.lo \ + geanygendoc_la-ggd-widget-frame.lo \ + geanygendoc_la-ggd-widget-doctype-selector.lo +geanygendoc_la_OBJECTS = $(am_geanygendoc_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanygendoc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(geanygendoc_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \ + $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanygendoc_la_SOURCES) +DIST_SOURCES = $(geanygendoc_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = geanygendoc +geanyplugins_LTLIBRARIES = geanygendoc.la +geanygendoc_la_SOURCES = \ + ggd.c \ + ggd-doc-setting.c \ + ggd-doc-type.c \ + ggd-file-type.c \ + ggd-file-type-loader.c \ + ggd-file-type-manager.c \ + ggd-tag-utils.c \ + ggd-options.c \ + ggd-plugin.c \ + ggd-utils.c \ + ggd-widget-frame.c \ + ggd-widget-doctype-selector.c + +noinst_HEADERS = \ + ggd.h \ + ggd-doc-setting.h \ + ggd-doc-type.h \ + ggd-file-type.h \ + ggd-file-type-loader.h \ + ggd-file-type-manager.h \ + ggd-tag-utils.h \ + ggd-macros.h \ + ggd-options.h \ + ggd-plugin.h \ + ggd-utils.h \ + ggd-widget-frame.h \ + ggd-widget-doctype-selector.h + +geanygendoc_la_CPPFLAGS = -DG_LOG_DOMAIN=\"GeanyGenDoc\" +geanygendoc_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(GEANYGENDOC_CFLAGS) + +geanygendoc_la_LIBADD = \ + $(COMMONLIBS) \ + $(GEANYGENDOC_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanygendoc/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanygendoc/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanygendoc.la: $(geanygendoc_la_OBJECTS) $(geanygendoc_la_DEPENDENCIES) $(EXTRA_geanygendoc_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanygendoc_la_LINK) -rpath $(geanypluginsdir) $(geanygendoc_la_OBJECTS) $(geanygendoc_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-doc-setting.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-doc-type.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-file-type-loader.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-file-type-manager.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-file-type.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-options.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-tag-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-widget-doctype-selector.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd-widget-frame.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanygendoc_la-ggd.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanygendoc_la-ggd.lo: ggd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd.Tpo -c -o geanygendoc_la-ggd.lo `test -f 'ggd.c' || echo '$(srcdir)/'`ggd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd.Tpo $(DEPDIR)/geanygendoc_la-ggd.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd.c' object='geanygendoc_la-ggd.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd.lo `test -f 'ggd.c' || echo '$(srcdir)/'`ggd.c + +geanygendoc_la-ggd-doc-setting.lo: ggd-doc-setting.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-doc-setting.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-doc-setting.Tpo -c -o geanygendoc_la-ggd-doc-setting.lo `test -f 'ggd-doc-setting.c' || echo '$(srcdir)/'`ggd-doc-setting.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-doc-setting.Tpo $(DEPDIR)/geanygendoc_la-ggd-doc-setting.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-doc-setting.c' object='geanygendoc_la-ggd-doc-setting.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-doc-setting.lo `test -f 'ggd-doc-setting.c' || echo '$(srcdir)/'`ggd-doc-setting.c + +geanygendoc_la-ggd-doc-type.lo: ggd-doc-type.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-doc-type.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-doc-type.Tpo -c -o geanygendoc_la-ggd-doc-type.lo `test -f 'ggd-doc-type.c' || echo '$(srcdir)/'`ggd-doc-type.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-doc-type.Tpo $(DEPDIR)/geanygendoc_la-ggd-doc-type.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-doc-type.c' object='geanygendoc_la-ggd-doc-type.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-doc-type.lo `test -f 'ggd-doc-type.c' || echo '$(srcdir)/'`ggd-doc-type.c + +geanygendoc_la-ggd-file-type.lo: ggd-file-type.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-file-type.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-file-type.Tpo -c -o geanygendoc_la-ggd-file-type.lo `test -f 'ggd-file-type.c' || echo '$(srcdir)/'`ggd-file-type.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-file-type.Tpo $(DEPDIR)/geanygendoc_la-ggd-file-type.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-file-type.c' object='geanygendoc_la-ggd-file-type.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-file-type.lo `test -f 'ggd-file-type.c' || echo '$(srcdir)/'`ggd-file-type.c + +geanygendoc_la-ggd-file-type-loader.lo: ggd-file-type-loader.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-file-type-loader.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-file-type-loader.Tpo -c -o geanygendoc_la-ggd-file-type-loader.lo `test -f 'ggd-file-type-loader.c' || echo '$(srcdir)/'`ggd-file-type-loader.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-file-type-loader.Tpo $(DEPDIR)/geanygendoc_la-ggd-file-type-loader.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-file-type-loader.c' object='geanygendoc_la-ggd-file-type-loader.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-file-type-loader.lo `test -f 'ggd-file-type-loader.c' || echo '$(srcdir)/'`ggd-file-type-loader.c + +geanygendoc_la-ggd-file-type-manager.lo: ggd-file-type-manager.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-file-type-manager.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-file-type-manager.Tpo -c -o geanygendoc_la-ggd-file-type-manager.lo `test -f 'ggd-file-type-manager.c' || echo '$(srcdir)/'`ggd-file-type-manager.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-file-type-manager.Tpo $(DEPDIR)/geanygendoc_la-ggd-file-type-manager.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-file-type-manager.c' object='geanygendoc_la-ggd-file-type-manager.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-file-type-manager.lo `test -f 'ggd-file-type-manager.c' || echo '$(srcdir)/'`ggd-file-type-manager.c + +geanygendoc_la-ggd-tag-utils.lo: ggd-tag-utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-tag-utils.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-tag-utils.Tpo -c -o geanygendoc_la-ggd-tag-utils.lo `test -f 'ggd-tag-utils.c' || echo '$(srcdir)/'`ggd-tag-utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-tag-utils.Tpo $(DEPDIR)/geanygendoc_la-ggd-tag-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-tag-utils.c' object='geanygendoc_la-ggd-tag-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-tag-utils.lo `test -f 'ggd-tag-utils.c' || echo '$(srcdir)/'`ggd-tag-utils.c + +geanygendoc_la-ggd-options.lo: ggd-options.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-options.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-options.Tpo -c -o geanygendoc_la-ggd-options.lo `test -f 'ggd-options.c' || echo '$(srcdir)/'`ggd-options.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-options.Tpo $(DEPDIR)/geanygendoc_la-ggd-options.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-options.c' object='geanygendoc_la-ggd-options.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-options.lo `test -f 'ggd-options.c' || echo '$(srcdir)/'`ggd-options.c + +geanygendoc_la-ggd-plugin.lo: ggd-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-plugin.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-plugin.Tpo -c -o geanygendoc_la-ggd-plugin.lo `test -f 'ggd-plugin.c' || echo '$(srcdir)/'`ggd-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-plugin.Tpo $(DEPDIR)/geanygendoc_la-ggd-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-plugin.c' object='geanygendoc_la-ggd-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-plugin.lo `test -f 'ggd-plugin.c' || echo '$(srcdir)/'`ggd-plugin.c + +geanygendoc_la-ggd-utils.lo: ggd-utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-utils.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-utils.Tpo -c -o geanygendoc_la-ggd-utils.lo `test -f 'ggd-utils.c' || echo '$(srcdir)/'`ggd-utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-utils.Tpo $(DEPDIR)/geanygendoc_la-ggd-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-utils.c' object='geanygendoc_la-ggd-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-utils.lo `test -f 'ggd-utils.c' || echo '$(srcdir)/'`ggd-utils.c + +geanygendoc_la-ggd-widget-frame.lo: ggd-widget-frame.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-widget-frame.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-widget-frame.Tpo -c -o geanygendoc_la-ggd-widget-frame.lo `test -f 'ggd-widget-frame.c' || echo '$(srcdir)/'`ggd-widget-frame.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-widget-frame.Tpo $(DEPDIR)/geanygendoc_la-ggd-widget-frame.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-widget-frame.c' object='geanygendoc_la-ggd-widget-frame.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-widget-frame.lo `test -f 'ggd-widget-frame.c' || echo '$(srcdir)/'`ggd-widget-frame.c + +geanygendoc_la-ggd-widget-doctype-selector.lo: ggd-widget-doctype-selector.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -MT geanygendoc_la-ggd-widget-doctype-selector.lo -MD -MP -MF $(DEPDIR)/geanygendoc_la-ggd-widget-doctype-selector.Tpo -c -o geanygendoc_la-ggd-widget-doctype-selector.lo `test -f 'ggd-widget-doctype-selector.c' || echo '$(srcdir)/'`ggd-widget-doctype-selector.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanygendoc_la-ggd-widget-doctype-selector.Tpo $(DEPDIR)/geanygendoc_la-ggd-widget-doctype-selector.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ggd-widget-doctype-selector.c' object='geanygendoc_la-ggd-widget-doctype-selector.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanygendoc_la_CPPFLAGS) $(CPPFLAGS) $(geanygendoc_la_CFLAGS) $(CFLAGS) -c -o geanygendoc_la-ggd-widget-doctype-selector.lo `test -f 'ggd-widget-doctype-selector.c' || echo '$(srcdir)/'`ggd-widget-doctype-selector.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyinsertnum/Makefile.in geany-plugins-1.24.1+dfsg/geanyinsertnum/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyinsertnum/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyinsertnum/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = geanyinsertnum +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanyinsertnum +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyinsertnum/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyinsertnum/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyinsertnum/src/Makefile.in geany-plugins-1.24.1+dfsg/geanyinsertnum/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyinsertnum/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyinsertnum/src/Makefile.in 2014-04-13 17:12:42.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanyinsertnum/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanyinsertnum_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanyinsertnum_la_OBJECTS = insertnum.lo +geanyinsertnum_la_OBJECTS = $(am_geanyinsertnum_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanyinsertnum_la_SOURCES) +DIST_SOURCES = $(geanyinsertnum_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanyinsertnum.la +geanyinsertnum_la_SOURCES = insertnum.c +geanyinsertnum_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyinsertnum/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyinsertnum/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanyinsertnum.la: $(geanyinsertnum_la_OBJECTS) $(geanyinsertnum_la_DEPENDENCIES) $(EXTRA_geanyinsertnum_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanyinsertnum_la_OBJECTS) $(geanyinsertnum_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/insertnum.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/ABOUT geany-plugins-1.24.1+dfsg/geanylatex/ABOUT --- geany-plugins-1.24.0+20140222+git/geanylatex/ABOUT 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/ABOUT 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -GeanyLaTeX is a little plugin to improve support of LaTeX on Geany. -It implements a couple of maybe useful functions: - - * Wizard to create new LaTeX documents in a fast and easy way - with a bunch of templates available - * A front end for add labels \label{} and references \ref{} and - \pageref{} with getting suggestion from aux file of document - * Inserting special characters through menu - * Help entering the right fields for BibTeX entries by - providing templates - * Easy inserting format patterns like \texttt{} through menu - * Support on inserting environments by offering an dialog and - recognising selections - * Shortcuts for inserting \item and \newline - * Toolbar with often used format options - -You will find more information inside documentation. diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/doc/Makefile.in geany-plugins-1.24.1+dfsg/geanylatex/doc/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylatex/doc/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/doc/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,646 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) +subdir = geanylatex/doc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylatex +dist_plugindoc_DATA = \ + geanylatex2.html \ + geanylatex3.html \ + geanylatex4.html \ + geanylatex.css \ + geanylatex.html \ + geanylatex.pdf \ + geanylatex.tex \ + img/bibtex_reference.png \ + img/insert_environment.png \ + img/insert_label.png \ + img/insert_reference.png \ + img/insert_usepackage.png \ + img/latexwizard.png \ + img/plugin_manager.png \ + img/toolbar.png + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylatex/doc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylatex/doc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/Makefile.in geany-plugins-1.24.1+dfsg/geanylatex/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylatex/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS TODO +subdir = geanylatex +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src doc +plugin = geanylatex +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylatex/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylatex/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/src/geanylatex.c geany-plugins-1.24.1+dfsg/geanylatex/src/geanylatex.c --- geany-plugins-1.24.0+20140222+git/geanylatex/src/geanylatex.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/src/geanylatex.c 2014-04-12 14:28:39.000000000 +0000 @@ -1265,6 +1265,8 @@ tmp_dir = g_path_get_dirname(doc->real_path); dir = g_dir_open(tmp_dir, 0, NULL); + if(dir == NULL) + g_free(tmp_dir); g_return_if_fail(dir != NULL); foreach_dir(filename, dir) @@ -1275,6 +1277,7 @@ glatex_parse_bib_file(fullpath, textbox); g_free(fullpath); } + g_free(tmp_dir); g_dir_close(dir); model = gtk_combo_box_get_model(GTK_COMBO_BOX(textbox)); gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(model), @@ -1309,10 +1312,8 @@ } else { - if (ref_string != NULL) - g_free(ref_string); - if (template_string != NULL) - g_free(template_string); + g_free(ref_string); + g_free(template_string); } } @@ -1447,7 +1448,7 @@ break; } } - if (classoptions != NULL && NZV(orientation_string)) + if (classoptions != NULL && !EMPTY(orientation_string)) { classoptions = g_strconcat(classoptions, ",", orientation_string, NULL); g_free(orientation_string); @@ -1465,11 +1466,11 @@ classoptions = g_strconcat(draft, NULL); g_free(draft); } - if (classoptions != NULL && NZV(fontsize)) + if (classoptions != NULL && !EMPTY(fontsize)) { classoptions = g_strconcat(classoptions, ",", fontsize, NULL); } - else if (classoptions == NULL && NZV(fontsize)) + else if (classoptions == NULL && !EMPTY(fontsize)) { classoptions = g_strdup(fontsize); } @@ -1594,7 +1595,7 @@ break; } } - if (NZV(author)) + if (!EMPTY(author)) { gchar* author_string = NULL; if (documentclass_int == 3) @@ -1628,7 +1629,7 @@ g_free(author_string); } - if (NZV(date)) + if (!EMPTY(date)) { gchar *date_string = NULL; date_string = g_strconcat("\\date{", date, "}\n", NULL); diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/src/latexutils.c geany-plugins-1.24.1+dfsg/geanylatex/src/latexutils.c --- geany-plugins-1.24.0+20140222+git/geanylatex/src/latexutils.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/src/latexutils.c 2014-04-12 14:28:39.000000000 +0000 @@ -64,7 +64,7 @@ pos = sci_get_position_from_line(doc->editor->sci, i); /* Building up package string and inserting it */ - if (NZV(options)) + if (!EMPTY(options)) { packagestring = g_strconcat("\\usepackage[", options, "]{", pkg, "}\n", NULL); diff -Nru geany-plugins-1.24.0+20140222+git/geanylatex/src/Makefile.in geany-plugins-1.24.1+dfsg/geanylatex/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylatex/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylatex/src/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,844 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanylatex/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanylatex_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanylatex_la_OBJECTS = bibtex.lo geanylatex.lo reftex.lo \ + latexstructure.lo bibtexlabels.lo latexencodings.lo \ + templates.lo latexutils.lo formatpatterns.lo \ + latexenvironments.lo formatutils.lo letters.lo \ + latexkeybindings.lo +geanylatex_la_OBJECTS = $(am_geanylatex_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanylatex_la_SOURCES) +DIST_SOURCES = $(geanylatex_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanylatex.la +geanylatex_la_SOURCES = \ + bibtex.c \ + geanylatex.c \ + latexkeybindings.h \ + reftex.c \ + bibtex.h \ + geanylatex.h \ + latexstructure.c \ + reftex.h \ + bibtexlabels.c \ + latexencodings.c \ + latexstructure.h \ + templates.c \ + datatypes.h \ + latexencodings.h \ + latexutils.c \ + templates.h \ + formatpatterns.c \ + latexenvironments.c \ + latexutils.h \ + formatutils.c \ + latexenvironments.h \ + letters.c \ + formatutils.h \ + latexkeybindings.c \ + letters.h + +geanylatex_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylatex/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylatex/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanylatex.la: $(geanylatex_la_OBJECTS) $(geanylatex_la_DEPENDENCIES) $(EXTRA_geanylatex_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanylatex_la_OBJECTS) $(geanylatex_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibtex.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bibtexlabels.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/formatpatterns.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/formatutils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanylatex.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/latexencodings.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/latexenvironments.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/latexkeybindings.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/latexstructure.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/latexutils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/letters.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reftex.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/templates.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylipsum/Makefile.in geany-plugins-1.24.1+dfsg/geanylipsum/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylipsum/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylipsum/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = geanylipsum +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanylipsum +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylipsum/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylipsum/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylipsum/src/Makefile.in geany-plugins-1.24.1+dfsg/geanylipsum/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylipsum/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylipsum/src/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanylipsum/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanylipsum_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanylipsum_la_OBJECTS = geanylipsum.lo +geanylipsum_la_OBJECTS = $(am_geanylipsum_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanylipsum_la_SOURCES) +DIST_SOURCES = $(geanylipsum_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanylipsum.la +geanylipsum_la_SOURCES = geanylipsum.c +geanylipsum_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylipsum/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylipsum/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanylipsum.la: $(geanylipsum_la_OBJECTS) $(geanylipsum_la_DEPENDENCIES) $(EXTRA_geanylipsum_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanylipsum_la_OBJECTS) $(geanylipsum_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanylipsum.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/autogen.sh geany-plugins-1.24.1+dfsg/geanylua/autogen.sh --- geany-plugins-1.24.0+20140222+git/geanylua/autogen.sh 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/autogen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,159 +0,0 @@ -#!/bin/sh -# Run this to generate all the initial makefiles, etc. - -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. - -DIE=0 - -if [ -n "$GNOME2_DIR" ]; then - ACLOCAL_FLAGS="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS" - LD_LIBRARY_PATH="$GNOME2_DIR/lib:$LD_LIBRARY_PATH" - PATH="$GNOME2_DIR/bin:$PATH" - export PATH - export LD_LIBRARY_PATH -fi - -(test -f $srcdir/configure.in) || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level package directory" - exit 1 -} - -(autoconf --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`autoconf' installed." - echo "Download the appropriate package for your distribution," - echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" - DIE=1 -} - -(grep "^AC_PROG_INTLTOOL" $srcdir/configure.in >/dev/null) && { - (intltoolize --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`intltool' installed." - echo "You can get it from:" - echo " ftp://ftp.gnome.org/pub/GNOME/" - DIE=1 - } -} - -(grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.in >/dev/null) && { - (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`xml-i18n-toolize' installed." - echo "You can get it from:" - echo " ftp://ftp.gnome.org/pub/GNOME/" - DIE=1 - } -} - -(grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { - (libtool --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`libtool' installed." - echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" - DIE=1 - } -} - -(grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.in >/dev/null) && { - (grep "sed.*POTFILES" $srcdir/configure.in) > /dev/null || \ - (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`glib' installed." - echo "You can get it from: ftp://ftp.gtk.org/pub/gtk" - DIE=1 - } -} - -(automake --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have \`automake' installed." - echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" - DIE=1 - NO_AUTOMAKE=yes -} - - -# if no automake, don't bother testing for aclocal -test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: Missing \`aclocal'. The version of \`automake'" - echo "installed doesn't appear recent enough." - echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" - DIE=1 -} - -if test "$DIE" -eq 1; then - exit 1 -fi - -if test -z "$*"; then - echo "**Warning**: I am going to run \`configure' with no arguments." - echo "If you wish to pass any to it, please specify them on the" - echo \`$0\'" command line." - echo -fi - -case $CC in -xlc ) - am_opt=--include-deps;; -esac - -for coin in `find $srcdir -name configure.in -print` -do - dr=`dirname $coin` - if test -f $dr/NO-AUTO-GEN; then - echo skipping $dr -- flagged as no auto-gen - else - echo processing $dr - ( cd $dr - - aclocalinclude="$ACLOCAL_FLAGS" - - if grep "^AM_GLIB_GNU_GETTEXT" configure.in >/dev/null; then - echo "Creating $dr/aclocal.m4 ..." - test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 - echo "Running glib-gettextize... Ignore non-fatal messages." - echo "no" | glib-gettextize --force --copy - echo "Making $dr/aclocal.m4 writable ..." - test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 - fi - if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then - echo "Running intltoolize..." - intltoolize --copy --force --automake - fi - if grep "^AM_PROG_XML_I18N_TOOLS" configure.in >/dev/null; then - echo "Running xml-i18n-toolize..." - xml-i18n-toolize --copy --force --automake - fi - if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then - if test -z "$NO_LIBTOOLIZE" ; then - echo "Running libtoolize..." - libtoolize --force --copy - fi - fi - echo "Running aclocal $aclocalinclude ..." - aclocal $aclocalinclude - if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then - echo "Running autoheader..." - autoheader - fi - echo "Running automake --gnu $am_opt ..." - automake --add-missing --copy --gnu $am_opt - echo "Running autoconf ..." - autoconf - ) - fi -done - -#conf_flags="--enable-maintainer-mode" - -if test x$NOCONFIGURE = x; then - echo Running $srcdir/configure $conf_flags "$@" ... - $srcdir/configure $conf_flags "$@" \ - && echo Now type \`make\' to compile. || exit 1 -else - echo Skipping configure process. -fi diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/COPYRIGHT.LUA geany-plugins-1.24.1+dfsg/geanylua/COPYRIGHT.LUA --- geany-plugins-1.24.0+20140222+git/geanylua/COPYRIGHT.LUA 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/COPYRIGHT.LUA 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -Lua License ------------ - -Lua is licensed under the terms of the MIT license reproduced below. -This means that Lua is free software and can be used for both academic -and commercial purposes at absolutely no cost. - -For details and rationale, see http://www.lua.org/license.html . - -=============================================================================== - -Copyright (C) 1994-2007 Lua.org, PUC-Rio. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=============================================================================== - -(end of COPYRIGHT) diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/docs/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/docs/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/docs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/docs/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,638 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_htmldoc_DATA) +subdir = geanylua/docs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(htmldocdir)" +DATA = $(dist_htmldoc_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +dist_htmldoc_DATA = \ + geanylua-index.html \ + geanylua-input.html \ + geanylua-intro.html \ + geanylua-keyfile.html \ + geanylua-keys.html \ + geanylua-ref.html \ + luarefv51.html + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/docs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_htmldocDATA: $(dist_htmldoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_htmldoc_DATA)'; test -n "$(htmldocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(htmldocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(htmldocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldocdir)" || exit $$?; \ + done + +uninstall-dist_htmldocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_htmldoc_DATA)'; test -n "$(htmldocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(htmldocdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(htmldocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_htmldocDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_htmldocDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_htmldocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_htmldocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/dialogs/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/dialogs/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/dialogs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/dialogs/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,634 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_dialogs_DATA) +subdir = geanylua/examples/dialogs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(dialogsdir)" +DATA = $(dist_dialogs_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +dialogsdir = $(examplesdir)/dialogs +dist_dialogs_DATA = \ + basic-dialogs.lua \ + complex-dialog.lua + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/dialogs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/dialogs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_dialogsDATA: $(dist_dialogs_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_dialogs_DATA)'; test -n "$(dialogsdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(dialogsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(dialogsdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dialogsdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(dialogsdir)" || exit $$?; \ + done + +uninstall-dist_dialogsDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_dialogs_DATA)'; test -n "$(dialogsdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(dialogsdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(dialogsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_dialogsDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_dialogsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_dialogsDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_dialogsDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/edit/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/edit/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/edit/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/edit/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,638 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_edit_DATA) +subdir = geanylua/examples/edit +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(editdir)" +DATA = $(dist_edit_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +editdir = $(examplesdir)/edit +dist_edit_DATA = \ + calculator.lua \ + lua-replace.lua \ + proper-case.lua \ + reverse.lua \ + right-trim.lua \ + select-block.lua + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/edit/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/edit/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_editDATA: $(dist_edit_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_edit_DATA)'; test -n "$(editdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(editdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(editdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(editdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(editdir)" || exit $$?; \ + done + +uninstall-dist_editDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_edit_DATA)'; test -n "$(editdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(editdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(editdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_editDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_editDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_editDATA install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_editDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/info/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/info/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/info/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/info/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,637 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_exampleinfo_DATA) +subdir = geanylua/examples/info +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(exampleinfodir)" +DATA = $(dist_exampleinfo_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +exampleinfodir = $(examplesdir)/info +dist_exampleinfo_DATA = \ + about.lua \ + app-information.lua \ + file-information.lua \ + list-open-files.lua \ + show-filename.lua + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/info/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/info/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_exampleinfoDATA: $(dist_exampleinfo_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_exampleinfo_DATA)'; test -n "$(exampleinfodir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(exampleinfodir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(exampleinfodir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(exampleinfodir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(exampleinfodir)" || exit $$?; \ + done + +uninstall-dist_exampleinfoDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_exampleinfo_DATA)'; test -n "$(exampleinfodir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(exampleinfodir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(exampleinfodir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_exampleinfoDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_exampleinfoDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_exampleinfoDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_exampleinfoDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,753 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = geanylua/examples +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = \ + dialogs \ + edit \ + info \ + scripting \ + work + +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/scripting/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/scripting/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/scripting/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/scripting/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,636 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_scripting_DATA) +subdir = geanylua/examples/scripting +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(scriptingdir)" +DATA = $(dist_scripting_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +scriptingdir = $(examplesdir)/scripting +dist_scripting_DATA = \ + help.lua \ + open-script.lua \ + rebuild-menu.lua \ + show-examples.lua + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/scripting/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/scripting/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_scriptingDATA: $(dist_scripting_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_scripting_DATA)'; test -n "$(scriptingdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(scriptingdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(scriptingdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(scriptingdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(scriptingdir)" || exit $$?; \ + done + +uninstall-dist_scriptingDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_scripting_DATA)'; test -n "$(scriptingdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(scriptingdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(scriptingdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_scriptingDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_scriptingDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_scriptingDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_scriptingDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/examples/work/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/examples/work/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/examples/work/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/examples/work/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,635 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_work_DATA) +subdir = geanylua/examples/work +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(workdir)" +DATA = $(dist_work_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = geanylua +workdir = $(examplesdir)/work +dist_work_DATA = \ + 01.edit-test-script.lua \ + 02.run-test-script.lua \ + 03.install-test-script.lua + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/examples/work/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/examples/work/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_workDATA: $(dist_work_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_work_DATA)'; test -n "$(workdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(workdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(workdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(workdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(workdir)" || exit $$?; \ + done + +uninstall-dist_workDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_work_DATA)'; test -n "$(workdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(workdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(workdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_workDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_workDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_workDATA install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_workDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/glspi_dlg.c geany-plugins-1.24.1+dfsg/geanylua/glspi_dlg.c --- geany-plugins-1.24.0+20140222+git/geanylua/glspi_dlg.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/glspi_dlg.c 2014-04-12 14:28:39.000000000 +0000 @@ -425,9 +425,11 @@ if (name && *name) { if (g_path_is_absolute(name)) { fullname=g_strdup(name); - } else if (path) {fullname=g_build_filename(path,name,NULL);} - gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dlg), fullname); - if (save) gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dlg), name); + } else if (path) { + fullname=g_build_filename(path,name,NULL); + } + gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dlg), fullname); + if (save) { gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dlg), name); } } if (path && *path) { gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dlg), path); @@ -437,6 +439,7 @@ "failed to parse filter string at argument #3.\n"), LUA_MODULE_NAME); lua_error(L); + g_free(fullname); return NULL; } @@ -454,7 +457,7 @@ rv=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dlg)); } gtk_widget_destroy(dlg); - if (fullname) {g_free(fullname);} + g_free(fullname); return rv; } diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/keywords.list geany-plugins-1.24.1+dfsg/geanylua/keywords.list --- geany-plugins-1.24.0+20140222+git/geanylua/keywords.list 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/keywords.list 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ - -# Replace these lines in your ~/.geany/filedefs/filetypes.lua file -# to enable orange syntax highlighting for the geanylua keywords... - - -## Put this in the [styling] section: -word5=0xf0a000;0xffffff;false;false - -## Put this in the [keywords] section: -user1=geany.activate geany.appinfo geany.banner geany.basename geany.batch geany.byte geany.caller geany.caret geany.choose geany.close geany.confirm geany.copy geany.count geany.cut geany.dirlist geany.dirname geany.dirsep geany.documents geany.fileinfo geany.filename geany.find geany.fullpath geany.height geany.input geany.keycmd geany.keygrab geany.launch geany.length geany.lines geany.match geany.message geany.navigate geany.newfile geany.open geany.optimize geany.paste geany.pickfile geany.pluginver geany.rectsel geany.rescan geany.rowcol geany.save geany.scintilla geany.script geany.select geany.selection geany.signal geany.stat geany.text geany.timeout geany.wkdir geany.word geany.wordchars geany.xsel geany.yield dialog.checkbox dialog.color dialog.file dialog.font dialog.group dialog.heading dialog.hr dialog.label dialog.new dialog.option dialog.password dialog.radio dialog.run dialog.select dialog.text dialog.textarea keyfile.comment keyfile.data keyfile.groups keyfile.has keyfile.keys keyfile.new keyfile.remove keyfile.value diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/Makefile.in geany-plugins-1.24.1+dfsg/geanylua/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanylua/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,1131 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(dist_plugindoc_DATA) AUTHORS COPYING ChangeLog INSTALL NEWS \ + README THANKS +subdir = geanylua +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanyluadir)" \ + "$(DESTDIR)$(geanypluginsdir)" "$(DESTDIR)$(plugindocdir)" +LTLIBRARIES = $(geanylua_LTLIBRARIES) $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanylua_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) +am_geanylua_la_OBJECTS = geanylua_la-geanylua.lo +geanylua_la_OBJECTS = $(am_geanylua_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanylua_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanylua_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +am__DEPENDENCIES_3 = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) +libgeanylua_la_DEPENDENCIES = $(am__DEPENDENCIES_3) +am_libgeanylua_la_OBJECTS = libgeanylua_la-glspi_app.lo \ + libgeanylua_la-glspi_dlg.lo libgeanylua_la-glspi_doc.lo \ + libgeanylua_la-glspi_init.lo libgeanylua_la-glspi_kfile.lo \ + libgeanylua_la-glspi_run.lo libgeanylua_la-glspi_sci.lo \ + libgeanylua_la-gsdlg.lo libgeanylua_la-gsdlg_lua.lo +libgeanylua_la_OBJECTS = $(am_libgeanylua_la_OBJECTS) +libgeanylua_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(libgeanylua_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \ + $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanylua_la_SOURCES) $(libgeanylua_la_SOURCES) +DIST_SOURCES = $(geanylua_la_SOURCES) $(libgeanylua_la_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = wscript_build wscript_configure util +plugin = geanylua +geanyplugins_LTLIBRARIES = geanylua.la +geanyluadir = $(pkglibdir)/geanylua +geanylua_LTLIBRARIES = libgeanylua.la +geanylua_la_SOURCES = geanylua.c +libgeanylua_la_SOURCES = \ + glspi_app.c \ + glspi_dlg.c \ + glspi_doc.c \ + glspi_init.c \ + glspi_kfile.c \ + glspi_run.c \ + glspi_sci.c \ + gsdlg.c \ + gsdlg_lua.c \ + glspi.h \ + glspi_keycmd.h \ + glspi_sci.h \ + glspi_ver.h \ + gsdlg.h + +geanylua_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(GMODULE_CFLAGS) \ + $(LUA_CFLAGS) + +geanylua_la_LIBADD = \ + $(COMMONLIBS) \ + $(GMODULE_LIBS) \ + $(LUA_LIBS) + +libgeanylua_la_CFLAGS = $(geanylua_la_CFLAGS) +libgeanylua_la_LIBADD = $(geanylua_la_LIBADD) +SUBDIRS = docs examples +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanylua/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanylua/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanyluaLTLIBRARIES: $(geanylua_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanylua_LTLIBRARIES)'; test -n "$(geanyluadir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanyluadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanyluadir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanyluadir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanyluadir)"; \ + } + +uninstall-geanyluaLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanylua_LTLIBRARIES)'; test -n "$(geanyluadir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanyluadir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanyluadir)/$$f"; \ + done + +clean-geanyluaLTLIBRARIES: + -test -z "$(geanylua_LTLIBRARIES)" || rm -f $(geanylua_LTLIBRARIES) + @list='$(geanylua_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanylua.la: $(geanylua_la_OBJECTS) $(geanylua_la_DEPENDENCIES) $(EXTRA_geanylua_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanylua_la_LINK) -rpath $(geanypluginsdir) $(geanylua_la_OBJECTS) $(geanylua_la_LIBADD) $(LIBS) + +libgeanylua.la: $(libgeanylua_la_OBJECTS) $(libgeanylua_la_DEPENDENCIES) $(EXTRA_libgeanylua_la_DEPENDENCIES) + $(AM_V_CCLD)$(libgeanylua_la_LINK) -rpath $(geanyluadir) $(libgeanylua_la_OBJECTS) $(libgeanylua_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanylua_la-geanylua.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_app.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_dlg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_doc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_init.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_kfile.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_run.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-glspi_sci.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-gsdlg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgeanylua_la-gsdlg_lua.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanylua_la-geanylua.lo: geanylua.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanylua_la_CFLAGS) $(CFLAGS) -MT geanylua_la-geanylua.lo -MD -MP -MF $(DEPDIR)/geanylua_la-geanylua.Tpo -c -o geanylua_la-geanylua.lo `test -f 'geanylua.c' || echo '$(srcdir)/'`geanylua.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanylua_la-geanylua.Tpo $(DEPDIR)/geanylua_la-geanylua.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanylua.c' object='geanylua_la-geanylua.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanylua_la_CFLAGS) $(CFLAGS) -c -o geanylua_la-geanylua.lo `test -f 'geanylua.c' || echo '$(srcdir)/'`geanylua.c + +libgeanylua_la-glspi_app.lo: glspi_app.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_app.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_app.Tpo -c -o libgeanylua_la-glspi_app.lo `test -f 'glspi_app.c' || echo '$(srcdir)/'`glspi_app.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_app.Tpo $(DEPDIR)/libgeanylua_la-glspi_app.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_app.c' object='libgeanylua_la-glspi_app.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_app.lo `test -f 'glspi_app.c' || echo '$(srcdir)/'`glspi_app.c + +libgeanylua_la-glspi_dlg.lo: glspi_dlg.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_dlg.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_dlg.Tpo -c -o libgeanylua_la-glspi_dlg.lo `test -f 'glspi_dlg.c' || echo '$(srcdir)/'`glspi_dlg.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_dlg.Tpo $(DEPDIR)/libgeanylua_la-glspi_dlg.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_dlg.c' object='libgeanylua_la-glspi_dlg.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_dlg.lo `test -f 'glspi_dlg.c' || echo '$(srcdir)/'`glspi_dlg.c + +libgeanylua_la-glspi_doc.lo: glspi_doc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_doc.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_doc.Tpo -c -o libgeanylua_la-glspi_doc.lo `test -f 'glspi_doc.c' || echo '$(srcdir)/'`glspi_doc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_doc.Tpo $(DEPDIR)/libgeanylua_la-glspi_doc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_doc.c' object='libgeanylua_la-glspi_doc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_doc.lo `test -f 'glspi_doc.c' || echo '$(srcdir)/'`glspi_doc.c + +libgeanylua_la-glspi_init.lo: glspi_init.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_init.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_init.Tpo -c -o libgeanylua_la-glspi_init.lo `test -f 'glspi_init.c' || echo '$(srcdir)/'`glspi_init.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_init.Tpo $(DEPDIR)/libgeanylua_la-glspi_init.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_init.c' object='libgeanylua_la-glspi_init.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_init.lo `test -f 'glspi_init.c' || echo '$(srcdir)/'`glspi_init.c + +libgeanylua_la-glspi_kfile.lo: glspi_kfile.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_kfile.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_kfile.Tpo -c -o libgeanylua_la-glspi_kfile.lo `test -f 'glspi_kfile.c' || echo '$(srcdir)/'`glspi_kfile.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_kfile.Tpo $(DEPDIR)/libgeanylua_la-glspi_kfile.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_kfile.c' object='libgeanylua_la-glspi_kfile.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_kfile.lo `test -f 'glspi_kfile.c' || echo '$(srcdir)/'`glspi_kfile.c + +libgeanylua_la-glspi_run.lo: glspi_run.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_run.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_run.Tpo -c -o libgeanylua_la-glspi_run.lo `test -f 'glspi_run.c' || echo '$(srcdir)/'`glspi_run.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_run.Tpo $(DEPDIR)/libgeanylua_la-glspi_run.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_run.c' object='libgeanylua_la-glspi_run.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_run.lo `test -f 'glspi_run.c' || echo '$(srcdir)/'`glspi_run.c + +libgeanylua_la-glspi_sci.lo: glspi_sci.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-glspi_sci.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-glspi_sci.Tpo -c -o libgeanylua_la-glspi_sci.lo `test -f 'glspi_sci.c' || echo '$(srcdir)/'`glspi_sci.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-glspi_sci.Tpo $(DEPDIR)/libgeanylua_la-glspi_sci.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glspi_sci.c' object='libgeanylua_la-glspi_sci.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-glspi_sci.lo `test -f 'glspi_sci.c' || echo '$(srcdir)/'`glspi_sci.c + +libgeanylua_la-gsdlg.lo: gsdlg.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-gsdlg.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-gsdlg.Tpo -c -o libgeanylua_la-gsdlg.lo `test -f 'gsdlg.c' || echo '$(srcdir)/'`gsdlg.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-gsdlg.Tpo $(DEPDIR)/libgeanylua_la-gsdlg.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsdlg.c' object='libgeanylua_la-gsdlg.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-gsdlg.lo `test -f 'gsdlg.c' || echo '$(srcdir)/'`gsdlg.c + +libgeanylua_la-gsdlg_lua.lo: gsdlg_lua.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -MT libgeanylua_la-gsdlg_lua.lo -MD -MP -MF $(DEPDIR)/libgeanylua_la-gsdlg_lua.Tpo -c -o libgeanylua_la-gsdlg_lua.lo `test -f 'gsdlg_lua.c' || echo '$(srcdir)/'`gsdlg_lua.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgeanylua_la-gsdlg_lua.Tpo $(DEPDIR)/libgeanylua_la-gsdlg_lua.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gsdlg_lua.c' object='libgeanylua_la-gsdlg_lua.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgeanylua_la_CFLAGS) $(CFLAGS) -c -o libgeanylua_la-gsdlg_lua.lo `test -f 'gsdlg_lua.c' || echo '$(srcdir)/'`gsdlg_lua.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-recursive +all-am: Makefile $(LTLIBRARIES) $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(geanyluadir)" "$(DESTDIR)$(geanypluginsdir)" "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-geanyluaLTLIBRARIES clean-geanypluginsLTLIBRARIES \ + clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA \ + install-geanyluaLTLIBRARIES install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA \ + uninstall-geanyluaLTLIBRARIES \ + uninstall-geanypluginsLTLIBRARIES + +.MAKE: $(am__recursive_targets) check-am install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am check-local clean clean-geanyluaLTLIBRARIES \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dist_plugindocDATA \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-geanyluaLTLIBRARIES install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA uninstall-geanyluaLTLIBRARIES \ + uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/oldbuildsys/configure.in geany-plugins-1.24.1+dfsg/geanylua/oldbuildsys/configure.in --- geany-plugins-1.24.0+20140222+git/geanylua/oldbuildsys/configure.in 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/oldbuildsys/configure.in 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ - -AC_INIT([geanylua],0.7.0, [yetanothergeek@gmail.com]) - -PACKAGE="geanylua" -VERSION=0.7.0 -GEANY_MIN_VER=0.13 - -AC_SUBST([VERSION]) -AC_SUBST([PACKAGE]) - -AM_INIT_AUTOMAKE([${PACKAGE}], ${VERSION} ) - - -AC_PROG_CC -AC_LANG_C -AC_PROG_MAKE_SET -AC_HEADER_STDC - -AC_DISABLE_STATIC -AM_PROG_LIBTOOL - - -PKG_CHECK_MODULES(GEANY, [geany]) -AC_SUBST(GEANY_CFLAGS) -AC_SUBST(GEANY_LIBS) - - -AC_ARG_WITH([lua-pkg], - AC_HELP_STRING([--with-lua-pkg=ARG],[name of Lua pkg-config script [[default=lua5.1]]]), - [LUA_PKG_NAME=${withval%.pc}], -[ -LUA_PKG_NAME=lua5.1 - -for L in lua5.1 lua51 lua-5.1 lua -do - AC_MSG_CHECKING([for $L.pc]) - if ${PKG_CONFIG} --exists ${L} - then - AC_MSG_RESULT([yes]) - LUA_PKG_NAME=${L} - break - else - AC_MSG_RESULT([no]) - fi -done -] -) - - -PKG_CHECK_MODULES([LUA], [${LUA_PKG_NAME} >= 5.1]) -AC_SUBST(LUA_CFLAGS) -AC_SUBST(LUA_LIBS) - - -AC_ARG_ENABLE([hidden-symbols], - AC_HELP_STRING([--enable-hidden-symbols],[Hide internal symbols in library [[default=no]]]), - [ - if ${CC} --help --verbose 2> /dev/null | grep "\-fvisibility\>" > /dev/null - then - AC_DEFINE([PLUGIN_EXPORT], [__attribute__ ((visibility ("default")))], [to make a symbol visible]) - OS_FLAGS="${OS_FLAGS} -fvisibility=hidden" - HIDE_SYMS="yes" - else - AC_MSG_ERROR([--enable-hidden-symbols option is not supported by compiler!]) - HIDE_SYMS="no" - fi - ], - [ - OS_FLAGS= - ] -) - - -AC_ARG_ENABLE([sys-install], -AC_HELP_STRING([--enable-sys-install],[install plugin for all users [[default=no]]]), - [ - if test "x${prefix}" = "xNONE"; then - prefix=${ac_default_prefix} - fi - SYS_INSTALL=yes - PLUGIN_DEST_DIR="${prefix}/lib/geany" - DATA_DEST_DIR="${prefix}/share/geany/plugins/${PACKAGE}" - DOC_DEST_DIR="${prefix}/share/doc/geany-plugins/${PACKAGE}" - ], - [ - SYS_INSTALL=no - PLUGIN_DEST_DIR="${HOME}/.geany/plugins" - DATA_DEST_DIR="${HOME}/.geany/plugins/${PACKAGE}" - DOC_DEST_DIR="${HOME}/.geany/plugins/${PACKAGE}/support" - ] -) - -AC_SUBST(SYS_INSTALL) -AC_SUBST(PLUGIN_DEST_DIR) -AC_SUBST(DATA_DEST_DIR) -AC_SUBST(DOC_DEST_DIR) - -case "${host_os}" in - cygwin* | mingw*) - if test "x${SYS_INSTALL}" = "xyes" - then - AC_MSG_ERROR([--enable-sys-install option is not supported on windows!]) - fi - if test "x${HIDE_SYMS}" = "xyes" - then - AC_MSG_ERROR([--enable-hidden-symbols option is not supported on windows!]) - fi - LIBEXT="dll" - OS_FLAGS="${OS_FLAGS} -mms-bitfields" - USER_CMD="'make win32'" - AC_DEFINE([PLUGIN_EXPORT], [__declspec(dllexport)], [to make a symbol visible]) - ;; - *) - LIBEXT="so" - USER_CMD="'make'" - ;; -esac - -LIBRARY="libgeanylua" - -PLUGIN_FILENAME="${PACKAGE}.${LIBEXT}" -LIBRARY_FILENAME="${LIBRARY}.${LIBEXT}" - -AC_SUBST(OS_FLAGS) -AC_SUBST(PLUGIN_FILENAME) -AC_SUBST(LIBRARY) -AC_SUBST(LIBRARY_FILENAME) - - -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT - -echo -echo "========================================" -make pathcheck - -echo -echo "Plugin filename: ${PLUGIN_FILENAME}" -echo "System-wide install: ${SYS_INSTALL}" -echo -echo "Configuration complete, now type ${USER_CMD}" -echo - - diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/oldbuildsys/Makefile.am geany-plugins-1.24.1+dfsg/geanylua/oldbuildsys/Makefile.am --- geany-plugins-1.24.0+20140222+git/geanylua/oldbuildsys/Makefile.am 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/oldbuildsys/Makefile.am 1970-01-01 00:00:00.000000000 +0000 @@ -1,187 +0,0 @@ - -EXTRA_DIST = COPYRIGHT.LUA keywords.list docs examples util \ - win32-install.vbs win32-uninstall.vbs - -noinst_HEADERS = glspi.h glspi_keycmd.h glspi_sci.h glspi_ver.h gsdlg.h gsdlg.c - - -AUTOMAKE_OPTIONS = gnu - - -SNAPSHOT_NAME=date +$(PACKAGE)-%Y-%m-%d - -AM_CFLAGS = \ - -DGEANY_DISABLE_DEPRECATED \ - -Wall -g \ - @OS_FLAGS@ \ - @GEANY_CFLAGS@ \ - @LUA_CFLAGS@ - - -AM_LDFLAGS = -module -avoid-version @GEANY_LIBS@ @OS_FLAGS@ - - -plugindir = $(PLUGIN_DEST_DIR) -plugin_LTLIBRARIES = geanylua.la -geanylua_la_LDFLAGS = $(AM_LDFLAGS) - -geanylua_la_SOURCES = geanylua.c -geanylua_objects = geanylua.o - -libgeanyluadir = $(DATA_DEST_DIR) -libgeanylua_LTLIBRARIES = libgeanylua.la -libgeanylua_la_LDFLAGS = $(AM_LDFLAGS) @LUA_LIBS@ - -libgeanylua_la_SOURCES = \ -glspi_init.c \ -glspi_app.c \ -glspi_dlg.c \ -glspi_doc.c \ -glspi_kfile.c \ -glspi_run.c \ -glspi_sci.c \ -gsdlg_lua.c - -libgeanylua_objects = \ -.libs/glspi_init.o \ -.libs/glspi_app.o \ -.libs/glspi_dlg.o \ -.libs/glspi_doc.o \ -.libs/glspi_kfile.o \ -.libs/glspi_run.o \ -.libs/glspi_sci.o \ -.libs/gsdlg_lua.o - - - - - -# Libtool complains about unresolved symbols -# and refuses to build the windows plugin - -# but manual linking seems to work just fine... -.libs/$(LIBRARY).dll: $(libgeanylua_objects) - $(CC) $^ $(libgeanylua_la_LDFLAGS) --shared -o $@ - -.libs/$(PACKAGE).dll: $(geanylua_objects) - $(CC) $^ $(AM_LDFLAGS) --shared -o $@ - - -win32: all .libs/$(LIBRARY).dll .libs/$(PACKAGE).dll - - - -.libs/$(PACKAGE).so: $(PACKAGE).la - -.libs/$(LIBRARY).so: $(LIBRARY).la - - - -install-library: .libs/$(LIBRARY_FILENAME) - $(mkdir_p) $(DATA_DEST_DIR) - $(INSTALL) $< $(DATA_DEST_DIR) - - -install-plugin: .libs/$(PLUGIN_FILENAME) - $(mkdir_p) $(PLUGIN_DEST_DIR) - $(INSTALL) $< $(PLUGIN_DEST_DIR) - - -install-scripts: - $(mkdir_p) $(DATA_DEST_DIR)/examples - DIRS=`find examples -maxdepth 1 -mindepth 1 -type d -not -name .svn`; \ - for DIR in $$DIRS; do \ - $(mkdir_p) $(DATA_DEST_DIR)/$$DIR; \ - cp $$DIR/*.lua $(DATA_DEST_DIR)/$$DIR; \ - done - - -install-docs: - $(mkdir_p) $(DOC_DEST_DIR) - cp ./docs/*.html $(DOC_DEST_DIR)/. - - -keywords.list: all - cp .libs/$(LIBRARY_FILENAME) . - ./util/keywords.lua > keywords.list - rm -f $(LIBRARY_FILENAME) - - -install: install-plugin install-library install-scripts install-docs - - -uninstall: - rm -f $(DOC_DEST_DIR)/$(PACKAGE)-*.html - rmdir $(DOC_DEST_DIR) || true - rm -f $(PLUGIN_DEST_DIR)/$(PLUGIN_FILENAME) - rm -f $(DATA_DEST_DIR)/$(LIBRARY_FILENAME) - rm -rf $(DATA_DEST_DIR)/examples - rmdir $(DATA_DEST_DIR) || true - - -snapshot: - ./util/real-clean.sh - ln -sf $${PWD} ../`$(SNAPSHOT_NAME)` - rm -f ../`$(SNAPSHOT_NAME)`.tar.gz - find ../`$(SNAPSHOT_NAME)`/ -type f > ../`$(SNAPSHOT_NAME)`.list - tar --owner=0 --group=0 -zcf ../`$(SNAPSHOT_NAME)`.tar.gz -T ../`$(SNAPSHOT_NAME)`.list - rm -f ../`$(SNAPSHOT_NAME)`{.list,} - - - - -RELEASE_DIR=../$(PACKAGE)-$(VERSION)-release -WIN32_ZIP_DIR=$(PACKAGE)-$(VERSION)-win32 -WIN32_DLL_ZIP=$(RELEASE_DIR)/$(WIN32_ZIP_DIR).zip -LINUX_TAR_DIR=$(PACKAGE)-$(VERSION)-linux-x86 -LINUX_X86_SO_TAR_GZ=$(RELEASE_DIR)/$(LINUX_TAR_DIR).tar.gz - - -PKG_NOTES=docs examples AUTHORS COPYING ChangeLog INSTALL THANKS keywords.list - -win32-dll-zip: - w32-config - w32-make clean win32 - rm -f $(WIN32_DLL_ZIP) - rm -rf $(WIN32_ZIP_DIR) - mkdir $(WIN32_ZIP_DIR) - w32-strip --strip-debug .libs/$(PACKAGE).dll - w32-strip --strip-debug .libs/$(LIBRARY).dll - cp .libs/$(PACKAGE).dll .libs/$(LIBRARY).dll win32-*install.vbs $(WIN32_ZIP_DIR) - cp -ai $(PKG_NOTES) $(WIN32_ZIP_DIR) - zip -XKr -9 $(WIN32_DLL_ZIP) $(WIN32_ZIP_DIR) - rm -rf $(WIN32_ZIP_DIR) - w32-make clean - - - - -linux-x86-so-gz: - ./configure - $(MAKE) clean all - rm -f $(LINUX_X86_SO_TAR_GZ) - rm -rf $(LINUX_TAR_DIR) - mkdir $(LINUX_TAR_DIR) - strip --strip-debug .libs/$(PACKAGE).so - strip --strip-debug .libs/$(LIBRARY).so - cp .libs/$(PACKAGE).so .libs/$(LIBRARY).so util/install.sh $(LINUX_TAR_DIR) - cp -ai $(PKG_NOTES) $(LINUX_TAR_DIR) - tar --owner=0 --group=0 -zvcf $(LINUX_X86_SO_TAR_GZ) $(LINUX_TAR_DIR) - rm -rf $(LINUX_TAR_DIR) - - -release-dir: - mkdir -p $(RELEASE_DIR) - rm -f $(RELEASE_DIR)/$(distdir).tar.gz $(WIN32_DLL_ZIP) $(LINUX_X86_SO_TAR_GZ) - rmdir $(RELEASE_DIR) - mkdir $(RELEASE_DIR) - - -release: $(PKG_NOTES) release-dir win32-dll-zip linux-x86-so-gz dist - mv -v $(PACKAGE)-$(VERSION).tar.gz $(RELEASE_DIR)/ - - -pathcheck: - @echo "Install plugin: $(PLUGIN_DEST_DIR)" - @echo "Install support files: $(DATA_DEST_DIR)" - @echo "Install documentation: $(DOC_DEST_DIR)" - diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/win32-install.vbs geany-plugins-1.24.1+dfsg/geanylua/win32-install.vbs --- geany-plugins-1.24.0+20140222+git/geanylua/win32-install.vbs 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/win32-install.vbs 1970-01-01 00:00:00.000000000 +0000 @@ -1,129 +0,0 @@ -' Script to install geanylua on Windows - tested on Win98 and Win2k - -set ws = WScript.CreateObject("WScript.Shell") -set fso = CreateObject("Scripting.FileSystemObject") - - -sub FailMsg(Msg, FileName) - MsgBox Msg & vbCrLf & FileName & vbCrLf & vbCrLf & "Installation failed.", _ - 0 , "Installation error" -end sub - - - -function MakeFolder(FolderName) - RetVal=false - if fso.FolderExists(FolderName) then - RetVal=true - else - on error resume next - RetVal= fso.CreateFolder(FolderName) <> vbNull - end if - if not RetVal then FailMsg "Failed to create folder:" , FolderName - MakeFolder=RetVal -end function - - - - -function InstallFolder(srcname,trgname) - if not fso.FolderExists(srcname) then - FailMsg "Can't find source folder:'" , srcname - InstallFolder=false - exit function - end if - set src = fso.GetFolder(srcname) - on error resume next - src.Copy(trgname) - RetVal=fso.FolderExists(trgname) - if not RetVal then FailMsg "Failed to create folder:" , trgname - InstallFolder=RetVal -end function - - - - -function InstallFile(srcname,trgname) - InstallFile=false - if not fso.FileExists(srcname) then - FailMsg "Can't find install file:" , srcname - exit function - end if - if fso.FileExists(trgname) then - on error resume next - fso.DeleteFile(trgname) - end if - if fso.FileExists(trgname) then - FailMsg "Failed to overwite existing file:" , trgname - exit function - end if - set src = fso.GetFile(srcname) - on error resume next - src.Copy(trgname) - if not fso.FileExists(trgname) then - FailMsg "Failed to create file:" , trgname - exit function - end if - InstallFile=true -end function - - - - -sub DoInstall () - - dest = ws.SpecialFolders("AppData") - if not MakeFolder(dest) then exit sub - - dest=dest & "\Geany" - if not MakeFolder(dest) then exit sub - - dest=dest & "\plugins" - if not MakeFolder(dest) then exit sub - - dllname="geanylua.dll" - if fso.FileExists(dllname) then - srcname = dllname - elseif fso.FileExists(".libs\" & dllname) then - srcname = ".libs\" & dllname - else - FailMsg "Can't find install file:" , dllname - exit sub - end if - if not InstallFile(srcname, dest & "\" & dllname) then exit sub - - dest=dest & "\geanylua" - if not MakeFolder(dest) then exit sub - - libname="libgeanylua.dll" - if fso.FileExists(libname) then - srcname = libname - elseif fso.FileExists(".libs\" & libname) then - srcname = ".libs\" & libname - else - FailMsg "Can't find install file:" , libname - exit sub - end if - if not InstallFile(srcname, dest & "\" & libname) then exit sub - - - if not InstallFolder("examples", dest & "\examples") then exit sub - - if not InstallFolder("docs", dest & "\support") then exit sub - - MsgBox "Installation Complete!", 0, "GeanyLua Installation" - -end sub - - - - -RetVal = MsgBox(" -- This will install GeanyLua for the current user --" & _ - vbCrLf & vbCrLf & _ - "Be sure to close all running instances of Geany before continuing!" & _ - vbCrLf & vbCrLf & _ - "Do you wish to continue?", 4, "GeanyLua Installation") - -if RetVal = 6 then DoInstall() else _ - MsgBox "Installation Cancelled.", 0, "GeanyLua Installation" - diff -Nru geany-plugins-1.24.0+20140222+git/geanylua/win32-uninstall.vbs geany-plugins-1.24.1+dfsg/geanylua/win32-uninstall.vbs --- geany-plugins-1.24.0+20140222+git/geanylua/win32-uninstall.vbs 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanylua/win32-uninstall.vbs 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -set ws = WScript.CreateObject("WScript.Shell") -set fso = CreateObject("Scripting.FileSystemObject") - - -sub DeleteIfEmpty(FolderName) - if not fso.FolderExists(FolderName) then exit sub - set folder=fso.GetFolder(FolderName) - set subdirs = folder.SubFolders - set files = folder.Files - if ( files.Count + subdirs.Count ) = 0 then fso.DeleteFolder(FolderName) -end sub - - -sub DoUninstall() - plugins = ws.SpecialFolders("AppData") & "\Geany\plugins" - geanylua = plugins & "\geanylua" - dllname = geanylua & ".dll" - libname = geanylua & "\libgeanylua.dll" - examples = geanylua & "\examples" - support = geanylua & "\support" - docs=support & "\*.html" - on error resume next - if not fso.FolderExists(plugins) then - exit sub - end if - if fso.FileExists(dllname) then - fso.DeleteFile dllname,true - end if - if fso.FileExists(libname) then - fso.DeleteFile libname,true - end if - if fso.FolderExists(examples) then - fso.DeleteFolder examples,true - end if - if fso.FolderExists(support) then - fso.DeleteFile docs,true - DeleteIfEmpty(support) - end if - DeleteIfEmpty(geanylua) - - Msg="Uninstall Complete." - - if fso.FileExists(dllname) or fso.FolderExists(geanylua) then _ - Msg = Msg & vbCrLf & "( Some elements were not removed. )" - - MsgBox Msg,0,"GeanyLua Uninstall" - -end sub - - -RetVal = MsgBox(" -- This will uninstall GeanyLua for the current user --" & _ - vbCrLf & vbCrLf & _ - "Be sure to close all running instances of Geany before continuing!" & _ - vbCrLf & vbCrLf & _ - "Do you wish to continue?", 4, "GeanyLua Uninstall") - -if RetVal = 6 then DoUninstall() else _ - MsgBox "Uninstall Cancelled.", 0, "GeanyLua Uninstall" - diff -Nru geany-plugins-1.24.0+20140222+git/geanymacro/ABOUT geany-plugins-1.24.1+dfsg/geanymacro/ABOUT --- geany-plugins-1.24.0+20140222+git/geanymacro/ABOUT 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanymacro/ABOUT 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -geanymacro is a plugin to provide user defined macros for Geany. It started out -as part of the ConText feature parity plugin, which was split into individual -plugins to better suit Geany's ethos of being as light as possible while -allowing users to select which features they want to add to the core editor. -The idea was taken from a Text Editor for Windows called ConText. - -This plugin allows you to record and use your own macros. Macros are sequences -of actions that can then be repeated with a single key combination. So if you -had dozens of lines where you wanted to delete the last 2 characters, you could -simple start recording, press End, Backspace, Backspace, down line and then -stop recording. Then simply trigger the macro and it would automatically edit -the line and move to the next. You could then just repeatedly trigger the macro -to do as many lines as you want. - -Select Record Macro from the Tools menu and you will be prompted with a dialog -box. You need to specify a key combination that isn't being used, and a name -for the macro to help you identify it. Then press Record. What you do in the -editor is then recorded until you select Stop Recording Macro from the Tools -menu. Simply pressing the specified key combination will re-run the macro. - -To edit the macros you already have, select Edit Macro from the Tools menu. You -can select a macro and delete it, or re-record it. Selecting the edit option -allows you to view all the individual elements that make up the macro. You can -select a diferent command for each element, move them, add new elements, delete -elements, or if it's replace/insert, you can edit the text that replaces the -selected text, or is inserted. You can also click on a macro's name and change -it, or the key combination and re-define that assuming that the new name or key -combination are not already in use. - -The only thing to bear in mind is that undo and redo actions are not recorded, -and won't be replayed when the macro is re-run. - -You can alter the default behaviour of this plugin by selecting Plugin Manager -under the Tools menu, selecting this plugin, and cliking Preferences. -You can change: - -Save Macros when close Geany - If this is selected then Geany will save any - recorded macros and reload them for use the next time you open Geany, if - not they will be lost when Geany is closed. -Ask before replaceing existing Macros - If this is selected then if you try - recording a macro over an existing one it will check before over-writing - it, giving you the option of trying a different name or key trigger - combination, otherwise it will simply erase any existing macros with the - same name, or the same key trigger combination. \ No newline at end of file diff -Nru geany-plugins-1.24.0+20140222+git/geanymacro/Makefile.in geany-plugins-1.24.1+dfsg/geanymacro/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanymacro/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanymacro/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS +subdir = geanymacro +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanymacro +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanymacro/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanymacro/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanymacro/src/Makefile.in geany-plugins-1.24.1+dfsg/geanymacro/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanymacro/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanymacro/src/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanymacro/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanymacro_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanymacro_la_OBJECTS = geanymacro.lo +geanymacro_la_OBJECTS = $(am_geanymacro_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanymacro_la_SOURCES) +DIST_SOURCES = $(geanymacro_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanymacro.la +geanymacro_la_SOURCES = geanymacro.c +geanymacro_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanymacro/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanymacro/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanymacro.la: $(geanymacro_la_OBJECTS) $(geanymacro_la_DEPENDENCIES) $(EXTRA_geanymacro_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanymacro_la_OBJECTS) $(geanymacro_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanymacro.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyminiscript/doc/Doxyfile_gms geany-plugins-1.24.1+dfsg/geanyminiscript/doc/Doxyfile_gms --- geany-plugins-1.24.0+20140222+git/geanyminiscript/doc/Doxyfile_gms 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyminiscript/doc/Doxyfile_gms 1970-01-01 00:00:00.000000000 +0000 @@ -1,297 +0,0 @@ -# Doxyfile 1.5.5 - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- -DOXYFILE_ENCODING = UTF-8 -PROJECT_NAME = gms -PROJECT_NUMBER = 0.1 -OUTPUT_DIRECTORY = ./doc-doxygen/ -CREATE_SUBDIRS = NO -OUTPUT_LANGUAGE = English -BRIEF_MEMBER_DESC = YES -REPEAT_BRIEF = YES -ABBREVIATE_BRIEF = "The $name class" \ - "The $name widget" \ - "The $name file" \ - is \ - provides \ - specifies \ - contains \ - represents \ - a \ - an \ - the -ALWAYS_DETAILED_SEC = NO -INLINE_INHERITED_MEMB = NO -FULL_PATH_NAMES = YES -STRIP_FROM_PATH = ./ -STRIP_FROM_INC_PATH = -SHORT_NAMES = NO -JAVADOC_AUTOBRIEF = NO -QT_AUTOBRIEF = NO -MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO -INHERIT_DOCS = YES -SEPARATE_MEMBER_PAGES = NO -TAB_SIZE = 4 -ALIASES = -OPTIMIZE_OUTPUT_FOR_C = YES -OPTIMIZE_OUTPUT_JAVA = NO -OPTIMIZE_FOR_FORTRAN = NO -OPTIMIZE_OUTPUT_VHDL = NO -BUILTIN_STL_SUPPORT = NO -CPP_CLI_SUPPORT = NO -SIP_SUPPORT = NO -DISTRIBUTE_GROUP_DOC = NO -SUBGROUPING = YES -TYPEDEF_HIDES_STRUCT = NO -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- -EXTRACT_ALL = NO -EXTRACT_PRIVATE = NO -EXTRACT_STATIC = YES -EXTRACT_LOCAL_CLASSES = YES -EXTRACT_LOCAL_METHODS = NO -EXTRACT_ANON_NSPACES = NO -HIDE_UNDOC_MEMBERS = YES -HIDE_UNDOC_CLASSES = YES -HIDE_FRIEND_COMPOUNDS = NO -HIDE_IN_BODY_DOCS = NO -INTERNAL_DOCS = NO -CASE_SENSE_NAMES = YES -HIDE_SCOPE_NAMES = NO -SHOW_INCLUDE_FILES = YES -INLINE_INFO = YES -SORT_MEMBER_DOCS = YES -SORT_BRIEF_DOCS = NO -SORT_GROUP_NAMES = NO -SORT_BY_SCOPE_NAME = NO -GENERATE_TODOLIST = YES -GENERATE_TESTLIST = YES -GENERATE_BUGLIST = YES -GENERATE_DEPRECATEDLIST= YES -ENABLED_SECTIONS = -MAX_INITIALIZER_LINES = 30 -SHOW_USED_FILES = YES -SHOW_DIRECTORIES = NO -FILE_VERSION_FILTER = -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- -QUIET = NO -WARNINGS = YES -WARN_IF_UNDOCUMENTED = YES -WARN_IF_DOC_ERROR = YES -WARN_NO_PARAMDOC = NO -WARN_FORMAT = "$file:$line: $text" -WARN_LOGFILE = -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- -INPUT = ../src -INPUT_ENCODING = UTF-8 -FILE_PATTERNS = *.c \ - *.cc \ - *.cxx \ - *.cpp \ - *.c++ \ - *.d \ - *.java \ - *.ii \ - *.ixx \ - *.ipp \ - *.i++ \ - *.inl \ - *.h \ - *.hh \ - *.hxx \ - *.hpp \ - *.h++ \ - *.idl \ - *.odl \ - *.cs \ - *.php \ - *.php3 \ - *.inc \ - *.m \ - *.mm \ - *.dox \ - *.py \ - *.f90 \ - *.f \ - *.vhd \ - *.vhdl \ - *.C \ - *.CC \ - *.C++ \ - *.II \ - *.I++ \ - *.H \ - *.HH \ - *.H++ \ - *.CS \ - *.PHP \ - *.PHP3 \ - *.M \ - *.MM \ - *.PY \ - *.F90 \ - *.F \ - *.VHD \ - *.VHDL -RECURSIVE = NO -EXCLUDE = -EXCLUDE_SYMLINKS = NO -EXCLUDE_PATTERNS = -EXCLUDE_SYMBOLS = -EXAMPLE_PATH = -EXAMPLE_PATTERNS = * -EXAMPLE_RECURSIVE = NO -IMAGE_PATH = -INPUT_FILTER = -FILTER_PATTERNS = -FILTER_SOURCE_FILES = NO -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- -SOURCE_BROWSER = YES -INLINE_SOURCES = YES -STRIP_CODE_COMMENTS = YES -REFERENCED_BY_RELATION = NO -REFERENCES_RELATION = NO -REFERENCES_LINK_SOURCE = YES -USE_HTAGS = NO -VERBATIM_HEADERS = NO -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- -ALPHABETICAL_INDEX = NO -COLS_IN_ALPHA_INDEX = 5 -IGNORE_PREFIX = -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- -GENERATE_HTML = YES -HTML_OUTPUT = html -HTML_FILE_EXTENSION = .html -HTML_HEADER = -HTML_FOOTER = -HTML_STYLESHEET = -HTML_ALIGN_MEMBERS = YES -GENERATE_HTMLHELP = NO -GENERATE_DOCSET = NO -DOCSET_FEEDNAME = "Doxygen generated docs" -DOCSET_BUNDLE_ID = org.doxygen.Project -HTML_DYNAMIC_SECTIONS = NO -CHM_FILE = -HHC_LOCATION = -GENERATE_CHI = NO -BINARY_TOC = NO -TOC_EXPAND = NO -DISABLE_INDEX = NO -ENUM_VALUES_PER_LINE = 4 -GENERATE_TREEVIEW = NO -TREEVIEW_WIDTH = 250 -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- -GENERATE_LATEX = NO -LATEX_OUTPUT = latex -LATEX_CMD_NAME = latex -MAKEINDEX_CMD_NAME = makeindex -COMPACT_LATEX = NO -PAPER_TYPE = a4wide -EXTRA_PACKAGES = -LATEX_HEADER = -PDF_HYPERLINKS = YES -USE_PDFLATEX = YES -LATEX_BATCHMODE = NO -LATEX_HIDE_INDICES = NO -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- -GENERATE_RTF = NO -RTF_OUTPUT = rtf -COMPACT_RTF = NO -RTF_HYPERLINKS = NO -RTF_STYLESHEET_FILE = -RTF_EXTENSIONS_FILE = -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- -GENERATE_MAN = NO -MAN_OUTPUT = man -MAN_EXTENSION = .3 -MAN_LINKS = NO -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- -GENERATE_XML = NO -XML_OUTPUT = xml -XML_SCHEMA = -XML_DTD = -XML_PROGRAMLISTING = YES -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- -GENERATE_AUTOGEN_DEF = NO -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- -GENERATE_PERLMOD = NO -PERLMOD_LATEX = NO -PERLMOD_PRETTY = YES -PERLMOD_MAKEVAR_PREFIX = -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- -ENABLE_PREPROCESSING = YES -MACRO_EXPANSION = YES -EXPAND_ONLY_PREDEF = YES -SEARCH_INCLUDES = YES -INCLUDE_PATH = -INCLUDE_FILE_PATTERNS = -PREDEFINED = -EXPAND_AS_DEFINED = -SKIP_FUNCTION_MACROS = YES -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- -TAGFILES = -GENERATE_TAGFILE = -ALLEXTERNALS = NO -EXTERNAL_GROUPS = YES -PERL_PATH = /usr/bin/perl -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- -CLASS_DIAGRAMS = NO -MSCGEN_PATH = -HIDE_UNDOC_RELATIONS = YES -HAVE_DOT = YES -CLASS_GRAPH = YES -COLLABORATION_GRAPH = YES -GROUP_GRAPHS = YES -UML_LOOK = NO -TEMPLATE_RELATIONS = NO -INCLUDE_GRAPH = YES -INCLUDED_BY_GRAPH = YES -CALL_GRAPH = YES -CALLER_GRAPH = NO -GRAPHICAL_HIERARCHY = YES -DIRECTORY_GRAPH = YES -DOT_IMAGE_FORMAT = png -DOT_PATH = -DOTFILE_DIRS = -DOT_GRAPH_MAX_NODES = 50 -MAX_DOT_GRAPH_DEPTH = 1000 -DOT_TRANSPARENT = YES -DOT_MULTI_TARGETS = NO -GENERATE_LEGEND = YES -DOT_CLEANUP = YES -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- -SEARCHENGINE = NO Binary files /tmp/CpX7UnuPPT/geany-plugins-1.24.0+20140222+git/geanyminiscript/doc/gms_help.pdf and /tmp/BpMK8ffG3q/geany-plugins-1.24.1+dfsg/geanyminiscript/doc/gms_help.pdf differ diff -Nru geany-plugins-1.24.0+20140222+git/geanyminiscript/Makefile.in geany-plugins-1.24.1+dfsg/geanyminiscript/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyminiscript/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyminiscript/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = geanyminiscript +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanyminiscript +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyminiscript/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyminiscript/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyminiscript/src/Makefile.in geany-plugins-1.24.1+dfsg/geanyminiscript/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyminiscript/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyminiscript/src/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,803 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanyminiscript/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanyminiscript_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanyminiscript_la_OBJECTS = gms.lo gms_gui.lo +geanyminiscript_la_OBJECTS = $(am_geanyminiscript_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanyminiscript_la_SOURCES) +DIST_SOURCES = $(geanyminiscript_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanyminiscript.la +geanyminiscript_la_SOURCES = gms.c gms.h gms_gui.c gms_gui.h gms_debug.h +geanyminiscript_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyminiscript/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyminiscript/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanyminiscript.la: $(geanyminiscript_la_OBJECTS) $(geanyminiscript_la_DEPENDENCIES) $(EXTRA_geanyminiscript_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanyminiscript_la_OBJECTS) $(geanyminiscript_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gms.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gms_gui.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/ABOUT geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/ABOUT --- geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/ABOUT 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/ABOUT 1970-01-01 00:00:00.000000000 +0000 @@ -1,62 +0,0 @@ -geanynumberedbookmarks is a plugin to provide users with 10 numbered bookmarks -(in addition to the usual bookkmarks). It started out as part of the ConText -feature parity plugin, which was split into individual plugins to better suit -Geany's ethos of being as light as possible while allowing users to select -which features they want to add to the core editor. The idea was taken from a -Text Editor for Windows called ConText. - -Normaly if you had more than one bookmark, you would have to cycle through them -until you reached the one you wanted. With this plugin you can go straight to -the bookmark that you want with a single key combination. - -To set a numbered bookmark press Ctrl+Shift+(a number from 0 to 9). You will -see a marker apear next to the line number. If you press Ctrl+Shift+(a number) -on a line that already has that bookmark number then it removes the bookmark, -otherwise it will move the bookmark there if it was set on a different line, -or create it if it had not already been set. To move to a previously set -bookmark press Ctrl+(bookmark number). You can also specify when in the -bookmarked line the cursor is moved to when you move to a previously set -bookmark. You can choose to move to the start of the line, the end of the line, -how far into the line the cursor was when the bookmark was set, or try and keep -the cursor in the column that you are in at the moment (line length allowing). -Only the most recently set bookmark on a line will be shown, but you can have -more than one bookmark per line. This plugin does not interfer with regular -bookmarks. When a file is saved, Geany will remember the numbered bookmarks and -make sure that they are set the next time you open the file. - -This plugin also will remember the state of folds in a file (open or not) if -you want it to and re-apply this the next time you open the file. - -This plugin will also remember standard non-numbered bookmarks and restore -these when a file is next reloaded if you want it to. - -You can alter the default behaviour of this plugin by selecting Plugin Manager -under the Tools menu, selecting this plugin, and cliking Preferences. -You can change: -Remember fold state - if this is set then this plugin will remember the state - of any folds along with the numbered bookmarks and set them when the file - is next loaded. -Center view when goto bookmark - If this is set it will try to make sure that - the numbered bookmark that you are going to is in the center of the screen, - otherwise it will simply be on the screen somewhere. -Move to... - This allows you to choose where in the bookmarked line the cursor - is placed when you move to a bookmarked line. -Save file settings... - This allows you the option of saving the settings of a - file (the numbered bookmark positions, folding states, and standard - bookmark positions) in either the central settings file for geany plugins, - or to a file with the same name but a suffix (by default this is ".gnbs.conf") - in the same directory as the file. This allows the user the ability to - synchronise the settings for a file along with the file itself across more - than one computer. The default suffix can be changed by editing the - numbered bookmarks pluggin settings file. This will vary from OS to OS but - will always be "settings.conf" in a directory called - "Geany_Numbered_Bookmarks". On my OS it's - ".config/geany/plugins/Geany_Numbered_Bookmarks/settings.conf" in my home - directory, but otherwise you'll have to search for it. In the Settings - section of the file near the top will be a line - "File_Details_Suffix=.gnbs.conf". Simply change this to whatever you would - prefer (if geany is running while you edit this file it may over-write your - new suffix so best close geany before editing this file). -Remember normal Bookmarks - If this is set then the plugin will remember - standard non-numbered bookmarks, and restore them when the file is next - loaded. diff -Nru geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/Makefile.in geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README THANKS +subdir = geanynumberedbookmarks +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanynumberedbookmarks +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanynumberedbookmarks/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanynumberedbookmarks/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/src/Makefile.in geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanynumberedbookmarks/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanynumberedbookmarks/src/Makefile.in 2014-04-13 17:12:43.000000000 +0000 @@ -0,0 +1,792 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanynumberedbookmarks/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanynumberedbookmarks_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanynumberedbookmarks_la_OBJECTS = geanynumberedbookmarks.lo +geanynumberedbookmarks_la_OBJECTS = \ + $(am_geanynumberedbookmarks_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanynumberedbookmarks_la_SOURCES) +DIST_SOURCES = $(geanynumberedbookmarks_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanynumberedbookmarks.la +geanynumberedbookmarks_la_SOURCES = geanynumberedbookmarks.c +geanynumberedbookmarks_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanynumberedbookmarks/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanynumberedbookmarks/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanynumberedbookmarks.la: $(geanynumberedbookmarks_la_OBJECTS) $(geanynumberedbookmarks_la_DEPENDENCIES) $(EXTRA_geanynumberedbookmarks_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanynumberedbookmarks_la_OBJECTS) $(geanynumberedbookmarks_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanynumberedbookmarks.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypg/configure.ac geany-plugins-1.24.1+dfsg/geanypg/configure.ac --- geany-plugins-1.24.0+20140222+git/geanypg/configure.ac 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypg/configure.ac 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -AC_INIT([geanypg], [0.1], [alves.h88@gmail.com]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign]) -AC_PROG_CC -AC_DISABLE_STATIC -AC_PROG_LIBTOOL - -# checking for gpgme -AM_PATH_GPGME() - -# checking for Geany -PKG_CHECK_MODULES(GEANY, [geany >= 0.20]) -AC_SUBST(GEANY_CFLAGS) -AC_SUBST(GEANY_LIBS) - -libdir="`$PKG_CONFIG --variable=libdir geany`/geany" -datadir="`$PKG_CONFIG --variable=datadir geany`/geany/plugins/${PACKAGE_NAME}" - -AC_CONFIG_HEADER([config.h]) -AC_CONFIG_FILES([Makefile src/Makefile]) -AC_OUTPUT diff -Nru geany-plugins-1.24.0+20140222+git/geanypg/doc/geanypg.html geany-plugins-1.24.1+dfsg/geanypg/doc/geanypg.html --- geany-plugins-1.24.0+20140222+git/geanypg/doc/geanypg.html 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypg/doc/geanypg.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,97 +0,0 @@ - - - -GnuPG plugin for Geany - Introduction - - -

GnuPG encryption plugin for the Geany IDE


-

-This is a plugin for the Geany IDE - to provide GnuPG encryption. -

-

Installation

-This plugin is distributed with geany-plugins, to install check the -documentation of the geany-plugins release.
-Like all plugins GeanyPG can be activated via the Tools > Plugin -Manager dialog. -

-

Using GeanyPG

-Once the plugin has been activated a new sub-menu named `GeanyPG' will appear in the Tools menu.
-This sub-menu contains the following options: -
    -
  • Encrypt
  • -
  • Sign
  • -
  • Decrypt / Verify
  • -
  • Verify detached signature
  • -
-

-

Encryption
-To encrypt a file, simply choose Encrypt from the menu. A dialog will -open allowing you to select any recipients. At the bottom of the dialog -you also have to option to choose a key to sign the text with (Default -is None). -

-When you press Ok, a few things can happen. If you haven't selected any -recipients a new dialog will open asking you if you want to use a -symmetric cipher. If you choose yes you will be asked for a passphrase -that will be used to encrypt the text.

-What happens when you have selected one or more recipients, or entered -a passphrase for a symmetric cipher, depends on whether any text was -selected. If you have selected text, only the selected text will -be encrypted, otherwise the whole file will be encrypted.
-Of course, if you have chosen to sign the text as well, you will first -be asked for the passphrase of the selected private key. -

-

Signing without encrypting
-To sign some text without also encrypting it, choose Sign from the menu. -You will be asked which private key you want to use and to enter the -passphrase for that key.
-Like when encrypting the text, if you have selected anything, only the -selected text will be signed. Otherwise the whole file will be signed. -

-

Decrypting and Verifying
-To decrypt a file or verify an inline signature just select the GPG -code and choose Decrypt / Verify from the menu. When decrypting you -will of course be asked to enter a passphrase. -

-

Verifying detached signatures
-To verify a detached signature choose the last option from the menu. A -dialog will open where you can select a .sig or .asc file with a -detached signature. -

-

Development

-You can checkout the current source code from the Subversion repository -at Sourceforge.net.

-Get the code from:
-svn checkout -http://geany-plugins.svn.sourceforge.net/svnroot/geany-plugins/trunk/geany-plugins/geanypg -

-If you want to create a patch, please respect the license of GeanyPG as -well as intellectual property of third parties. Patches that should be -included to the default distribution must be licensed under the same -conditions as GeanyPG by the copyright owner (GPL2+). - -

-

Known issues

-At the moment, the use of pinentry is only supported on unix-like -systems. On Windows gpg-agent has to be used. -

-For more recent information all reported issues will be tracked at - -http://sourceforge.net/tracker/?group_id=222729 -

-

License

-GeanyPG and all its parts is distributed 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. A copy of this license can be found in the file COPYING -included with the source code of this program. If not, you will be -able to get a copy by contacting the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -

-

Bugs, questions

-If you found any bugs or want to provide a patch, please contact Hans -Alves (alves(dot)h88(at)gmail(dot)com). -

- - diff -Nru geany-plugins-1.24.0+20140222+git/geanypg/Makefile.in geany-plugins-1.24.1+dfsg/geanypg/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypg/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypg/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = geanypg +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanypg +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypg/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypg/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypg/src/Makefile.in geany-plugins-1.24.1+dfsg/geanypg/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypg/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypg/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,898 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanypg/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanypg_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) +am_geanypg_la_OBJECTS = geanypg_la-helper_functions.lo \ + geanypg_la-encrypt_cb.lo geanypg_la-key_selection_dialog.lo \ + geanypg_la-sign_cb.lo geanypg_la-verify_cb.lo \ + geanypg_la-decrypt_cb.lo geanypg_la-geanypg.lo \ + geanypg_la-pinentry.lo geanypg_la-verify_aux.lo +geanypg_la_OBJECTS = $(am_geanypg_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanypg_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanypg_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanypg_la_SOURCES) +DIST_SOURCES = $(geanypg_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanypg.la +geanypg_la_SOURCES = \ + helper_functions.c \ + encrypt_cb.c \ + key_selection_dialog.c \ + sign_cb.c \ + verify_cb.c \ + decrypt_cb.c \ + geanypg.c \ + geanypg.h \ + pinentry.c \ + verify_aux.c + +geanypg_la_LIBADD = \ + $(COMMONLIBS) \ + $(GPGME_LIBS) + +geanypg_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(GPGME_CFLAGS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypg/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypg/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanypg.la: $(geanypg_la_OBJECTS) $(geanypg_la_DEPENDENCIES) $(EXTRA_geanypg_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanypg_la_LINK) -rpath $(geanypluginsdir) $(geanypg_la_OBJECTS) $(geanypg_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-decrypt_cb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-encrypt_cb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-geanypg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-helper_functions.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-key_selection_dialog.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-pinentry.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-sign_cb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-verify_aux.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypg_la-verify_cb.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanypg_la-helper_functions.lo: helper_functions.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-helper_functions.lo -MD -MP -MF $(DEPDIR)/geanypg_la-helper_functions.Tpo -c -o geanypg_la-helper_functions.lo `test -f 'helper_functions.c' || echo '$(srcdir)/'`helper_functions.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-helper_functions.Tpo $(DEPDIR)/geanypg_la-helper_functions.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='helper_functions.c' object='geanypg_la-helper_functions.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-helper_functions.lo `test -f 'helper_functions.c' || echo '$(srcdir)/'`helper_functions.c + +geanypg_la-encrypt_cb.lo: encrypt_cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-encrypt_cb.lo -MD -MP -MF $(DEPDIR)/geanypg_la-encrypt_cb.Tpo -c -o geanypg_la-encrypt_cb.lo `test -f 'encrypt_cb.c' || echo '$(srcdir)/'`encrypt_cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-encrypt_cb.Tpo $(DEPDIR)/geanypg_la-encrypt_cb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='encrypt_cb.c' object='geanypg_la-encrypt_cb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-encrypt_cb.lo `test -f 'encrypt_cb.c' || echo '$(srcdir)/'`encrypt_cb.c + +geanypg_la-key_selection_dialog.lo: key_selection_dialog.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-key_selection_dialog.lo -MD -MP -MF $(DEPDIR)/geanypg_la-key_selection_dialog.Tpo -c -o geanypg_la-key_selection_dialog.lo `test -f 'key_selection_dialog.c' || echo '$(srcdir)/'`key_selection_dialog.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-key_selection_dialog.Tpo $(DEPDIR)/geanypg_la-key_selection_dialog.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='key_selection_dialog.c' object='geanypg_la-key_selection_dialog.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-key_selection_dialog.lo `test -f 'key_selection_dialog.c' || echo '$(srcdir)/'`key_selection_dialog.c + +geanypg_la-sign_cb.lo: sign_cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-sign_cb.lo -MD -MP -MF $(DEPDIR)/geanypg_la-sign_cb.Tpo -c -o geanypg_la-sign_cb.lo `test -f 'sign_cb.c' || echo '$(srcdir)/'`sign_cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-sign_cb.Tpo $(DEPDIR)/geanypg_la-sign_cb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sign_cb.c' object='geanypg_la-sign_cb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-sign_cb.lo `test -f 'sign_cb.c' || echo '$(srcdir)/'`sign_cb.c + +geanypg_la-verify_cb.lo: verify_cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-verify_cb.lo -MD -MP -MF $(DEPDIR)/geanypg_la-verify_cb.Tpo -c -o geanypg_la-verify_cb.lo `test -f 'verify_cb.c' || echo '$(srcdir)/'`verify_cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-verify_cb.Tpo $(DEPDIR)/geanypg_la-verify_cb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='verify_cb.c' object='geanypg_la-verify_cb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-verify_cb.lo `test -f 'verify_cb.c' || echo '$(srcdir)/'`verify_cb.c + +geanypg_la-decrypt_cb.lo: decrypt_cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-decrypt_cb.lo -MD -MP -MF $(DEPDIR)/geanypg_la-decrypt_cb.Tpo -c -o geanypg_la-decrypt_cb.lo `test -f 'decrypt_cb.c' || echo '$(srcdir)/'`decrypt_cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-decrypt_cb.Tpo $(DEPDIR)/geanypg_la-decrypt_cb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='decrypt_cb.c' object='geanypg_la-decrypt_cb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-decrypt_cb.lo `test -f 'decrypt_cb.c' || echo '$(srcdir)/'`decrypt_cb.c + +geanypg_la-geanypg.lo: geanypg.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-geanypg.lo -MD -MP -MF $(DEPDIR)/geanypg_la-geanypg.Tpo -c -o geanypg_la-geanypg.lo `test -f 'geanypg.c' || echo '$(srcdir)/'`geanypg.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-geanypg.Tpo $(DEPDIR)/geanypg_la-geanypg.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypg.c' object='geanypg_la-geanypg.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-geanypg.lo `test -f 'geanypg.c' || echo '$(srcdir)/'`geanypg.c + +geanypg_la-pinentry.lo: pinentry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-pinentry.lo -MD -MP -MF $(DEPDIR)/geanypg_la-pinentry.Tpo -c -o geanypg_la-pinentry.lo `test -f 'pinentry.c' || echo '$(srcdir)/'`pinentry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-pinentry.Tpo $(DEPDIR)/geanypg_la-pinentry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pinentry.c' object='geanypg_la-pinentry.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-pinentry.lo `test -f 'pinentry.c' || echo '$(srcdir)/'`pinentry.c + +geanypg_la-verify_aux.lo: verify_aux.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -MT geanypg_la-verify_aux.lo -MD -MP -MF $(DEPDIR)/geanypg_la-verify_aux.Tpo -c -o geanypg_la-verify_aux.lo `test -f 'verify_aux.c' || echo '$(srcdir)/'`verify_aux.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypg_la-verify_aux.Tpo $(DEPDIR)/geanypg_la-verify_aux.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='verify_aux.c' object='geanypg_la-verify_aux.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanypg_la_CFLAGS) $(CFLAGS) -c -o geanypg_la-verify_aux.lo `test -f 'verify_aux.c' || echo '$(srcdir)/'`verify_aux.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyprj/Makefile.in geany-plugins-1.24.1+dfsg/geanyprj/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyprj/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyprj/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README THANKS TODO +subdir = geanyprj +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src tests +plugin = geanyprj +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyprj/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyprj/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyprj/src/Makefile.in geany-plugins-1.24.1+dfsg/geanyprj/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyprj/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyprj/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,862 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanyprj/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanyprj_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanyprj_la_OBJECTS = geanyprj_la-geanyprj.lo geanyprj_la-menu.lo \ + geanyprj_la-project.lo geanyprj_la-sidebar.lo \ + geanyprj_la-utils.lo geanyprj_la-xproject.lo +geanyprj_la_OBJECTS = $(am_geanyprj_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanyprj_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanyprj_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanyprj_la_SOURCES) +DIST_SOURCES = $(geanyprj_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanyprj.la +geanyprj_la_SOURCES = geanyprj.c \ + geanyprj.h \ + menu.c \ + project.c \ + sidebar.c \ + utils.c \ + xproject.c + +geanyprj_la_CFLAGS = $(AM_CFLAGS) +geanyprj_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyprj/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyprj/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanyprj.la: $(geanyprj_la_OBJECTS) $(geanyprj_la_DEPENDENCIES) $(EXTRA_geanyprj_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanyprj_la_LINK) -rpath $(geanypluginsdir) $(geanyprj_la_OBJECTS) $(geanyprj_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-geanyprj.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-project.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-sidebar.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyprj_la-xproject.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanyprj_la-geanyprj.lo: geanyprj.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-geanyprj.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-geanyprj.Tpo -c -o geanyprj_la-geanyprj.lo `test -f 'geanyprj.c' || echo '$(srcdir)/'`geanyprj.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-geanyprj.Tpo $(DEPDIR)/geanyprj_la-geanyprj.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanyprj.c' object='geanyprj_la-geanyprj.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-geanyprj.lo `test -f 'geanyprj.c' || echo '$(srcdir)/'`geanyprj.c + +geanyprj_la-menu.lo: menu.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-menu.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-menu.Tpo -c -o geanyprj_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-menu.Tpo $(DEPDIR)/geanyprj_la-menu.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='geanyprj_la-menu.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c + +geanyprj_la-project.lo: project.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-project.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-project.Tpo -c -o geanyprj_la-project.lo `test -f 'project.c' || echo '$(srcdir)/'`project.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-project.Tpo $(DEPDIR)/geanyprj_la-project.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='project.c' object='geanyprj_la-project.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-project.lo `test -f 'project.c' || echo '$(srcdir)/'`project.c + +geanyprj_la-sidebar.lo: sidebar.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-sidebar.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-sidebar.Tpo -c -o geanyprj_la-sidebar.lo `test -f 'sidebar.c' || echo '$(srcdir)/'`sidebar.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-sidebar.Tpo $(DEPDIR)/geanyprj_la-sidebar.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sidebar.c' object='geanyprj_la-sidebar.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-sidebar.lo `test -f 'sidebar.c' || echo '$(srcdir)/'`sidebar.c + +geanyprj_la-utils.lo: utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-utils.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-utils.Tpo -c -o geanyprj_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-utils.Tpo $(DEPDIR)/geanyprj_la-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='geanyprj_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c + +geanyprj_la-xproject.lo: xproject.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -MT geanyprj_la-xproject.lo -MD -MP -MF $(DEPDIR)/geanyprj_la-xproject.Tpo -c -o geanyprj_la-xproject.lo `test -f 'xproject.c' || echo '$(srcdir)/'`xproject.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyprj_la-xproject.Tpo $(DEPDIR)/geanyprj_la-xproject.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xproject.c' object='geanyprj_la-xproject.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyprj_la_CFLAGS) $(CFLAGS) -c -o geanyprj_la-xproject.lo `test -f 'xproject.c' || echo '$(srcdir)/'`xproject.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyprj/tests/Makefile.in geany-plugins-1.24.1+dfsg/geanyprj/tests/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyprj/tests/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyprj/tests/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,1140 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver +@UNITTESTS_TRUE@TESTS = unittests$(EXEEXT) +@UNITTESTS_TRUE@check_PROGRAMS = unittests$(EXEEXT) +subdir = geanyprj/tests +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__unittests_SOURCES_DIST = unittests.c ../src/utils.c +@UNITTESTS_TRUE@am_unittests_OBJECTS = unittests-unittests.$(OBJEXT) \ +@UNITTESTS_TRUE@ unittests-utils.$(OBJEXT) +unittests_OBJECTS = $(am_unittests_OBJECTS) +am__DEPENDENCIES_1 = +@UNITTESTS_TRUE@unittests_DEPENDENCIES = $(am__DEPENDENCIES_1) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +unittests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(unittests_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(unittests_SOURCES) +DIST_SOURCES = $(am__unittests_SOURCES_DIST) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = @EXEEXT@ .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +@UNITTESTS_TRUE@AM_CFLAGS = \ +@UNITTESTS_TRUE@ -DLOCALEDIR=\""$(LOCALEDIR)"\" \ +@UNITTESTS_TRUE@ -DPREFIX=\""$(prefix)"\" \ +@UNITTESTS_TRUE@ -DDOCDIR=\""$(docdir)"\" \ +@UNITTESTS_TRUE@ -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ +@UNITTESTS_TRUE@ -DPKGDATADIR=\""$(pkgdatadir)"\" \ +@UNITTESTS_TRUE@ -DLIBDIR=\""$(libdir)"\" \ +@UNITTESTS_TRUE@ -DPKGLIBDIR=\""$(pkglibdir)"\" \ +@UNITTESTS_TRUE@ $(GEANY_CFLAGS) \ +@UNITTESTS_TRUE@ $(GP_CFLAGS) + +@UNITTESTS_TRUE@AM_LDFLAGS = -module -avoid-version +@UNITTESTS_TRUE@COMMONLIBS = \ +@UNITTESTS_TRUE@ $(GEANY_LIBS) \ +@UNITTESTS_TRUE@ $(INTLLIBS) + +@UNITTESTS_TRUE@unittests_SOURCES = unittests.c ../src/utils.c +@UNITTESTS_TRUE@unittests_CFLAGS = $(GEANY_CFLAGS) -I$(srcdir)/../src -DUNITTESTS +@UNITTESTS_TRUE@unittests_LDADD = @GEANY_LIBS@ $(INTLLIBS) @CHECK_LIBS@ +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyprj/tests/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyprj/tests/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +unittests$(EXEEXT): $(unittests_OBJECTS) $(unittests_DEPENDENCIES) $(EXTRA_unittests_DEPENDENCIES) + @rm -f unittests$(EXEEXT) + $(AM_V_CCLD)$(unittests_LINK) $(unittests_OBJECTS) $(unittests_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittests-unittests.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittests-utils.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +unittests-unittests.o: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.o -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c + +unittests-unittests.obj: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.obj -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` + +unittests-utils.o: ../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-utils.o -MD -MP -MF $(DEPDIR)/unittests-utils.Tpo -c -o unittests-utils.o `test -f '../src/utils.c' || echo '$(srcdir)/'`../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-utils.Tpo $(DEPDIR)/unittests-utils.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../src/utils.c' object='unittests-utils.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-utils.o `test -f '../src/utils.c' || echo '$(srcdir)/'`../src/utils.c + +unittests-utils.obj: ../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-utils.obj -MD -MP -MF $(DEPDIR)/unittests-utils.Tpo -c -o unittests-utils.obj `if test -f '../src/utils.c'; then $(CYGPATH_W) '../src/utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/utils.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-utils.Tpo $(DEPDIR)/unittests-utils.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../src/utils.c' object='unittests-utils.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-utils.obj `if test -f '../src/utils.c'; then $(CYGPATH_W) '../src/utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/utils.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + else \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +unittests.log: unittests$(EXEEXT) + @p='unittests$(EXEEXT)'; \ + b='unittests'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +@am__EXEEXT_TRUE@.test$(EXEEXT).log: +@am__EXEEXT_TRUE@ @p='$<'; \ +@am__EXEEXT_TRUE@ $(am__set_b); \ +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \ + clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/make.bat geany-plugins-1.24.1+dfsg/geanypy/doc/make.bat --- geany-plugins-1.24.0+20140222+git/geanypy/doc/make.bat 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/make.bat 1970-01-01 00:00:00.000000000 +0000 @@ -1,170 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set BUILDDIR=build -set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source -if NOT "%PAPER%" == "" ( - set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% -) - -if "%1" == "" goto help - -if "%1" == "help" ( - :help - echo.Please use `make ^` where ^ is one of - echo. html to make standalone HTML files - echo. dirhtml to make HTML files named index.html in directories - echo. singlehtml to make a single large HTML file - echo. pickle to make pickle files - echo. json to make JSON files - echo. htmlhelp to make HTML files and a HTML help project - echo. qthelp to make HTML files and a qthelp project - echo. devhelp to make HTML files and a Devhelp project - echo. epub to make an epub - echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter - echo. text to make text files - echo. man to make manual pages - echo. changes to make an overview over all changed/added/deprecated items - echo. linkcheck to check all external links for integrity - echo. doctest to run all doctests embedded in the documentation if enabled - goto end -) - -if "%1" == "clean" ( - for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i - del /q /s %BUILDDIR%\* - goto end -) - -if "%1" == "html" ( - %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/html. - goto end -) - -if "%1" == "dirhtml" ( - %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. - goto end -) - -if "%1" == "singlehtml" ( - %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. - goto end -) - -if "%1" == "pickle" ( - %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the pickle files. - goto end -) - -if "%1" == "json" ( - %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can process the JSON files. - goto end -) - -if "%1" == "htmlhelp" ( - %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run HTML Help Workshop with the ^ -.hhp project file in %BUILDDIR%/htmlhelp. - goto end -) - -if "%1" == "qthelp" ( - %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; now you can run "qcollectiongenerator" with the ^ -.qhcp project file in %BUILDDIR%/qthelp, like this: - echo.^> qcollectiongenerator %BUILDDIR%\qthelp\GeanyPy.qhcp - echo.To view the help file: - echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GeanyPy.ghc - goto end -) - -if "%1" == "devhelp" ( - %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. - goto end -) - -if "%1" == "epub" ( - %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The epub file is in %BUILDDIR%/epub. - goto end -) - -if "%1" == "latex" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - if errorlevel 1 exit /b 1 - echo. - echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "text" ( - %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The text files are in %BUILDDIR%/text. - goto end -) - -if "%1" == "man" ( - %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man - if errorlevel 1 exit /b 1 - echo. - echo.Build finished. The manual pages are in %BUILDDIR%/man. - goto end -) - -if "%1" == "changes" ( - %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes - if errorlevel 1 exit /b 1 - echo. - echo.The overview file is in %BUILDDIR%/changes. - goto end -) - -if "%1" == "linkcheck" ( - %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck - if errorlevel 1 exit /b 1 - echo. - echo.Link check complete; look for any errors in the above output ^ -or in %BUILDDIR%/linkcheck/output.txt. - goto end -) - -if "%1" == "doctest" ( - %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest - if errorlevel 1 exit /b 1 - echo. - echo.Testing of doctests in the sources finished, look at the ^ -results in %BUILDDIR%/doctest/output.txt. - goto end -) - -:end diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/api.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/api.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/api.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/api.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,67 +0,0 @@ -API Documentation -***************** - -GeanyPy's API mimics quite closely Geany's C plugin API. The following -documentation is broken down by file/module: - -The :mod:`geany` modules: - -.. toctree:: - :maxdepth: 2 - - app.rst - dialogs.rst - document.rst - -The :mod:`geany` package and module -=================================== - -.. module:: geany - -All of GeanyPy's bindings are inside the :mod:`geany` package which also -contains some stuff in it's :mod:`__init__` file, acting like a module itself. - - -.. data:: app - - An instance of :class:`app.App` to store application information. - -.. data:: main_widgets - - An instance of :class:`mainwidgets.MainWidgets` to provide access to - Geany's important GTK+ widgets. - -.. data:: signals - - An instance of :class:`signalmanager.SignalManager` which manages the - connection, disconnection, and emission of Geany's signals. You can - use this as follows:: - - geany.signals.connect('document-open', some_callback_function) - -.. function:: is_realized() - - This function, which is actually in the :mod:`geany.main` module will tell - you if Geany's main window is realized (shown). - -.. function:: locale_init() - - Again, from the :mod:`geany.main` module, this will initialize the `gettext` - translation system. - -.. function:: reload_configuration() - - Also from the :mod:`geany.main` module, this function will cause Geany to - reload most if it's configuration files without restarting. - - Currently the following files are reloaded: - - * all template files - * new file templates - * the New (with template) menus will be updated - * Snippets (snippets.conf) - * filetype extensions (filetype_extensions.conf) - * `settings` and `build_settings` sections of the filetype definition files. - - Plugins may call this function if they changed any of these files (e.g. a - configuration file editor plugin). diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/app.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/app.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/app.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/app.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -The :mod:`app` module -********************* - -.. module:: app - :synopsis: Application settings - -This modules contains a class to access application settings. - -:class:`App` Objects -==================== - -.. class:: App - -This class is initialized automatically and by the :mod:`geany` module and -shouldn't be initalized by users. An instance of it is available through -the :data:`geany.app` attribute of the :mod:`geany` module. - -All members of the :class:`App` are read-only properties. - - .. attribute:: App.configdir - - User configuration directory, usually ~/.config/geany. To store configuration - files for your plugin, it's a good idea to use something like this:: - - conf_path = os.path.join(geany.app.configdir, "plugins", "yourplugin", - "yourconfigfile.conf") - - .. attribute:: App.debug_mode - - If True, debug messages should be printed. For example, if you want to make - a :py:func:`print` function that only prints when :attr:`App.debug_mode` - is active, you could do something like this:: - - def debug_print(message): - if geany.app.debug_mode: - print(message) - - .. attribute:: App.project - - If not :py:obj:`None`, the a :class:`project.Project` for currently active project. diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/conf.py geany-plugins-1.24.1+dfsg/geanypy/doc/source/conf.py --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/conf.py 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/conf.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,216 +0,0 @@ -# -*- coding: utf-8 -*- -# -# GeanyPy documentation build configuration file, created by -# sphinx-quickstart on Sun Aug 7 12:42:52 2011. -# -# This file is execfile()d with the current directory set to its containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -import sys, os - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ----------------------------------------------------- - -# If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be extensions -# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode'] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix of source filenames. -source_suffix = '.rst' - -# The encoding of source files. -#source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = u'GeanyPy' -copyright = u'2011, Matthew Brush (mbrush [at] codebrainz [dot] ca)' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = '1.0' -# The full version, including alpha/beta/rc tags. -release = '1.0' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -#language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -#today = '' -# Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = [] - -# The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -#add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -#show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] - - -# -- Options for HTML output --------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'default' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -#html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -#html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -#html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -#html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -#html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -#html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -#html_additional_pages = {} - -# If false, no module index is generated. -#html_domain_indices = True - -# If false, no index is generated. -#html_use_index = True - -# If true, the index is split into individual pages for each letter. -#html_split_index = False - -# If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -#html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = 'GeanyPydoc' - - -# -- Options for LaTeX output -------------------------------------------------- - -# The paper size ('letter' or 'a4'). -#latex_paper_size = 'letter' - -# The font size ('10pt', '11pt' or '12pt'). -#latex_font_size = '10pt' - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, author, documentclass [howto/manual]). -latex_documents = [ - ('index', 'GeanyPy.tex', u'GeanyPy Documentation', - u'Matthew Brush \\textless{}mbrush@codebrainz.ca\\textgreater{}', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -#latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -#latex_use_parts = False - -# If true, show page references after internal links. -#latex_show_pagerefs = False - -# If true, show URL addresses after external links. -#latex_show_urls = False - -# Additional stuff for the LaTeX preamble. -#latex_preamble = '' - -# Documents to append as an appendix to all manuals. -#latex_appendices = [] - -# If false, no module index is generated. -#latex_domain_indices = True - - -# -- Options for manual page output -------------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ('index', 'geanypy', u'GeanyPy Documentation', - [u'Matthew Brush '], 1) -] diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/dialogs.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/dialogs.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/dialogs.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/dialogs.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -The :mod:`dialogs` module -************************* - -.. module:: dialogs - :synopsis: Showing dialogs to the user - -This module contains some help functions to show file-related dialogs, -miscellaneous dialogs, etc. You can of course just use the :mod:`gtk` module -to create your own dialogs as well. - -.. function:: show_input([title=None[, parent=None[, label_text=None[, default_text=None]]]]) - - Shows a :class:`gtk.Dialog` to ask the user for text input. - - :param title: The window title for the dialog. - :param parent: The parent :class:`gtk.Window` for the dialog, for example :data:`geany.main_widgets.window`. - :param label_text: Text to put in the label just about the input entry box. - :param default_text: Default text to put in the input entry box. - - :return: A string containing the text the user entered. - -.. function:: show_input_numeric([title=None[, label_text=None[, value=0.0[, minimum=0.0[, maximum=100.0[, step=1.0]]]]]]) - - Shows a :class:`gtk.Dialog` to ask the user to enter a numeric value - using a :class:`gtk.SpinButton`. - - :param title: The window title for the dialog. - :param label_text: Text to put in the label just about the numeric entry box. - :param value: The initial value in the numeric entry box. - :param minimum: The minimum allowed value that can be entered. - :param maximum: The maximum allowed value that can be entered. - :param step: Amount to increment the numeric entry when it's value is moved up or down (ex, using arrows). - - :return: The value entered if the dialog was closed with ok, or :data:`None` if it was cancelled. - -.. function:: show_msgbox(text[, msgtype=gtk.MESSAGE_INFO]) - - Shows a :class:`gtk.Dialog` to show the user a message. - - :param text: The text to show in the message box. - :param msgtype: The message type which is one of the `Gtk Message Type Constants `_. - -.. function:: show_question(text) - - Shows a :class:`gtk.Dialog` to ask the user a Yes/No question. - - :param text: The text to show in the question dialog. - - :return: :data:`True` if the Yes button was pressed, :data:`False` if the No button was pressed. - -.. function:: show_save_as() - - Shows Geany's `Save As` dialog. - - :return: :data:`True` if the file was saved, :data:`False` otherwise. diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/document.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/document.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/document.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/document.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,199 +0,0 @@ -The :mod:`document` module -************************** - -.. module:: document - :synopsis: Document-related functions and classes - -This module provides functions for working with documents. Most of the module-level -functions are used for creating instances of the :class:`Document` object. - - -.. function:: find_by_filename(filename) - - Finds a document with the given filename from the open documents. - - :param filename: Filename of :class:`Document` to find. - - :return: A :class:`Document` instance for the found document or :data:`None`. - -.. function:: get_current() - - Gets the currently active document. - - :return: A :class:`Document` instance for the currently active document or :data:`None` if no documents are open. - -.. function:: get_from_page(page_num) - - Gets a document based on it's :class:`gtk.Notebook` page number. - - :param page_num: The tab number of the document in the documents notebook. - - :return: A :class:`Document` instance for the corresponding document or :data:`None` if no document matched. - -.. function:: get_from_index(index) - - Gets a document based on its index in Geany's documents array. - - :param index: The index of the document in Geany's documents array. - - :return: A :class:`Document` instance for the corresponding document or :data:`None` if not document matched, or the document that matched isn't valid. - -.. function:: new([filename=None[, filetype=None[, text=None]]]) - - Creates a document file. - - :param filename: The documents filename, or :data:`None` for `untitled`. - :param filetype: The documents filetype or :data:`None` to auto-detect it from `filename` (if it's not :data:`None`) - :param text: Initial text to put in the new document or :data:`None` to leave it blank - - :return: A :class:`Document` instance for the new document. - -.. function:: open(filename[, read_only=False[, filetype=None[, forced_enc=None]]]) - - Open an existing document file. - - :param filename: Filename of the document to open. - :param read_only: Whether to open the document in read-only mode. - :param filetype: Filetype to open the document as or :data:`None` to detect it automatically. - :param forced_enc: The file encoding to use or :data:`None` to auto-detect it. - - :return: A :class:`Document` instance for the opened document or :data:`None` if it couldn't be opened. - -.. function:: open_files(filenames, read_only=False, filetype="", forced_enc="") - - Open multiple files. This actually calls :func:`open` once for each filename in `filenames`. - - :param filenames: List of filenames to open. - :param read_only: Whether to open the document in read-only mode. - :param filetype: Filetype to open the document as or :data:`None` to detect it automatically. - :param forced_enc: The file encoding to use or :data:`None` to auto-detect it. - -.. function:: remove_page(page_num) - - Remove a document from the documents array based on it's page number in the documents notebook. - - :param page_num: The tab number of the document in the documents notebook. - - :return: :data:`True` if the document was actually removed or :data:`False` otherwise. - -.. function:: get_documents_list() - - Get a list of open documents. - - :return: A list of :class:`Document` instances, one for each open document. - - -:class:`Document` Objects -========================= - -.. class:: Document - - The main class holding information about a specific document. Unless - otherwise noted, the attributes are read-only properties. - - .. attribute:: Document.basename_for_display - - The last part of the filename for this document, possibly truncated to a maximum length in case the filename is very long. - - .. attribute:: Document.notebook_page - - The page number in the :class:`gtk.Notebook` containing documents. - - .. attribute:: Document.status_color - - Gets the status color of the document, or :data:`None` if the default widget coloring should be used. The color is red if the document has changes, green if it's read-only or :data:`None` if the document is unmodified but writable. The value is a tuple of the RGB values for red, green, and blue respectively. - - .. attribute:: Document.encoding - - The encoding of this document. Must be a valid string representation of an encoding. This property is read-write. - - .. attribute:: Document.file_type - - The file type of this document as a :class:`Filetype` instance. This property is read-write. - - .. attribute:: Document.text_changed - - Whether this document's text has been changed since it was last saved. - - .. attribute:: Document.file_name - - The file name of this document. - - .. attribute:: Document.has_bom - - Indicates whether the document's file has a byte-order-mark. - - .. attribute:: Document.has_tags - - Indicates whether this document supports source code symbols (tags) to show in the sidebar. - - .. attribute:: Document.index - - Index of the document in Geany's documents array. - - .. attribute:: Document.is_valid - - Indicates whether this document is active and all properties are set correctly. - - .. attribute:: Document.read_only - - Whether the document is in read-only mode. - - .. attribute:: Document.real_path - - The link-dereferenced, locale-encoded file name for this document. - - .. attribute:: Document.editor - - The :class:`Editor` instance associated with this document. - - .. method:: Document.close() - - Close this document. - - :return: :data:`True` if the document was closed, :data:`False` otherwise. - - .. method:: Document.reload([forced_enc=None]) - - Reloads this document. - - :param forced_enc: The encoding to use when reloading this document or :data:`None` to auto-detect it. - - :return: :data:`True` if the document was actually reloaded or :data:`False` otherwise. - - .. method:: Document.rename(new_filename) - - Rename this document to a new file name. Only the file on disk is actually - renamed, you still have to call :meth:`save_as` to change the document object. - It also stops monitoring for file changes to prevent receiving too many file - change events while renaming. File monitoring is setup again in :meth:`save_as`. - - :param new_filename: The new filename to rename to. - - .. method:: Document.save([force=False]) - - Saves this documents file on disk. - - Saving may include replacing tabs by spaces, stripping trailing spaces and adding - a final new line at the end of the file, depending on user preferences. Then, - the `document-before-save` signal is emitted, allowing plugins to modify the - document before it's saved, and the data is actually written to disk. The - file type is set again or auto-detected if it wasn't set yet. Afterwards, - the `document-save` signal is emitted for plugins. If the file is not modified, - this method does nothing unless `force` is set to :data:`True`. - - **Note:** You should ensure that :attr:`file_name` is not :data:`None` before - calling this; otherwise call :func:`dialogs.show_save_as`. - - :param force: Whether to save the document even if it's not modified. - - :return: :data:`True` if the file was saved or :data:`False` if the file could not or should not be saved. - - .. method:: Document.save_as(new_filename) - - Saves the document with a new filename, detecting the filetype. - - :param new_filename: The new filename. - - :return: :data:`True` if the file was saved or :data:`False` if it could not be saved. - diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/index.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/index.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/index.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/index.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -.. GeanyPy documentation master file, created by - sphinx-quickstart on Sun Aug 7 12:42:52 2011. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to GeanyPy's documentation! -=================================== - -Contents: - -.. toctree:: - :maxdepth: 2 - - intro.rst - install.rst - starting.rst - quickstart.rst - api.rst - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/install.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/install.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/install.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/install.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,146 +0,0 @@ -Installation -************ - -Currently there are no binary packages available for installing GeanyPy so it -must be installed from source. The following instructions will describe how -to do this. - -Getting the Source -================== - -The best way currently to get GeanyPy is to check it out from `it's repository -on GitHub.com `_. You can clone -GeanyPy's `master` branch by issuing the following command in a directory -where you want to store its source code:: - - $ git clone git://github.com/codebrainz/geanypy.git - $ cd geanypy - -Alternatively, you can download the `master` branch -`compressed into a tarball -`_ -or `zip file `_. Then -extract it where you want to store GeanyPy's source, for example:: - - $ cd ~/src - $ wget -O geanypy.tar.gz https://github.com/codebrainz/geanypy/tarball/master - $ tar xf geanypy.tar.gz - $ cd codebrainz-geanypy-* - -The first method using `Git `_ is the best, since it -allows you to update your copy of GeanyPy quite easily and also makes it -easier to contribute back to the GeanyPy project if you want to. - -Dependencies and where to get them -================================== - -Of course depending on what operating system and distribution you're using, -getting setup for this process may vary wildly. At present, the following -dependencies are required to compile GeanyPy: - -GCC, Autotools, and all the usual build tools ---------------------------------------------- - -For example on Debian (Ubuntu, Mint, etc.) do:: - - $ apt-get install build-essential - -Or on Fedora, something like this should do:: - - $ yum groupinstall "Development Tools" "Legacy Software Development" - -The latest development version of Geany (0.21+) ------------------------------------------------ - -Since GeanyPy is wrapping the current development version of Geany, to use it -you are required to use that version of Geany. Until the next Geany release, -you must either checkout the source code from Geany's -`Subversion repository `_ or -`Git mirror `_ or you can get one of the -`Nightly builds `_ if you'd rather not compile -it yourself. - -For more information on installing Geany, please refer to -`Geany's excellent manual -`_ - -Grabbing the dependencies for Geany on a Debian-based disto could be similar to -this:: - - $ apt-get install libgtk2.0-0 libgtk2.0-0-dev - -Or you might even have better luck with:: - - $ apt-get build-dep geany - -A quick session for installing Geany on a Debian-based distro might look -something like this:: - - $ cd ~/src - $ git clone http://git.geany.org/git/geany - $ cd geany - $ ./autogen.sh - $ ./configure - $ make - $ make install # possibly as root - -By default, Geany will install into `/usr/local` so if you want to install it -somewhere else, for example `/opt/geany`, then you would run the `configure` -command above with the `prefix` argument, like:: - - $ ./configure --prefix=/opt/geany - -It's important when installing GeanyPy later that you configure it with the -same prefix where Geany is installed, otherwise Geany won't find the GeanyPy -plugin. - -Python 2.X and development files --------------------------------- - -As GeanPy makes use of Python's C API to gain access to Geany's C plugin API, -both Python and the development files are required to compile GeanyPy. In -theory, any Python version >= 2.6 and < 3.0 should be compatible with GeanyPy. -You can download Python `from its website `_ or -you can install the required packages using your distro's package manager, for -example with Debian-based distros, run this:: - - $ apt-get install python python-dev - -**Note:** Python 3.0+ is not supported yet, although at some point in the -future, there are plans support it. - -PyGTK and development files ---------------------------- - -Since Geany uses GTK+ as it's UI toolkit, GeanyPy uses PyGTK to interact with -Geany's UI. You can either `download PyGTK from it's website -`_ or you can install it with your -system's pacakge manager, for example in Debian distros:: - - $ apt-get install python-gtk2 python-gtk2-dev - -**Note:** Although PyGTK is all but deprecated (or is completely deprecated?) -in favour of the newer and shinier PyGobject/GObject-introspection, it is -still used in new code in GeanyPy due to lack of documentation and pacakge -support for the newer stuff. - -One fell swoop --------------- - -If you're running a Debian-based distro, you should be able to install all -the required dependencies, not including Geany itself, with the following -command (as root):: - - $ apt-get install build-essential libgtk2.0-0 libgtk2.0-dev \ - python python-dev python-gtk2 python-gtk2-dev - -And finally ... installing GeanyPy -================================== - -Once all the dependencies are satisfied, installing GeanyPy should be pretty -straight-forward, continuing on from `Getting the Source`_ above:: - - $ ./autogen.sh - $ ./configure --prefix=/the/same/prefix/used/for/geany - $ make - $ make install # possibly as root diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/intro.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/intro.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/intro.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/intro.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -Introduction -************ - -GeanyPy allows people to write their Geany plugins in Python making -authoring a plugin much more accessible to non C programmers. What follows -is a description of installing and using the GeanyPy plugin, paving the way -for the rest of the documentation to covert the details of programming with -the GeanyPy bindings of the Geany API. diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/quickstart.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/quickstart.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/quickstart.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/quickstart.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,121 +0,0 @@ -Writing a Plugin - Quick Start Guide -************************************ - -This is just a quick tutorial to describe writing a GeanyPy compatible plugin -in Python. Writing a plugin should be pretty straightforward for any Python -programmers, especially those familiar with writing `regular C plugins for -Geany `_. - -To illustrate the similarities to the C API, the example at the end of this -section will create the same plugin as in Geany's Plugin Howto, except -obviously written in Python. - -The Plugin Interface -==================== - -The first thing any plugin will want to do is to import the `geany` module:: - - import geany - -**Note:** Due to the way the Geany plugin framework works, importing the -`geany` module will certain fail if you just try running it standalone, outside -of Geany/GeanyPy. - -After that, you create a regular Python class which inherits from the -`geany.Plugin` class:: - - import geany - - class HelloWorld(geany.Plugin): - pass - -This will allow GeanyPy's Python Plugin Manager to locate the plugin as a -GeanyPy plugin. If it doesn't inherit from `geany.Plugin` it will not be -detected. - -There are a few more parts of the interface that must be implemented in order -for the plugin to be detected by GeanyPy:: - - import geany - - class HelloWorld(geany.Plugin): - - __plugin_name__ = "HelloWorld" # required - __plugin_version__ = "version of your plugin" - __plugin_description__ = "description of your plugin" - __plugin_author__ = "Your Name " - -These allow the Python Plugin Manager to glean information about your plugin -which will be shown in the managers plugin list. All but the `__plugin_name__` -attributes are optional, though recommended. - -The next thing that's needed is an entry-point to the plugin. Since Python -classes have a initialization method already, this seems like a logical -entry-point:: - - import geany - - class HelloWorld(geany.Plugin): - - __plugin_name__ = "HelloWorld" # required - __plugin_version__ = "version of your plugin" - __plugin_description__ = "description of your plugin" - __plugin_author__ = "Your Name " - - def __init__(self): - do_stuff_when_loaded() - -If you have some de-initialization code that needs to be run, you can add -a `cleanup` method to the class that is guaranteed to be called when your -plugin is unloaded, however it's optional:: - - import geany - - class HelloWorld(geany.Plugin): - - __plugin_name__ = "HelloWorld" # required - __plugin_version__ = "version of your plugin" - __plugin_description__ = "description of your plugin" - __plugin_author__ = "Your Name " - - def __init__(self): - do_stuff_when_loaded() - - def cleanup(self): - do_stuff_when_unloaded() - -And there you have it! That's the minimum requirements for writing a plugin -that will be detected by GeanyPy. Ok, it doesn't do anything yet, but it -will be shown in the Python Plugin Manager and can be loaded and unloaded. - -Real-world Example -================== - -To put it into context, here's a plugin that mimics the plugin in -`Geany's Plugin Howto `_:: - - import gtk - import geany - - class HelloWorld(geany.Plugin): - - __plugin_name__ = "HelloWorld" - __plugin_version__ = "1.0" - __plugin_description__ = "Just another tool to say hello world" - __plugin_author__ = "John Doe " - - def __init__(self): - self.menu_item = gtk.MenuItem("Hello World") - self.menu_item.show() - geany.main_widgets.tools_menu.append(self.menu_item) - self.menu_item.connect("activate", self.on_hello_item_clicked) - - def cleanup(self): - self.menu_item.destroy() - - def on_hello_item_clicked(widget, data): - geany.dialogs.show_msgbox("Hello World") - -Hopefully this makes it clear how to write a Python plugin using GeanyPy. This -sample plugin is provided with GeanyPy if you want to try it out. - diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/doc/source/starting.rst geany-plugins-1.24.1+dfsg/geanypy/doc/source/starting.rst --- geany-plugins-1.24.0+20140222+git/geanypy/doc/source/starting.rst 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/doc/source/starting.rst 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -Getting Started -*************** - -Before diving into the details and API docs for programming plugins with -GeanyPy, it's important to note how it works and some features it provides. - -What the heck is GeanyPy, really? -================================= - -GeanyPy is "just another Geany plugin", really. Geany sees GeanyPy as any -other `plugin `_, so -to activate GeanyPy, use Geany's -`Plugin Manager `_ -under the Tools menu as you would for any other plugin. - -Once the GeanyPy plugin has been activated, a few elements are added to Geany's -user interface as described below. - -Python Plugin Manager -===================== - -Under the Tools menu, you will find the Python Plugin Manager, which is meant -to be similar to Geany's own Plugin Manager. This is where you will activate -any plugins written in Python. - -The Python Plugin Manager looks in exactly two places for plugins: - -1. For system-wide plugins, it will search in PREFIX/share/geany/geanypy/plugins. -2. In Geany's config directory under your home directory, typically ~/.config/geany/plugins/geanypy/plugins. - -Where `PREFIX` is the prefix used at configure time with Geany/GeanyPy (see -the previous section, Installation). Both of these paths may vary depending on -your platform, but for most \*nix systems, the above paths should hold true. - -Any plugins which follow the proper interface found in either of those two -directories will be listed in the Python Plugin Manager and you will be able -to activate and deactivate them there. - -Python Console -============== - -Another pretty cool feature of GeanyPy is the Python Console, which similar -to the regular Python interactive interpreter console, but it's found in the -Message Window area (bottom) in Geany. The `geany` Python module used to -interact with Geany will be pre-imported for you, so you can mess around with -Geany using the console, without ever having to even write a plugin. - -**Credits:** The Python Console was taken, almost in its entirety, from the -`medit text editor `_. Props to the -author(s) for such a nice `piece of source code -`_ - -Future Plans -============ - -Some time in the near future, there should be support for sending text from -the active document into the Python Console. It will also be possible to -have the Python Console either in a separate window, in the sidebar notebook -or in the message window notebook. - -Also, either integration with Geany's keybindings UI under the preferences -dialog or a separate but similar UI just for Python plugins will be added. -Currently using keybindings requires a certain amount of hackery, due to -Geany expecting all plugins to be shared libraries written in C. diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/geany/Makefile.in geany-plugins-1.24.1+dfsg/geanypy/geany/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypy/geany/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/geany/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,640 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = geanypy/geany +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypydir)" +DATA = $(geanypy_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +geanypy_sources = __init__.py \ + console.py \ + manager.py \ + loader.py \ + plugin.py \ + signalmanager.py + +geanypy_objects = $(geanypy_sources:.py=.pyc) +geanypydir = $(libdir)/geany/geanypy/geany +geanypy_DATA = $(geanypy_sources) $(geanypy_objects) +EXTRA_DIST = $(geanypy_sources) +CLEANFILES = $(geanypy_objects) +.SUFFIXES = .pyc .py +all: all-am + +.SUFFIXES: +.SUFFIXES: .py .pyc +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypy/geany/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypy/geany/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-geanypyDATA: $(geanypy_DATA) + @$(NORMAL_INSTALL) + @list='$(geanypy_DATA)'; test -n "$(geanypydir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypydir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypydir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(geanypydir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(geanypydir)" || exit $$?; \ + done + +uninstall-geanypyDATA: + @$(NORMAL_UNINSTALL) + @list='$(geanypy_DATA)'; test -n "$(geanypydir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(geanypydir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(geanypydir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypyDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypyDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am \ + install-geanypyDATA install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-geanypyDATA + + +.py.pyc: + $(AM_V_GEN) \ + $(PYTHON) -c "from py_compile import compile; compile('$<', '$@')" + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/m4/ax_python_devel.m4 geany-plugins-1.24.1+dfsg/geanypy/m4/ax_python_devel.m4 --- geany-plugins-1.24.0+20140222+git/geanypy/m4/ax_python_devel.m4 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/m4/ax_python_devel.m4 1970-01-01 00:00:00.000000000 +0000 @@ -1,325 +0,0 @@ -# =========================================================================== -# http://www.gnu.org/software/autoconf-archive/ax_python_devel.html -# =========================================================================== -# -# SYNOPSIS -# -# AX_PYTHON_DEVEL([version]) -# -# DESCRIPTION -# -# Note: Defines as a precious variable "PYTHON_VERSION". Don't override it -# in your configure.ac. -# -# This macro checks for Python and tries to get the include path to -# 'Python.h'. It provides the $(PYTHON_CPPFLAGS) and $(PYTHON_LDFLAGS) -# output variables. It also exports $(PYTHON_EXTRA_LIBS) and -# $(PYTHON_EXTRA_LDFLAGS) for embedding Python in your code. -# -# You can search for some particular version of Python by passing a -# parameter to this macro, for example ">= '2.3.1'", or "== '2.4'". Please -# note that you *have* to pass also an operator along with the version to -# match, and pay special attention to the single quotes surrounding the -# version number. Don't use "PYTHON_VERSION" for this: that environment -# variable is declared as precious and thus reserved for the end-user. -# -# This macro should work for all versions of Python >= 2.1.0. As an end -# user, you can disable the check for the python version by setting the -# PYTHON_NOVERSIONCHECK environment variable to something else than the -# empty string. -# -# If you need to use this macro for an older Python version, please -# contact the authors. We're always open for feedback. -# -# LICENSE -# -# Copyright (c) 2009 Sebastian Huber -# Copyright (c) 2009 Alan W. Irwin -# Copyright (c) 2009 Rafael Laboissiere -# Copyright (c) 2009 Andrew Collier -# Copyright (c) 2009 Matteo Settenvini -# Copyright (c) 2009 Horst Knorr -# -# 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 3 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, see . -# -# As a special exception, the respective Autoconf Macro's copyright owner -# gives unlimited permission to copy, distribute and modify the configure -# scripts that are the output of Autoconf when processing the Macro. You -# need not follow the terms of the GNU General Public License when using -# or distributing such scripts, even though portions of the text of the -# Macro appear in them. The GNU General Public License (GPL) does govern -# all other use of the material that constitutes the Autoconf Macro. -# -# This special exception to the GPL applies to versions of the Autoconf -# Macro released by the Autoconf Archive. When you make and distribute a -# modified version of the Autoconf Macro, you may extend this special -# exception to the GPL to apply to your modified version as well. - -#serial 8 - -AU_ALIAS([AC_PYTHON_DEVEL], [AX_PYTHON_DEVEL]) -AC_DEFUN([AX_PYTHON_DEVEL],[ - # - # Allow the use of a (user set) custom python version - # - AC_ARG_VAR([PYTHON_VERSION],[The installed Python - version to use, for example '2.3'. This string - will be appended to the Python interpreter - canonical name.]) - - AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]]) - if test -z "$PYTHON"; then - AC_MSG_ERROR([Cannot find python$PYTHON_VERSION in your system path]) - PYTHON_VERSION="" - fi - - # - # Check for a version of Python >= 2.1.0 - # - AC_MSG_CHECKING([for a version of Python >= '2.1.0']) - ac_supports_python_ver=`$PYTHON -c "import sys; \ - ver = sys.version.split ()[[0]]; \ - print (ver >= '2.1.0')"` - if test "$ac_supports_python_ver" != "True"; then - if test -z "$PYTHON_NOVERSIONCHECK"; then - AC_MSG_RESULT([no]) - AC_MSG_FAILURE([ -This version of the AC@&t@_PYTHON_DEVEL macro -doesn't work properly with versions of Python before -2.1.0. You may need to re-run configure, setting the -variables PYTHON_CPPFLAGS, PYTHON_LDFLAGS, PYTHON_SITE_PKG, -PYTHON_EXTRA_LIBS and PYTHON_EXTRA_LDFLAGS by hand. -Moreover, to disable this check, set PYTHON_NOVERSIONCHECK -to something else than an empty string. -]) - else - AC_MSG_RESULT([skip at user request]) - fi - else - AC_MSG_RESULT([yes]) - fi - - # - # if the macro parameter ``version'' is set, honour it - # - if test -n "$1"; then - AC_MSG_CHECKING([for a version of Python $1]) - ac_supports_python_ver=`$PYTHON -c "import sys; \ - ver = sys.version.split ()[[0]]; \ - print (ver $1)"` - if test "$ac_supports_python_ver" = "True"; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - AC_MSG_ERROR([this package requires Python $1. -If you have it installed, but it isn't the default Python -interpreter in your system path, please pass the PYTHON_VERSION -variable to configure. See ``configure --help'' for reference. -]) - PYTHON_VERSION="" - fi - fi - - # - # Check if you have distutils, else fail - # - AC_MSG_CHECKING([for the distutils Python package]) - ac_distutils_result=`$PYTHON -c "import distutils" 2>&1` - if test -z "$ac_distutils_result"; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - AC_MSG_ERROR([cannot import Python module "distutils". -Please check your Python installation. The error was: -$ac_distutils_result]) - PYTHON_VERSION="" - fi - - # - # Check for Python include path - # - AC_MSG_CHECKING([for Python include path]) - if test -z "$PYTHON_CPPFLAGS"; then - python_path=`$PYTHON -c "import distutils.sysconfig; \ - print (distutils.sysconfig.get_python_inc ());"` - if test -n "${python_path}"; then - python_path="-I$python_path" - fi - PYTHON_CPPFLAGS=$python_path - fi - AC_MSG_RESULT([$PYTHON_CPPFLAGS]) - AC_SUBST([PYTHON_CPPFLAGS]) - - # - # Check for Python library path - # - AC_MSG_CHECKING([for Python library path]) - if test -z "$PYTHON_LDFLAGS"; then - # (makes two attempts to ensure we've got a version number - # from the interpreter) - ac_python_version=`cat<]], - [[Py_Initialize();]]) - ],[pythonexists=yes],[pythonexists=no]) - AC_LANG_POP([C]) - # turn back to default flags - CPPFLAGS="$ac_save_CPPFLAGS" - LIBS="$ac_save_LIBS" - - AC_MSG_RESULT([$pythonexists]) - - if test ! "x$pythonexists" = "xyes"; then - AC_MSG_FAILURE([ - Could not link test program to Python. Maybe the main Python library has been - installed in some non-standard library path. If so, pass it to configure, - via the LDFLAGS environment variable. - Example: ./configure LDFLAGS="-L/usr/non-standard-path/python/lib" - ============================================================================ - ERROR! - You probably have to install the development version of the Python package - for your distribution. The exact name of this package varies among them. - ============================================================================ - ]) - PYTHON_VERSION="" - fi - - # - # all done! - # -]) diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/Makefile.in geany-plugins-1.24.1+dfsg/geanypy/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypy/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,826 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = geanypy +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +#ACLOCAL_AMFLAGS += -I geanypy/m4 +SUBDIRS = src geany plugins +plugin = geanypy +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypy/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypy/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/plugins/Makefile.in geany-plugins-1.24.1+dfsg/geanypy/plugins/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypy/plugins/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/plugins/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,625 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = geanypy/plugins +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypydir)" +DATA = $(geanypy_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +geanypy_plugins = demo.py hello.py console.py +geanypydir = $(datadir)/geany/geanypy/plugins +geanypy_DATA = $(geanypy_plugins) +EXTRA_DIST = $(geanypy_plugins) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypy/plugins/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypy/plugins/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-geanypyDATA: $(geanypy_DATA) + @$(NORMAL_INSTALL) + @list='$(geanypy_DATA)'; test -n "$(geanypydir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypydir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypydir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(geanypydir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(geanypydir)" || exit $$?; \ + done + +uninstall-geanypyDATA: + @$(NORMAL_UNINSTALL) + @list='$(geanypy_DATA)'; test -n "$(geanypydir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(geanypydir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(geanypydir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypyDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypyDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am \ + install-geanypyDATA install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-geanypyDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/README geany-plugins-1.24.1+dfsg/geanypy/README --- geany-plugins-1.24.0+20140222+git/geanypy/README 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/README 2014-04-13 13:33:33.000000000 +0000 @@ -71,3 +71,10 @@ Upstream developed by Matthew Brush. Geany-plugins version maintained by elextr@lists.geany.org + +Known Bugs +---------- + +* There is an issue with re-loading GeanyPy twice in the same session. If +you unload the GeanyPy plugin you should restart Geany to avoid a potential +crash. diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/src/Makefile.in geany-plugins-1.24.1+dfsg/geanypy/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanypy/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,1035 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanypy/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanyplugindir)" +LTLIBRARIES = $(geanyplugin_LTLIBRARIES) +geanypy_la_DEPENDENCIES = +am_geanypy_la_OBJECTS = geanypy_la-geanypy-app.lo \ + geanypy_la-geanypy-dialogs.lo geanypy_la-geanypy-document.lo \ + geanypy_la-geanypy-editor.lo geanypy_la-geanypy-encoding.lo \ + geanypy_la-geanypy-filetypes.lo \ + geanypy_la-geanypy-highlighting.lo \ + geanypy_la-geanypy-indentprefs.lo \ + geanypy_la-geanypy-interfaceprefs.lo \ + geanypy_la-geanypy-main.lo geanypy_la-geanypy-mainwidgets.lo \ + geanypy_la-geanypy-msgwindow.lo geanypy_la-geanypy-navqueue.lo \ + geanypy_la-geanypy-plugin.lo geanypy_la-geanypy-prefs.lo \ + geanypy_la-geanypy-project.lo \ + geanypy_la-geanypy-scinotification.lo \ + geanypy_la-geanypy-scinotifyheader.lo \ + geanypy_la-geanypy-scintilla.lo geanypy_la-geanypy-search.lo \ + geanypy_la-geanypy-signalmanager.lo \ + geanypy_la-geanypy-templates.lo geanypy_la-geanypy-uiutils.lo +geanypy_la_OBJECTS = $(am_geanypy_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanypy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanypy_la_CFLAGS) \ + $(CFLAGS) $(geanypy_la_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanypy_la_SOURCES) +DIST_SOURCES = $(geanypy_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugin_LTLIBRARIES = geanypy.la +geanyplugindir = $(libdir)/geany +geanypy_la_LDFLAGS = -module -avoid-version -Wl,--export-dynamic +geanypy_la_CPPFLAGS = @GEANY_CFLAGS@ @PYGTK_CFLAGS@ @PYTHON_CPPFLAGS@ \ + -DGEANYPY_PYTHON_DIR="\"$(libdir)/geany/geanypy\"" \ + -DGEANYPY_PLUGIN_DIR="\"$(datadir)/geany/geanypy/plugins\"" \ + -UHAVE_CONFIG_H + +geanypy_la_CFLAGS = -fno-strict-aliasing -Wno-write-strings +geanypy_la_LIBADD = @GEANY_LIBS@ @PYGTK_LIBS@ @PYTHON_LDFLAGS@ \ + @PYTHON_EXTRA_LIBS@ @PYTHON_EXTRA_LDFLAGS@ + +geanypy_la_SOURCES = geanypy-app.c \ + geanypy-dialogs.c \ + geanypy-document.c geanypy-document.h \ + geanypy-editor.c geanypy-editor.h \ + geanypy-encoding.c geanypy-encoding.h \ + geanypy-filetypes.c geanypy-filetypes.h \ + geanypy.h \ + geanypy-highlighting.c \ + geanypy-indentprefs.c \ + geanypy-interfaceprefs.c \ + geanypy-main.c \ + geanypy-mainwidgets.c \ + geanypy-msgwindow.c \ + geanypy-navqueue.c \ + geanypy-plugin.c geanypy-plugin.h \ + geanypy-prefs.c \ + geanypy-project.c geanypy-project.h \ + geanypy-scinotification.c \ + geanypy-scinotifyheader.c \ + geanypy-scintilla.c geanypy-scintilla.h \ + geanypy-search.c \ + geanypy-signalmanager.c geanypy-signalmanager.h \ + geanypy-templates.c \ + geanypy-uiutils.c geanypy-uiutils.h + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanypy/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanypy/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginLTLIBRARIES: $(geanyplugin_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugin_LTLIBRARIES)'; test -n "$(geanyplugindir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanyplugindir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanyplugindir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanyplugindir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanyplugindir)"; \ + } + +uninstall-geanypluginLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugin_LTLIBRARIES)'; test -n "$(geanyplugindir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanyplugindir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanyplugindir)/$$f"; \ + done + +clean-geanypluginLTLIBRARIES: + -test -z "$(geanyplugin_LTLIBRARIES)" || rm -f $(geanyplugin_LTLIBRARIES) + @list='$(geanyplugin_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanypy.la: $(geanypy_la_OBJECTS) $(geanypy_la_DEPENDENCIES) $(EXTRA_geanypy_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanypy_la_LINK) -rpath $(geanyplugindir) $(geanypy_la_OBJECTS) $(geanypy_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-app.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-dialogs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-document.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-editor.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-encoding.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-filetypes.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-highlighting.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-indentprefs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-interfaceprefs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-mainwidgets.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-msgwindow.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-navqueue.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-prefs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-project.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-scinotification.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-scinotifyheader.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-scintilla.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-search.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-signalmanager.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-templates.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanypy_la-geanypy-uiutils.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanypy_la-geanypy-app.lo: geanypy-app.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-app.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-app.Tpo -c -o geanypy_la-geanypy-app.lo `test -f 'geanypy-app.c' || echo '$(srcdir)/'`geanypy-app.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-app.Tpo $(DEPDIR)/geanypy_la-geanypy-app.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-app.c' object='geanypy_la-geanypy-app.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-app.lo `test -f 'geanypy-app.c' || echo '$(srcdir)/'`geanypy-app.c + +geanypy_la-geanypy-dialogs.lo: geanypy-dialogs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-dialogs.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-dialogs.Tpo -c -o geanypy_la-geanypy-dialogs.lo `test -f 'geanypy-dialogs.c' || echo '$(srcdir)/'`geanypy-dialogs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-dialogs.Tpo $(DEPDIR)/geanypy_la-geanypy-dialogs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-dialogs.c' object='geanypy_la-geanypy-dialogs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-dialogs.lo `test -f 'geanypy-dialogs.c' || echo '$(srcdir)/'`geanypy-dialogs.c + +geanypy_la-geanypy-document.lo: geanypy-document.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-document.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-document.Tpo -c -o geanypy_la-geanypy-document.lo `test -f 'geanypy-document.c' || echo '$(srcdir)/'`geanypy-document.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-document.Tpo $(DEPDIR)/geanypy_la-geanypy-document.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-document.c' object='geanypy_la-geanypy-document.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-document.lo `test -f 'geanypy-document.c' || echo '$(srcdir)/'`geanypy-document.c + +geanypy_la-geanypy-editor.lo: geanypy-editor.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-editor.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-editor.Tpo -c -o geanypy_la-geanypy-editor.lo `test -f 'geanypy-editor.c' || echo '$(srcdir)/'`geanypy-editor.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-editor.Tpo $(DEPDIR)/geanypy_la-geanypy-editor.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-editor.c' object='geanypy_la-geanypy-editor.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-editor.lo `test -f 'geanypy-editor.c' || echo '$(srcdir)/'`geanypy-editor.c + +geanypy_la-geanypy-encoding.lo: geanypy-encoding.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-encoding.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-encoding.Tpo -c -o geanypy_la-geanypy-encoding.lo `test -f 'geanypy-encoding.c' || echo '$(srcdir)/'`geanypy-encoding.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-encoding.Tpo $(DEPDIR)/geanypy_la-geanypy-encoding.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-encoding.c' object='geanypy_la-geanypy-encoding.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-encoding.lo `test -f 'geanypy-encoding.c' || echo '$(srcdir)/'`geanypy-encoding.c + +geanypy_la-geanypy-filetypes.lo: geanypy-filetypes.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-filetypes.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-filetypes.Tpo -c -o geanypy_la-geanypy-filetypes.lo `test -f 'geanypy-filetypes.c' || echo '$(srcdir)/'`geanypy-filetypes.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-filetypes.Tpo $(DEPDIR)/geanypy_la-geanypy-filetypes.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-filetypes.c' object='geanypy_la-geanypy-filetypes.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-filetypes.lo `test -f 'geanypy-filetypes.c' || echo '$(srcdir)/'`geanypy-filetypes.c + +geanypy_la-geanypy-highlighting.lo: geanypy-highlighting.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-highlighting.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-highlighting.Tpo -c -o geanypy_la-geanypy-highlighting.lo `test -f 'geanypy-highlighting.c' || echo '$(srcdir)/'`geanypy-highlighting.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-highlighting.Tpo $(DEPDIR)/geanypy_la-geanypy-highlighting.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-highlighting.c' object='geanypy_la-geanypy-highlighting.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-highlighting.lo `test -f 'geanypy-highlighting.c' || echo '$(srcdir)/'`geanypy-highlighting.c + +geanypy_la-geanypy-indentprefs.lo: geanypy-indentprefs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-indentprefs.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-indentprefs.Tpo -c -o geanypy_la-geanypy-indentprefs.lo `test -f 'geanypy-indentprefs.c' || echo '$(srcdir)/'`geanypy-indentprefs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-indentprefs.Tpo $(DEPDIR)/geanypy_la-geanypy-indentprefs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-indentprefs.c' object='geanypy_la-geanypy-indentprefs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-indentprefs.lo `test -f 'geanypy-indentprefs.c' || echo '$(srcdir)/'`geanypy-indentprefs.c + +geanypy_la-geanypy-interfaceprefs.lo: geanypy-interfaceprefs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-interfaceprefs.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-interfaceprefs.Tpo -c -o geanypy_la-geanypy-interfaceprefs.lo `test -f 'geanypy-interfaceprefs.c' || echo '$(srcdir)/'`geanypy-interfaceprefs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-interfaceprefs.Tpo $(DEPDIR)/geanypy_la-geanypy-interfaceprefs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-interfaceprefs.c' object='geanypy_la-geanypy-interfaceprefs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-interfaceprefs.lo `test -f 'geanypy-interfaceprefs.c' || echo '$(srcdir)/'`geanypy-interfaceprefs.c + +geanypy_la-geanypy-main.lo: geanypy-main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-main.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-main.Tpo -c -o geanypy_la-geanypy-main.lo `test -f 'geanypy-main.c' || echo '$(srcdir)/'`geanypy-main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-main.Tpo $(DEPDIR)/geanypy_la-geanypy-main.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-main.c' object='geanypy_la-geanypy-main.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-main.lo `test -f 'geanypy-main.c' || echo '$(srcdir)/'`geanypy-main.c + +geanypy_la-geanypy-mainwidgets.lo: geanypy-mainwidgets.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-mainwidgets.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-mainwidgets.Tpo -c -o geanypy_la-geanypy-mainwidgets.lo `test -f 'geanypy-mainwidgets.c' || echo '$(srcdir)/'`geanypy-mainwidgets.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-mainwidgets.Tpo $(DEPDIR)/geanypy_la-geanypy-mainwidgets.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-mainwidgets.c' object='geanypy_la-geanypy-mainwidgets.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-mainwidgets.lo `test -f 'geanypy-mainwidgets.c' || echo '$(srcdir)/'`geanypy-mainwidgets.c + +geanypy_la-geanypy-msgwindow.lo: geanypy-msgwindow.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-msgwindow.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-msgwindow.Tpo -c -o geanypy_la-geanypy-msgwindow.lo `test -f 'geanypy-msgwindow.c' || echo '$(srcdir)/'`geanypy-msgwindow.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-msgwindow.Tpo $(DEPDIR)/geanypy_la-geanypy-msgwindow.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-msgwindow.c' object='geanypy_la-geanypy-msgwindow.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-msgwindow.lo `test -f 'geanypy-msgwindow.c' || echo '$(srcdir)/'`geanypy-msgwindow.c + +geanypy_la-geanypy-navqueue.lo: geanypy-navqueue.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-navqueue.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-navqueue.Tpo -c -o geanypy_la-geanypy-navqueue.lo `test -f 'geanypy-navqueue.c' || echo '$(srcdir)/'`geanypy-navqueue.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-navqueue.Tpo $(DEPDIR)/geanypy_la-geanypy-navqueue.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-navqueue.c' object='geanypy_la-geanypy-navqueue.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-navqueue.lo `test -f 'geanypy-navqueue.c' || echo '$(srcdir)/'`geanypy-navqueue.c + +geanypy_la-geanypy-plugin.lo: geanypy-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-plugin.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-plugin.Tpo -c -o geanypy_la-geanypy-plugin.lo `test -f 'geanypy-plugin.c' || echo '$(srcdir)/'`geanypy-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-plugin.Tpo $(DEPDIR)/geanypy_la-geanypy-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-plugin.c' object='geanypy_la-geanypy-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-plugin.lo `test -f 'geanypy-plugin.c' || echo '$(srcdir)/'`geanypy-plugin.c + +geanypy_la-geanypy-prefs.lo: geanypy-prefs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-prefs.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-prefs.Tpo -c -o geanypy_la-geanypy-prefs.lo `test -f 'geanypy-prefs.c' || echo '$(srcdir)/'`geanypy-prefs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-prefs.Tpo $(DEPDIR)/geanypy_la-geanypy-prefs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-prefs.c' object='geanypy_la-geanypy-prefs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-prefs.lo `test -f 'geanypy-prefs.c' || echo '$(srcdir)/'`geanypy-prefs.c + +geanypy_la-geanypy-project.lo: geanypy-project.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-project.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-project.Tpo -c -o geanypy_la-geanypy-project.lo `test -f 'geanypy-project.c' || echo '$(srcdir)/'`geanypy-project.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-project.Tpo $(DEPDIR)/geanypy_la-geanypy-project.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-project.c' object='geanypy_la-geanypy-project.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-project.lo `test -f 'geanypy-project.c' || echo '$(srcdir)/'`geanypy-project.c + +geanypy_la-geanypy-scinotification.lo: geanypy-scinotification.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-scinotification.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-scinotification.Tpo -c -o geanypy_la-geanypy-scinotification.lo `test -f 'geanypy-scinotification.c' || echo '$(srcdir)/'`geanypy-scinotification.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-scinotification.Tpo $(DEPDIR)/geanypy_la-geanypy-scinotification.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-scinotification.c' object='geanypy_la-geanypy-scinotification.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-scinotification.lo `test -f 'geanypy-scinotification.c' || echo '$(srcdir)/'`geanypy-scinotification.c + +geanypy_la-geanypy-scinotifyheader.lo: geanypy-scinotifyheader.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-scinotifyheader.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-scinotifyheader.Tpo -c -o geanypy_la-geanypy-scinotifyheader.lo `test -f 'geanypy-scinotifyheader.c' || echo '$(srcdir)/'`geanypy-scinotifyheader.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-scinotifyheader.Tpo $(DEPDIR)/geanypy_la-geanypy-scinotifyheader.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-scinotifyheader.c' object='geanypy_la-geanypy-scinotifyheader.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-scinotifyheader.lo `test -f 'geanypy-scinotifyheader.c' || echo '$(srcdir)/'`geanypy-scinotifyheader.c + +geanypy_la-geanypy-scintilla.lo: geanypy-scintilla.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-scintilla.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-scintilla.Tpo -c -o geanypy_la-geanypy-scintilla.lo `test -f 'geanypy-scintilla.c' || echo '$(srcdir)/'`geanypy-scintilla.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-scintilla.Tpo $(DEPDIR)/geanypy_la-geanypy-scintilla.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-scintilla.c' object='geanypy_la-geanypy-scintilla.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-scintilla.lo `test -f 'geanypy-scintilla.c' || echo '$(srcdir)/'`geanypy-scintilla.c + +geanypy_la-geanypy-search.lo: geanypy-search.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-search.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-search.Tpo -c -o geanypy_la-geanypy-search.lo `test -f 'geanypy-search.c' || echo '$(srcdir)/'`geanypy-search.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-search.Tpo $(DEPDIR)/geanypy_la-geanypy-search.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-search.c' object='geanypy_la-geanypy-search.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-search.lo `test -f 'geanypy-search.c' || echo '$(srcdir)/'`geanypy-search.c + +geanypy_la-geanypy-signalmanager.lo: geanypy-signalmanager.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-signalmanager.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-signalmanager.Tpo -c -o geanypy_la-geanypy-signalmanager.lo `test -f 'geanypy-signalmanager.c' || echo '$(srcdir)/'`geanypy-signalmanager.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-signalmanager.Tpo $(DEPDIR)/geanypy_la-geanypy-signalmanager.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-signalmanager.c' object='geanypy_la-geanypy-signalmanager.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-signalmanager.lo `test -f 'geanypy-signalmanager.c' || echo '$(srcdir)/'`geanypy-signalmanager.c + +geanypy_la-geanypy-templates.lo: geanypy-templates.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-templates.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-templates.Tpo -c -o geanypy_la-geanypy-templates.lo `test -f 'geanypy-templates.c' || echo '$(srcdir)/'`geanypy-templates.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-templates.Tpo $(DEPDIR)/geanypy_la-geanypy-templates.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-templates.c' object='geanypy_la-geanypy-templates.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-templates.lo `test -f 'geanypy-templates.c' || echo '$(srcdir)/'`geanypy-templates.c + +geanypy_la-geanypy-uiutils.lo: geanypy-uiutils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -MT geanypy_la-geanypy-uiutils.lo -MD -MP -MF $(DEPDIR)/geanypy_la-geanypy-uiutils.Tpo -c -o geanypy_la-geanypy-uiutils.lo `test -f 'geanypy-uiutils.c' || echo '$(srcdir)/'`geanypy-uiutils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanypy_la-geanypy-uiutils.Tpo $(DEPDIR)/geanypy_la-geanypy-uiutils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanypy-uiutils.c' object='geanypy_la-geanypy-uiutils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geanypy_la_CPPFLAGS) $(CPPFLAGS) $(geanypy_la_CFLAGS) $(CFLAGS) -c -o geanypy_la-geanypy-uiutils.lo `test -f 'geanypy-uiutils.c' || echo '$(srcdir)/'`geanypy-uiutils.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanyplugindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/src/makefile.win32 geany-plugins-1.24.1+dfsg/geanypy/src/makefile.win32 --- geany-plugins-1.24.0+20140222+git/geanypy/src/makefile.win32 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/src/makefile.win32 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -include ../win32env.mk - -SOURCES = \ - geanypy-app.c \ - geanypy-dialogs.c \ - geanypy-document.c \ - geanypy-editor.c \ - geanypy-encoding.c \ - geanypy-filetypes.c \ - geanypy-highlighting.c \ - geanypy-indentprefs.c \ - geanypy-interfaceprefs.c \ - geanypy-main.c \ - geanypy-mainwidgets.c \ - geanypy-msgwindow.c \ - geanypy-navqueue.c \ - geanypy-plugin.c \ - geanypy-prefs.c \ - geanypy-project.c \ - geanypy-scinotification.c \ - geanypy-scinotifyheader.c \ - geanypy-scintilla.c \ - geanypy-search.c \ - geanypy-signalmanager.c \ - geanypy-templates.c \ - geanypy-uiutils.c - -OBJECTS = $(SOURCES:.c=.o) - - -geanypy.dll: $(OBJECTS) - $(CC) -shared -o $@ $^ $(_LDFLAGS) - -%.o: %.c - $(CC) $(_CFLAGS) -c -o $@ $< - -clean: - $(RM_F) geanypy.dll *.o diff -Nru geany-plugins-1.24.0+20140222+git/geanypy/wscript_options geany-plugins-1.24.1+dfsg/geanypy/wscript_options --- geany-plugins-1.24.0+20140222+git/geanypy/wscript_options 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanypy/wscript_options 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -# -# WAF build script for geany-plugins - GeanyPy -# -# Copyright 2013 Enrico Tröger -# -# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. - -# enable Python specific options -opt.tool_options('python') diff -Nru geany-plugins-1.24.0+20140222+git/geanysendmail/Makefile.in geany-plugins-1.24.1+dfsg/geanysendmail/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanysendmail/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanysendmail/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README TODO +subdir = geanysendmail +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geanysendmail +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanysendmail/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanysendmail/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanysendmail/src/Makefile.in geany-plugins-1.24.1+dfsg/geanysendmail/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanysendmail/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanysendmail/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanysendmail/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanysendmail_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_geanysendmail_la_OBJECTS = geanysendmail.lo +geanysendmail_la_OBJECTS = $(am_geanysendmail_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanysendmail_la_SOURCES) +DIST_SOURCES = $(geanysendmail_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanysendmail.la +geanysendmail_la_SOURCES = geanysendmail.c icon.h +geanysendmail_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanysendmail/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanysendmail/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanysendmail.la: $(geanysendmail_la_OBJECTS) $(geanysendmail_la_DEPENDENCIES) $(EXTRA_geanysendmail_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(geanysendmail_la_OBJECTS) $(geanysendmail_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanysendmail.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/Makefile.in geany-plugins-1.24.1+dfsg/geanyvc/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyvc/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README THANKS TODO +subdir = geanyvc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src tests +plugin = geanyvc +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyvc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyvc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/commit.glade geany-plugins-1.24.1+dfsg/geanyvc/src/commit.glade --- geany-plugins-1.24.0+20140222+git/geanyvc/src/commit.glade 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/commit.glade 1970-01-01 00:00:00.000000000 +0000 @@ -1,168 +0,0 @@ - - - - - - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 - Commit - True - GTK_WIN_POS_CENTER_ON_PARENT - True - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 2 - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - - - - - False - True - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False - - - - - True - True - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - GTK_SHADOW_NONE - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - <b>Commit message:</b> - True - - - label_item - - - - - True - True - - - - - True - True - - - - - 1 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - GTK_BUTTONBOX_END - - - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-cancel - True - -6 - - - - - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - C_ommit - -10 - - - 1 - - - - - False - GTK_PACK_END - - - - - - diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/geanyvc.c geany-plugins-1.24.1+dfsg/geanyvc/src/geanyvc.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/geanyvc.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/geanyvc.c 2014-04-12 14:28:39.000000000 +0000 @@ -491,7 +491,7 @@ setptr(*std_out, encodings_convert_to_utf8(*std_out, strlen(*std_out), NULL)); } - if (!NZV(*std_out)) + if (EMPTY(*std_out)) { g_free(*std_out); *std_out = NULL; @@ -509,7 +509,7 @@ setptr(*std_err, encodings_convert_to_utf8(*std_err, strlen(*std_err), NULL)); } - if (!NZV(*std_err)) + if (EMPTY(*std_err)) { g_free(*std_err); *std_err = NULL; @@ -968,7 +968,7 @@ { document_reload_file(doc, NULL); - if (NZV(text)) + if (!EMPTY(text)) show_output(text, "*VC-UPDATE*", NULL, NULL, 0); g_free(text); } @@ -1604,7 +1604,7 @@ g_error_free(spellcheck_error); spellcheck_error = NULL; } - else if (NZV(lang)) + else if (!EMPTY(lang)) { gtkspell_set_language(speller, lang, &spellcheck_error); if (spellcheck_error != NULL) @@ -1630,7 +1630,7 @@ gtk_text_buffer_get_end_iter(mbuf, &end); message = gtk_text_buffer_get_text(mbuf, &begin, &end, FALSE); gtk_tree_model_foreach(model, get_commit_files_foreach, &selected_files); - if (NZV(message) && selected_files) + if (!EMPTY(message) && selected_files) { execute_command(vc, NULL, NULL, dir, VC_COMMAND_COMMIT, selected_files, message); diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/Makefile.in geany-plugins-1.24.1+dfsg/geanyvc/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyvc/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,897 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geanyvc/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geanyvc_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) +am_geanyvc_la_OBJECTS = geanyvc_la-externdiff.lo geanyvc_la-geanyvc.lo \ + geanyvc_la-utils.lo geanyvc_la-vc_bzr.lo geanyvc_la-vc_cvs.lo \ + geanyvc_la-vc_git.lo geanyvc_la-vc_hg.lo geanyvc_la-vc_svk.lo \ + geanyvc_la-vc_svn.lo +geanyvc_la_OBJECTS = $(am_geanyvc_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geanyvc_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(geanyvc_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geanyvc_la_SOURCES) +DIST_SOURCES = $(geanyvc_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = geanyvc.la +geanyvc_la_SOURCES = \ + externdiff.c \ + geanyvc.c \ + utils.c \ + vc_bzr.c \ + vc_cvs.c \ + vc_git.c \ + vc_hg.c \ + vc_svk.c \ + vc_svn.c \ + geanyvc.h + +geanyvc_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(GTKSPELL_CFLAGS) + +geanyvc_la_LIBADD = \ + $(GTKSPELL_LIBS) \ + $(COMMONLIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyvc/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyvc/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geanyvc.la: $(geanyvc_la_OBJECTS) $(geanyvc_la_DEPENDENCIES) $(EXTRA_geanyvc_la_DEPENDENCIES) + $(AM_V_CCLD)$(geanyvc_la_LINK) -rpath $(geanypluginsdir) $(geanyvc_la_OBJECTS) $(geanyvc_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-externdiff.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-geanyvc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_bzr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_cvs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_git.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_hg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_svk.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geanyvc_la-vc_svn.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geanyvc_la-externdiff.lo: externdiff.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-externdiff.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-externdiff.Tpo -c -o geanyvc_la-externdiff.lo `test -f 'externdiff.c' || echo '$(srcdir)/'`externdiff.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-externdiff.Tpo $(DEPDIR)/geanyvc_la-externdiff.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='externdiff.c' object='geanyvc_la-externdiff.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-externdiff.lo `test -f 'externdiff.c' || echo '$(srcdir)/'`externdiff.c + +geanyvc_la-geanyvc.lo: geanyvc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-geanyvc.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-geanyvc.Tpo -c -o geanyvc_la-geanyvc.lo `test -f 'geanyvc.c' || echo '$(srcdir)/'`geanyvc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-geanyvc.Tpo $(DEPDIR)/geanyvc_la-geanyvc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geanyvc.c' object='geanyvc_la-geanyvc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-geanyvc.lo `test -f 'geanyvc.c' || echo '$(srcdir)/'`geanyvc.c + +geanyvc_la-utils.lo: utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-utils.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-utils.Tpo -c -o geanyvc_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-utils.Tpo $(DEPDIR)/geanyvc_la-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='geanyvc_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c + +geanyvc_la-vc_bzr.lo: vc_bzr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_bzr.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_bzr.Tpo -c -o geanyvc_la-vc_bzr.lo `test -f 'vc_bzr.c' || echo '$(srcdir)/'`vc_bzr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_bzr.Tpo $(DEPDIR)/geanyvc_la-vc_bzr.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_bzr.c' object='geanyvc_la-vc_bzr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_bzr.lo `test -f 'vc_bzr.c' || echo '$(srcdir)/'`vc_bzr.c + +geanyvc_la-vc_cvs.lo: vc_cvs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_cvs.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_cvs.Tpo -c -o geanyvc_la-vc_cvs.lo `test -f 'vc_cvs.c' || echo '$(srcdir)/'`vc_cvs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_cvs.Tpo $(DEPDIR)/geanyvc_la-vc_cvs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_cvs.c' object='geanyvc_la-vc_cvs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_cvs.lo `test -f 'vc_cvs.c' || echo '$(srcdir)/'`vc_cvs.c + +geanyvc_la-vc_git.lo: vc_git.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_git.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_git.Tpo -c -o geanyvc_la-vc_git.lo `test -f 'vc_git.c' || echo '$(srcdir)/'`vc_git.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_git.Tpo $(DEPDIR)/geanyvc_la-vc_git.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_git.c' object='geanyvc_la-vc_git.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_git.lo `test -f 'vc_git.c' || echo '$(srcdir)/'`vc_git.c + +geanyvc_la-vc_hg.lo: vc_hg.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_hg.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_hg.Tpo -c -o geanyvc_la-vc_hg.lo `test -f 'vc_hg.c' || echo '$(srcdir)/'`vc_hg.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_hg.Tpo $(DEPDIR)/geanyvc_la-vc_hg.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_hg.c' object='geanyvc_la-vc_hg.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_hg.lo `test -f 'vc_hg.c' || echo '$(srcdir)/'`vc_hg.c + +geanyvc_la-vc_svk.lo: vc_svk.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_svk.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_svk.Tpo -c -o geanyvc_la-vc_svk.lo `test -f 'vc_svk.c' || echo '$(srcdir)/'`vc_svk.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_svk.Tpo $(DEPDIR)/geanyvc_la-vc_svk.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_svk.c' object='geanyvc_la-vc_svk.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_svk.lo `test -f 'vc_svk.c' || echo '$(srcdir)/'`vc_svk.c + +geanyvc_la-vc_svn.lo: vc_svn.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -MT geanyvc_la-vc_svn.lo -MD -MP -MF $(DEPDIR)/geanyvc_la-vc_svn.Tpo -c -o geanyvc_la-vc_svn.lo `test -f 'vc_svn.c' || echo '$(srcdir)/'`vc_svn.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geanyvc_la-vc_svn.Tpo $(DEPDIR)/geanyvc_la-vc_svn.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vc_svn.c' object='geanyvc_la-vc_svn.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(geanyvc_la_CFLAGS) $(CFLAGS) -c -o geanyvc_la-vc_svn.lo `test -f 'vc_svn.c' || echo '$(srcdir)/'`vc_svn.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/utils.h geany-plugins-1.24.1+dfsg/geanyvc/src/utils.h --- geany-plugins-1.24.0+20140222+git/geanyvc/src/utils.h 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/utils.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -/* - * - * Copyright 2008 Yura Siamashka - * Copyright 2010-2011 Frank Lanitz - * - * 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, see . - */ - -#ifndef __GEANYVC_UTILS__ -#define __GEANYVC_UTILS__ - -gchar *normpath(const gchar * filename); -gchar *get_full_path(const gchar * location, const gchar * path); -gchar *get_relative_path(const gchar * location, const gchar * path); - -#endif diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_bzr.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_bzr.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_bzr.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_bzr.c 2014-04-12 14:28:39.000000000 +0000 @@ -137,7 +137,7 @@ execute_custom_command(dir, (const gchar **) argv, NULL, &std_output, NULL, filename, NULL, NULL); - if (NZV(std_output)) + if (!EMPTY(std_output)) { ret = TRUE; } @@ -178,7 +178,7 @@ g_return_val_if_fail(base_dir, NULL); execute_custom_command(base_dir, argv, NULL, &txt, NULL, base_dir, NULL, NULL); - if (!NZV(txt)) + if (EMPTY(txt)) { g_free(base_dir); g_free(txt); diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_cvs.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_cvs.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_cvs.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_cvs.c 2014-04-12 14:28:39.000000000 +0000 @@ -167,7 +167,7 @@ const char *argv[] = { "cvs", "-nq", "update", NULL }; execute_custom_command(dir, argv, NULL, &txt, NULL, dir, NULL, NULL); - if (!NZV(txt)) + if (EMPTY(txt)) return NULL; p = txt; diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_git.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_git.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_git.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_git.c 2014-04-12 14:28:39.000000000 +0000 @@ -199,7 +199,7 @@ execute_custom_command(dir, (const gchar **) argv, NULL, &std_output, NULL, dir, NULL, NULL); - if (NZV(std_output)) + if (!EMPTY(std_output)) { ret = TRUE; g_free(std_output); diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_hg.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_hg.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_hg.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_hg.c 2014-04-12 14:28:39.000000000 +0000 @@ -135,7 +135,7 @@ execute_custom_command(dir, (const gchar **) argv, NULL, &std_output, NULL, dir, NULL, NULL); - if (NZV(std_output)) + if (!EMPTY(std_output)) { ret = TRUE; g_free(std_output); @@ -173,7 +173,7 @@ g_return_val_if_fail(base_dir, NULL); execute_custom_command(base_dir, argv, NULL, &txt, NULL, base_dir, NULL, NULL); - if (!NZV(txt)) + if (EMPTY(txt)) { g_free(base_dir); g_free(txt); diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_svk.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_svk.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_svk.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_svk.c 2014-04-12 14:28:39.000000000 +0000 @@ -178,7 +178,7 @@ const char *argv[] = { "svk", "status", NULL }; execute_custom_command(dir, argv, NULL, &txt, NULL, dir, NULL, NULL); - if (!NZV(txt)) + if (EMPTY(txt)) return NULL; p = txt; diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_svn.c geany-plugins-1.24.1+dfsg/geanyvc/src/vc_svn.c --- geany-plugins-1.24.0+20140222+git/geanyvc/src/vc_svn.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/src/vc_svn.c 2014-04-12 14:28:39.000000000 +0000 @@ -189,7 +189,7 @@ execute_custom_command(dir, (const gchar **) argv, NULL, &std_output, NULL, dir, NULL, NULL); - if (NZV(std_output)) + if (!EMPTY(std_output)) { ret = TRUE; g_free(std_output); @@ -223,7 +223,7 @@ const char *argv[] = { "svn", "status", NULL }; execute_custom_command(dir, argv, NULL, &txt, NULL, dir, NULL, NULL); - if (!NZV(txt)) + if (EMPTY(txt)) return NULL; p = txt; diff -Nru geany-plugins-1.24.0+20140222+git/geanyvc/tests/Makefile.in geany-plugins-1.24.1+dfsg/geanyvc/tests/Makefile.in --- geany-plugins-1.24.0+20140222+git/geanyvc/tests/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geanyvc/tests/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,1140 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp \ + $(top_srcdir)/test-driver +@UNITTESTS_TRUE@TESTS = unittests$(EXEEXT) +@UNITTESTS_TRUE@check_PROGRAMS = unittests$(EXEEXT) +subdir = geanyvc/tests +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__unittests_SOURCES_DIST = unittests.c ../src/utils.c +@UNITTESTS_TRUE@am_unittests_OBJECTS = unittests-unittests.$(OBJEXT) \ +@UNITTESTS_TRUE@ unittests-utils.$(OBJEXT) +unittests_OBJECTS = $(am_unittests_OBJECTS) +am__DEPENDENCIES_1 = +@UNITTESTS_TRUE@unittests_DEPENDENCIES = $(am__DEPENDENCIES_1) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +unittests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(unittests_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(unittests_SOURCES) +DIST_SOURCES = $(am__unittests_SOURCES_DIST) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +am__tty_colors_dummy = \ + mgn= red= grn= lgn= blu= brg= std=; \ + am__color_tests=no +am__tty_colors = { \ + $(am__tty_colors_dummy); \ + if test "X$(AM_COLOR_TESTS)" = Xno; then \ + am__color_tests=no; \ + elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ + am__color_tests=yes; \ + elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ + am__color_tests=yes; \ + fi; \ + if test $$am__color_tests = yes; then \ + red=''; \ + grn=''; \ + lgn=''; \ + blu=''; \ + mgn=''; \ + brg=''; \ + std=''; \ + fi; \ +} +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__recheck_rx = ^[ ]*:recheck:[ ]* +am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* +am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* +# A command that, given a newline-separated list of test names on the +# standard input, print the name of the tests that are to be re-run +# upon "make recheck". +am__list_recheck_tests = $(AWK) '{ \ + recheck = 1; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + { \ + if ((getline line2 < ($$0 ".log")) < 0) \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ + { \ + recheck = 0; \ + break; \ + } \ + else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ + { \ + break; \ + } \ + }; \ + if (recheck) \ + print $$0; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# A command that, given a newline-separated list of test names on the +# standard input, create the global log from their .trs and .log files. +am__create_global_log = $(AWK) ' \ +function fatal(msg) \ +{ \ + print "fatal: making $@: " msg | "cat >&2"; \ + exit 1; \ +} \ +function rst_section(header) \ +{ \ + print header; \ + len = length(header); \ + for (i = 1; i <= len; i = i + 1) \ + printf "="; \ + printf "\n\n"; \ +} \ +{ \ + copy_in_global_log = 1; \ + global_test_result = "RUN"; \ + while ((rc = (getline line < ($$0 ".trs"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".trs"); \ + if (line ~ /$(am__global_test_result_rx)/) \ + { \ + sub("$(am__global_test_result_rx)", "", line); \ + sub("[ ]*$$", "", line); \ + global_test_result = line; \ + } \ + else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ + copy_in_global_log = 0; \ + }; \ + if (copy_in_global_log) \ + { \ + rst_section(global_test_result ": " $$0); \ + while ((rc = (getline line < ($$0 ".log"))) != 0) \ + { \ + if (rc < 0) \ + fatal("failed to read from " $$0 ".log"); \ + print line; \ + }; \ + printf "\n"; \ + }; \ + close ($$0 ".trs"); \ + close ($$0 ".log"); \ +}' +# Restructured Text title. +am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } +# Solaris 10 'make', and several other traditional 'make' implementations, +# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it +# by disabling -e (using the XSI extension "set +e") if it's set. +am__sh_e_setup = case $$- in *e*) set +e;; esac +# Default flags passed to test drivers. +am__common_driver_flags = \ + --color-tests "$$am__color_tests" \ + --enable-hard-errors "$$am__enable_hard_errors" \ + --expect-failure "$$am__expect_failure" +# To be inserted before the command running the test. Creates the +# directory for the log if needed. Stores in $dir the directory +# containing $f, in $tst the test, in $log the log. Executes the +# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and +# passes TESTS_ENVIRONMENT. Set up options for the wrapper that +# will run the test scripts (or their associated LOG_COMPILER, if +# thy have one). +am__check_pre = \ +$(am__sh_e_setup); \ +$(am__vpath_adj_setup) $(am__vpath_adj) \ +$(am__tty_colors); \ +srcdir=$(srcdir); export srcdir; \ +case "$@" in \ + */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ + *) am__odir=.;; \ +esac; \ +test "x$$am__odir" = x"." || test -d "$$am__odir" \ + || $(MKDIR_P) "$$am__odir" || exit $$?; \ +if test -f "./$$f"; then dir=./; \ +elif test -f "$$f"; then dir=; \ +else dir="$(srcdir)/"; fi; \ +tst=$$dir$$f; log='$@'; \ +if test -n '$(DISABLE_HARD_ERRORS)'; then \ + am__enable_hard_errors=no; \ +else \ + am__enable_hard_errors=yes; \ +fi; \ +case " $(XFAIL_TESTS) " in \ + *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ + am__expect_failure=yes;; \ + *) \ + am__expect_failure=no;; \ +esac; \ +$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) +# A shell command to get the names of the tests scripts with any registered +# extension removed (i.e., equivalently, the names of the test logs, with +# the '.log' extension removed). The result is saved in the shell variable +# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, +# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", +# since that might cause problem with VPATH rewrites for suffix-less tests. +# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. +am__set_TESTS_bases = \ + bases='$(TEST_LOGS)'; \ + bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ + bases=`echo $$bases` +RECHECK_LOGS = $(TEST_LOGS) +AM_RECURSIVE_TARGETS = check recheck +TEST_SUITE_LOG = test-suite.log +TEST_EXTENSIONS = @EXEEXT@ .test +LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) +am__set_b = \ + case '$@' in \ + */*) \ + case '$*' in \ + */*) b='$*';; \ + *) b=`echo '$@' | sed 's/\.log$$//'`; \ + esac;; \ + *) \ + b='$*';; \ + esac +am__test_logs1 = $(TESTS:=.log) +am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) +TEST_LOGS = $(am__test_logs2:.test.log=.log) +TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver +TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ + $(TEST_LOG_FLAGS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +@UNITTESTS_TRUE@AM_CFLAGS = \ +@UNITTESTS_TRUE@ -DLOCALEDIR=\""$(LOCALEDIR)"\" \ +@UNITTESTS_TRUE@ -DPREFIX=\""$(prefix)"\" \ +@UNITTESTS_TRUE@ -DDOCDIR=\""$(docdir)"\" \ +@UNITTESTS_TRUE@ -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ +@UNITTESTS_TRUE@ -DPKGDATADIR=\""$(pkgdatadir)"\" \ +@UNITTESTS_TRUE@ -DLIBDIR=\""$(libdir)"\" \ +@UNITTESTS_TRUE@ -DPKGLIBDIR=\""$(pkglibdir)"\" \ +@UNITTESTS_TRUE@ $(GEANY_CFLAGS) \ +@UNITTESTS_TRUE@ $(GP_CFLAGS) + +@UNITTESTS_TRUE@AM_LDFLAGS = -module -avoid-version +@UNITTESTS_TRUE@COMMONLIBS = \ +@UNITTESTS_TRUE@ $(GEANY_LIBS) \ +@UNITTESTS_TRUE@ $(INTLLIBS) + +@UNITTESTS_TRUE@unittests_SOURCES = unittests.c ../src/utils.c +@UNITTESTS_TRUE@unittests_CFLAGS = $(GEANY_CFLAGS) -DUNITTESTS +@UNITTESTS_TRUE@unittests_LDADD = @GEANY_LIBS@ $(INTLLIBS) @CHECK_LIBS@ +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geanyvc/tests/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geanyvc/tests/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +unittests$(EXEEXT): $(unittests_OBJECTS) $(unittests_DEPENDENCIES) $(EXTRA_unittests_DEPENDENCIES) + @rm -f unittests$(EXEEXT) + $(AM_V_CCLD)$(unittests_LINK) $(unittests_OBJECTS) $(unittests_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittests-unittests.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unittests-utils.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +unittests-unittests.o: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.o -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.o `test -f 'unittests.c' || echo '$(srcdir)/'`unittests.c + +unittests-unittests.obj: unittests.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-unittests.obj -MD -MP -MF $(DEPDIR)/unittests-unittests.Tpo -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-unittests.Tpo $(DEPDIR)/unittests-unittests.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unittests.c' object='unittests-unittests.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-unittests.obj `if test -f 'unittests.c'; then $(CYGPATH_W) 'unittests.c'; else $(CYGPATH_W) '$(srcdir)/unittests.c'; fi` + +unittests-utils.o: ../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-utils.o -MD -MP -MF $(DEPDIR)/unittests-utils.Tpo -c -o unittests-utils.o `test -f '../src/utils.c' || echo '$(srcdir)/'`../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-utils.Tpo $(DEPDIR)/unittests-utils.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../src/utils.c' object='unittests-utils.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-utils.o `test -f '../src/utils.c' || echo '$(srcdir)/'`../src/utils.c + +unittests-utils.obj: ../src/utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -MT unittests-utils.obj -MD -MP -MF $(DEPDIR)/unittests-utils.Tpo -c -o unittests-utils.obj `if test -f '../src/utils.c'; then $(CYGPATH_W) '../src/utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/utils.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/unittests-utils.Tpo $(DEPDIR)/unittests-utils.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../src/utils.c' object='unittests-utils.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unittests_CFLAGS) $(CFLAGS) -c -o unittests-utils.obj `if test -f '../src/utils.c'; then $(CYGPATH_W) '../src/utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/utils.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +# Recover from deleted '.trs' file; this should ensure that +# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create +# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells +# to avoid problems with "make -n". +.log.trs: + rm -f $< $@ + $(MAKE) $(AM_MAKEFLAGS) $< + +# Leading 'am--fnord' is there to ensure the list of targets does not +# expand to empty, as could happen e.g. with make check TESTS=''. +am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) +am--force-recheck: + @: + +$(TEST_SUITE_LOG): $(TEST_LOGS) + @$(am__set_TESTS_bases); \ + am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ + redo_bases=`for i in $$bases; do \ + am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ + done`; \ + if test -n "$$redo_bases"; then \ + redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ + redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ + if $(am__make_dryrun); then :; else \ + rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ + fi; \ + fi; \ + if test -n "$$am__remaking_logs"; then \ + echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ + "recursion detected" >&2; \ + else \ + am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ + fi; \ + if $(am__make_dryrun); then :; else \ + st=0; \ + errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ + for i in $$redo_bases; do \ + test -f $$i.trs && test -r $$i.trs \ + || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ + test -f $$i.log && test -r $$i.log \ + || { echo "$$errmsg $$i.log" >&2; st=1; }; \ + done; \ + test $$st -eq 0 || exit 1; \ + fi + @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ + ws='[ ]'; \ + results=`for b in $$bases; do echo $$b.trs; done`; \ + test -n "$$results" || results=/dev/null; \ + all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ + pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ + fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ + skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ + xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ + xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ + error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ + if test `expr $$fail + $$xpass + $$error` -eq 0; then \ + success=true; \ + else \ + success=false; \ + fi; \ + br='==================='; br=$$br$$br$$br$$br; \ + result_count () \ + { \ + if test x"$$1" = x"--maybe-color"; then \ + maybe_colorize=yes; \ + elif test x"$$1" = x"--no-color"; then \ + maybe_colorize=no; \ + else \ + echo "$@: invalid 'result_count' usage" >&2; exit 4; \ + fi; \ + shift; \ + desc=$$1 count=$$2; \ + if test $$maybe_colorize = yes && test $$count -gt 0; then \ + color_start=$$3 color_end=$$std; \ + else \ + color_start= color_end=; \ + fi; \ + echo "$${color_start}# $$desc $$count$${color_end}"; \ + }; \ + create_testsuite_report () \ + { \ + result_count $$1 "TOTAL:" $$all "$$brg"; \ + result_count $$1 "PASS: " $$pass "$$grn"; \ + result_count $$1 "SKIP: " $$skip "$$blu"; \ + result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ + result_count $$1 "FAIL: " $$fail "$$red"; \ + result_count $$1 "XPASS:" $$xpass "$$red"; \ + result_count $$1 "ERROR:" $$error "$$mgn"; \ + }; \ + { \ + echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ + $(am__rst_title); \ + create_testsuite_report --no-color; \ + echo; \ + echo ".. contents:: :depth: 2"; \ + echo; \ + for b in $$bases; do echo $$b; done \ + | $(am__create_global_log); \ + } >$(TEST_SUITE_LOG).tmp || exit 1; \ + mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ + if $$success; then \ + col="$$grn"; \ + else \ + col="$$red"; \ + test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ + fi; \ + echo "$${col}$$br$${std}"; \ + echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ + echo "$${col}$$br$${std}"; \ + create_testsuite_report --maybe-color; \ + echo "$$col$$br$$std"; \ + if $$success; then :; else \ + echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ + if test -n "$(PACKAGE_BUGREPORT)"; then \ + echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ + fi; \ + echo "$$col$$br$$std"; \ + fi; \ + $$success || exit 1 + +check-TESTS: + @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list + @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + trs_list=`for i in $$bases; do echo $$i.trs; done`; \ + log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ + exit $$?; +recheck: all $(check_PROGRAMS) + @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + @set +e; $(am__set_TESTS_bases); \ + bases=`for i in $$bases; do echo $$i; done \ + | $(am__list_recheck_tests)` || exit 1; \ + log_list=`for i in $$bases; do echo $$i.log; done`; \ + log_list=`echo $$log_list`; \ + $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ + am__force_recheck=am--force-recheck \ + TEST_LOGS="$$log_list"; \ + exit $$? +unittests.log: unittests$(EXEEXT) + @p='unittests$(EXEEXT)'; \ + b='unittests'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +.test.log: + @p='$<'; \ + $(am__set_b); \ + $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +@am__EXEEXT_TRUE@.test$(EXEEXT).log: +@am__EXEEXT_TRUE@ @p='$<'; \ +@am__EXEEXT_TRUE@ $(am__set_b); \ +@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ +@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ +@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ +@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) + $(MAKE) $(AM_MAKEFLAGS) check-TESTS +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) + -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) + -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \ + clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \ + ctags ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + recheck tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geniuspaste/Makefile.in geany-plugins-1.24.1+dfsg/geniuspaste/Makefile.in --- geany-plugins-1.24.0+20140222+git/geniuspaste/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geniuspaste/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README TODO +subdir = geniuspaste +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = geniuspaste +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geniuspaste/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geniuspaste/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/geniuspaste/src/Makefile.in geany-plugins-1.24.1+dfsg/geniuspaste/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/geniuspaste/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/geniuspaste/src/Makefile.in 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,827 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = geniuspaste/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +geniuspaste_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_geniuspaste_la_OBJECTS = geniuspaste_la-geniuspaste.lo +geniuspaste_la_OBJECTS = $(am_geniuspaste_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +geniuspaste_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(geniuspaste_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \ + $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(geniuspaste_la_SOURCES) +DIST_SOURCES = $(geniuspaste_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = geniuspaste +geanyplugins_LTLIBRARIES = geniuspaste.la +geniuspaste_la_SOURCES = geniuspaste.c +geniuspaste_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -DGEANY_VERSION=\"$(GEANY_VERSION)\" \ + -DG_LOG_DOMAIN=\"GeniusPaste\" + +geniuspaste_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(GENIUSPASTE_CFLAGS) + +geniuspaste_la_LIBADD = \ + $(COMMONLIBS) \ + $(GENIUSPASTE_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign geniuspaste/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign geniuspaste/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +geniuspaste.la: $(geniuspaste_la_OBJECTS) $(geniuspaste_la_DEPENDENCIES) $(EXTRA_geniuspaste_la_DEPENDENCIES) + $(AM_V_CCLD)$(geniuspaste_la_LINK) -rpath $(geanypluginsdir) $(geniuspaste_la_OBJECTS) $(geniuspaste_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/geniuspaste_la-geniuspaste.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +geniuspaste_la-geniuspaste.lo: geniuspaste.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geniuspaste_la_CPPFLAGS) $(CPPFLAGS) $(geniuspaste_la_CFLAGS) $(CFLAGS) -MT geniuspaste_la-geniuspaste.lo -MD -MP -MF $(DEPDIR)/geniuspaste_la-geniuspaste.Tpo -c -o geniuspaste_la-geniuspaste.lo `test -f 'geniuspaste.c' || echo '$(srcdir)/'`geniuspaste.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/geniuspaste_la-geniuspaste.Tpo $(DEPDIR)/geniuspaste_la-geniuspaste.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='geniuspaste.c' object='geniuspaste_la-geniuspaste.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(geniuspaste_la_CPPFLAGS) $(CPPFLAGS) $(geniuspaste_la_CFLAGS) $(CFLAGS) -c -o geniuspaste_la-geniuspaste.lo `test -f 'geniuspaste.c' || echo '$(srcdir)/'`geniuspaste.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/.gitignore geany-plugins-1.24.1+dfsg/.gitignore --- geany-plugins-1.24.0+20140222+git/.gitignore 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,79 +0,0 @@ -#----------------------------------------------------------------------- -# common -#----------------------------------------------------------------------- -*.[ao] -*.la -*.lo -*.so -*.dll -*.exe -*.pyc -deps.mak -.deps/ -.libs/ -Makefile -Makefile.in - -#----------------------------------------------------------------------- -# / (root) -#----------------------------------------------------------------------- -/aclocal.m4 -/autom4te.cache -/_build_ -/build/*.pyc -/build/cache -/build-aux/ -/build-stamp -/geanygdb/src/ttyhelper -/codenames -/config.guess -/config.h -/config.h.in* -/config.log -/config.status -/config.sub -/configure -/debian -/depcomp -/install-sh -/intltool -/intltool-* -/libtool -/localwin32.mk -/.lock-wscript -/ltmain.sh -/m4/ -/make_deb.sh -/missing -/mkinstalldirs -/RUN -/stamp-h -/stamp-h1 -/stamp-h.in -/*.tar.* -/TODO.* -/.waf-* -/.waf3-* -.lock-waf* - -#----------------------------------------------------------------------- -# /po/ -#----------------------------------------------------------------------- -/po/ChangeLog.save -/po/*.gmo -/po/*.header -/po/.intltool-merge-cache -/po/LINGUAS -/po/Makefile.in.in -/po/Makevars -/po/*.mo -/po/*.pot -/po/POTFILES -/po/POTFILES.ignore -/po/POTFILES.in.missing -/po/POTFILES.in.noi18n -/po/Rules-quot -/po/*.sed -/po/*.sin -/po/stamp-it - diff -Nru geany-plugins-1.24.0+20140222+git/gproject/icons/Makefile.in geany-plugins-1.24.1+dfsg/gproject/icons/Makefile.in --- geany-plugins-1.24.0+20140222+git/gproject/icons/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/icons/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,646 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = gproject/icons +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(dist_icon_DATA) +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(icondir)" +DATA = $(dist_icon_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +icondir = $(datadir)/icons/hicolor/16x16/apps +dist_icon_DATA = \ + gproject-file.png \ + gproject-header.png \ + gproject-source.png \ + gproject-expand.png \ + gproject-collapse.png \ + gproject-follow.png \ + gproject-refresh.png + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gproject/icons/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign gproject/icons/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_iconDATA: $(dist_icon_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_icon_DATA)'; test -n "$(icondir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(icondir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icondir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ + done + +uninstall-dist_iconDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_icon_DATA)'; test -n "$(icondir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(icondir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_iconDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_iconDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) uninstall-hook +.MAKE: install-am install-data-am install-strip uninstall-am + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-hook install-dist_iconDATA install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags-am uninstall uninstall-am uninstall-dist_iconDATA \ + uninstall-hook + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/gproject/Makefile.in geany-plugins-1.24.1+dfsg/gproject/Makefile.in --- geany-plugins-1.24.0+20140222+git/gproject/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README THANKS +subdir = gproject +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src icons +plugin = gproject +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gproject/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign gproject/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/gproject/src/gproject-project.c geany-plugins-1.24.1+dfsg/gproject/src/gproject-project.c --- geany-plugins-1.24.0+20140222+git/gproject/src/gproject-project.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/src/gproject-project.c 2014-04-12 14:28:39.000000000 +0000 @@ -345,9 +345,9 @@ ignored_dirs_patterns, generate_tags); - g_free(source_patterns); - g_free(header_patterns); - g_free(ignored_dirs_patterns); + g_strfreev(source_patterns); + g_strfreev(header_patterns); + g_strfreev(ignored_dirs_patterns); } diff -Nru geany-plugins-1.24.0+20140222+git/gproject/src/gproject-sidebar.c geany-plugins-1.24.1+dfsg/gproject/src/gproject-sidebar.c --- geany-plugins-1.24.0+20140222+git/gproject/src/gproject-sidebar.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/src/gproject-sidebar.c 2014-04-12 14:28:39.000000000 +0000 @@ -48,6 +48,14 @@ static struct { + GtkWidget *expand; + GtkWidget *collapse; + GtkWidget *follow; +} s_project_toolbar = {NULL, NULL, NULL}; + + +static struct +{ GtkWidget *widget; GtkWidget *dir_label; @@ -574,7 +582,13 @@ } if (path_list != NULL) + { create_branch(0, path_list, NULL, header_patterns, source_patterns); + + gtk_widget_set_sensitive(s_project_toolbar.expand, TRUE); + gtk_widget_set_sensitive(s_project_toolbar.collapse, TRUE); + gtk_widget_set_sensitive(s_project_toolbar.follow, TRUE); + } else { GtkTreeIter iter; @@ -582,6 +596,10 @@ gtk_tree_store_append(s_file_store, &iter, NULL); gtk_tree_store_set(s_file_store, &iter, FILEVIEW_COLUMN_NAME, "Set file patterns under Project->Properties", -1); + + gtk_widget_set_sensitive(s_project_toolbar.expand, FALSE); + gtk_widget_set_sensitive(s_project_toolbar.collapse, FALSE); + gtk_widget_set_sensitive(s_project_toolbar.follow, FALSE); } g_slist_foreach(header_patterns, (GFunc) g_pattern_spec_free, NULL); @@ -736,12 +754,14 @@ ui_widget_set_tooltip_text(item, _("Expand all")); g_signal_connect(item, "clicked", G_CALLBACK(on_expand_all), NULL); gtk_container_add(GTK_CONTAINER(toolbar), item); + s_project_toolbar.expand = item; item = GTK_WIDGET(gtk_tool_button_new(NULL, NULL)); gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON(item), "gproject-collapse"); ui_widget_set_tooltip_text(item, _("Collapse all")); g_signal_connect(item, "clicked", G_CALLBACK(on_collapse_all), NULL); gtk_container_add(GTK_CONTAINER(toolbar), item); + s_project_toolbar.collapse = item; item = GTK_WIDGET(gtk_separator_tool_item_new()); gtk_container_add(GTK_CONTAINER(toolbar), item); @@ -751,6 +771,7 @@ ui_widget_set_tooltip_text(item, _("Follow active editor")); g_signal_connect(item, "clicked", G_CALLBACK(on_follow_active), NULL); gtk_container_add(GTK_CONTAINER(toolbar), item); + s_project_toolbar.follow = item; gtk_box_pack_start(GTK_BOX(s_file_view_vbox), toolbar, FALSE, FALSE, 0); diff -Nru geany-plugins-1.24.0+20140222+git/gproject/src/gproject-utils.c geany-plugins-1.24.1+dfsg/gproject/src/gproject-utils.c --- geany-plugins-1.24.0+20140222+git/gproject/src/gproject-utils.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/src/gproject-utils.c 2014-04-12 14:28:39.000000000 +0000 @@ -36,7 +36,7 @@ origin = tm_get_real_path(origin_dir); dest = tm_get_real_path(dest_dir); - if (!NZV(origin) || !NZV(dest) || origin[0] != dest[0]) + if (EMPTY(origin) || EMPTY(dest) || origin[0] != dest[0]) { g_free(origin); g_free(dest); @@ -65,7 +65,7 @@ g_free(dest); g_strfreev(originv); g_strfreev(destv); - + return ret; } diff -Nru geany-plugins-1.24.0+20140222+git/gproject/src/Makefile.in geany-plugins-1.24.1+dfsg/gproject/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/gproject/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,858 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = gproject/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +gproject_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_gproject_la_OBJECTS = gproject_la-gproject-main.lo \ + gproject_la-gproject-project.lo \ + gproject_la-gproject-sidebar.lo gproject_la-gproject-utils.lo \ + gproject_la-gproject-menu.lo +gproject_la_OBJECTS = $(am_gproject_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +gproject_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(gproject_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(gproject_la_SOURCES) +DIST_SOURCES = $(gproject_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = gproject.la +gproject_la_SOURCES = \ + gproject-main.c \ + gproject-project.h \ + gproject-project.c \ + gproject-sidebar.h \ + gproject-sidebar.c \ + gproject-utils.h \ + gproject-utils.c \ + gproject-menu.h \ + gproject-menu.c + +gproject_la_CFLAGS = $(AM_CFLAGS) +gproject_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign gproject/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign gproject/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +gproject.la: $(gproject_la_OBJECTS) $(gproject_la_DEPENDENCIES) $(EXTRA_gproject_la_DEPENDENCIES) + $(AM_V_CCLD)$(gproject_la_LINK) -rpath $(geanypluginsdir) $(gproject_la_OBJECTS) $(gproject_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gproject_la-gproject-main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gproject_la-gproject-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gproject_la-gproject-project.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gproject_la-gproject-sidebar.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gproject_la-gproject-utils.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +gproject_la-gproject-main.lo: gproject-main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -MT gproject_la-gproject-main.lo -MD -MP -MF $(DEPDIR)/gproject_la-gproject-main.Tpo -c -o gproject_la-gproject-main.lo `test -f 'gproject-main.c' || echo '$(srcdir)/'`gproject-main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gproject_la-gproject-main.Tpo $(DEPDIR)/gproject_la-gproject-main.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gproject-main.c' object='gproject_la-gproject-main.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -c -o gproject_la-gproject-main.lo `test -f 'gproject-main.c' || echo '$(srcdir)/'`gproject-main.c + +gproject_la-gproject-project.lo: gproject-project.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -MT gproject_la-gproject-project.lo -MD -MP -MF $(DEPDIR)/gproject_la-gproject-project.Tpo -c -o gproject_la-gproject-project.lo `test -f 'gproject-project.c' || echo '$(srcdir)/'`gproject-project.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gproject_la-gproject-project.Tpo $(DEPDIR)/gproject_la-gproject-project.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gproject-project.c' object='gproject_la-gproject-project.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -c -o gproject_la-gproject-project.lo `test -f 'gproject-project.c' || echo '$(srcdir)/'`gproject-project.c + +gproject_la-gproject-sidebar.lo: gproject-sidebar.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -MT gproject_la-gproject-sidebar.lo -MD -MP -MF $(DEPDIR)/gproject_la-gproject-sidebar.Tpo -c -o gproject_la-gproject-sidebar.lo `test -f 'gproject-sidebar.c' || echo '$(srcdir)/'`gproject-sidebar.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gproject_la-gproject-sidebar.Tpo $(DEPDIR)/gproject_la-gproject-sidebar.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gproject-sidebar.c' object='gproject_la-gproject-sidebar.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -c -o gproject_la-gproject-sidebar.lo `test -f 'gproject-sidebar.c' || echo '$(srcdir)/'`gproject-sidebar.c + +gproject_la-gproject-utils.lo: gproject-utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -MT gproject_la-gproject-utils.lo -MD -MP -MF $(DEPDIR)/gproject_la-gproject-utils.Tpo -c -o gproject_la-gproject-utils.lo `test -f 'gproject-utils.c' || echo '$(srcdir)/'`gproject-utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gproject_la-gproject-utils.Tpo $(DEPDIR)/gproject_la-gproject-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gproject-utils.c' object='gproject_la-gproject-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -c -o gproject_la-gproject-utils.lo `test -f 'gproject-utils.c' || echo '$(srcdir)/'`gproject-utils.c + +gproject_la-gproject-menu.lo: gproject-menu.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -MT gproject_la-gproject-menu.lo -MD -MP -MF $(DEPDIR)/gproject_la-gproject-menu.Tpo -c -o gproject_la-gproject-menu.lo `test -f 'gproject-menu.c' || echo '$(srcdir)/'`gproject-menu.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/gproject_la-gproject-menu.Tpo $(DEPDIR)/gproject_la-gproject-menu.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gproject-menu.c' object='gproject_la-gproject-menu.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gproject_la_CFLAGS) $(CFLAGS) -c -o gproject_la-gproject-menu.lo `test -f 'gproject-menu.c' || echo '$(srcdir)/'`gproject-menu.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/gproject/wscript_build geany-plugins-1.24.1+dfsg/gproject/wscript_build --- geany-plugins-1.24.0+20140222+git/gproject/wscript_build 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/gproject/wscript_build 2014-04-12 14:28:39.000000000 +0000 @@ -29,10 +29,8 @@ build_plugin(bld, name, includes=includes) # Icons -if target_is_win32(bld): - icon_dest = '${GEANYPLUGINS_DATADIR}/icons' -else: - icon_dest = '${GEANYPLUGINS_DATADIR}/icons/hicolor/16x16/apps' +prefix = '${G_PREFIX}/' if target_is_win32(bld) else '' +icon_dest = '%s${GEANYPLUGINS_DATADIR}/icons/hicolor/16x16/apps' % prefix start_dir = bld.path.find_dir('icons') bld.install_files(icon_dest, start_dir.ant_glob('*.png'), cwd=start_dir) diff -Nru geany-plugins-1.24.0+20140222+git/HACKING geany-plugins-1.24.1+dfsg/HACKING --- geany-plugins-1.24.0+20140222+git/HACKING 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/HACKING 1970-01-01 00:00:00.000000000 +0000 @@ -1,292 +0,0 @@ -======================== -Hacking on Geany-Plugins -======================== -.. contents:: - -General -======= - -About this file ---------------- -This file contains some useful information for any plugin developer, and -especially for new plugin developers. A lot of information inside -`Geany's HACKING file ` is useful -as well, so it's recommended you give it a read. - - -Building your plugin --------------------- -You should first read either `README` or `README.waf` depending on whether -you want to use Autotools or Waf to build the plugins. - - -Autotools Build System -^^^^^^^^^^^^^^^^^^^^^^ -The Autotools build system automatically enables some code checking -utilities, meant to ease tracking of common programming mistakes, or simply -to help making everyone's plugin code better. -They currently are: - -* C compiler warnings (can be disabled with the ``--disable-extra-c-warnings`` - configuration flag) -- this test is (obviouly) run during build; -* Static code analysis using ``cppcheck`` (can be disabled with the - ``--disable-cppcheck`` configuration flag) -- this test is run during - ``make check``. - -These features are only here to help you writing better code: they -are not necessarily and always right -- though they try. However -it's highly recommended to make usage of them and fix maybe occuring -issues before submitting a patch. If you think they reports wrong -problems, please file a report on the appropriate place (either the -mailing lists or the geany-plugins bug tracker). - - -Documentation -------------- - -README -^^^^^^ - -Each plugin folder should contain at least a `README` file for -documentation. - - -Markup language -############### - -The `README` is intended to be written in `Restructured Text -`_ (as this document is) and -therefore should work with ``rst2html`` or similar tools. The reason -for this is that this information is used to generate the content of -the `Plugins Website `. - - -Recommended contents -#################### - -The documentation should include a detailed description on features -offered by the plugins and usage of those features. It should also -include some basic information to make it easier for users to get in -touch with the developer(s) or to find further help in case of any -issues. You can use some of the other `README` files to get a -general idea of what should be in the file, but generally it should -contain: - -* author(s) of plugin and their mail addresses -* external web site (if any) -* known issues -* bug tracker -* dependencies - - -Committing ----------- - -General -^^^^^^^ - -* Commit one thing at a time, do small commits. Commits should be - meaningful and not too big when possible; multiple small commits are - good if there is no good reason to group them. -* Use meaningful name and email in the Author and Committer fields. - This helps knowing who did what and allows to contact the author if - there is a good reason to do so (unlikely, but can happen). Using - the email address associated with your GitHub account will allows - for better integration with the website's hyperlinking to accounts - features. -* When working on a new feature, create a new branch for it. When - merging it, use the --no-ff option to make sure a merge commit will - be created to better track what happened. However, if the feature - only took one commit you might merge it fast-forward since there is - not history to keep together. - - -Commit messages -^^^^^^^^^^^^^^^ - -Follow the standard Git formatting: - -* No line should use more than about 80 characters (around 72 is best). -* The first line is the commit's summary and is followed by an empty - line. This summary should be one line and one line only, thus less - than 80 characters. This summary should not include any punctuation - unless really needed. See it as the subject of an email: keep it - concise and as precise as you can, but not tool long. -* If you're working on a specific plugin, prefix the summary line - with the lower case name of the plugin (same as the directory name) - to make it easier to know which commit affected which plugin without - having to thoroughly examine the commit diff itself. No prefix is - needed if the commit is non-plugin specific or affects only files - outside of the plugins' directories. -* Following lines are optional detailed commit information, with - paragraphs separated by blank lines. This part should be as long as - needed to describe the commit in depth, should use proper - punctuation and should include any useful information, like the - motivation for the patch and/or any valuable details the diff itself - doesn't provide or make clear. Make it as complete as you think - it makes sense, but don't include an information that is better - explained by the commit's diff. - - It is OK to use ASCII formatting like bullet list using "*" or "-", - etc. if useful, but emphasis (bold, italic, underline) should be - avoided. - -Example:: - - Ask the user if spawn fails in utils_open_browser() - - Ask the user to configure a valid browser command if spawning it - fails rather than falling back to some arbitrary hardcoded defaults. - - This avoid spawning an unexpected browser when the configured one is - wrong, and gives the user a chance to correctly fix the preference. - - -Coding and Plugin structure -=========================== - -Structure of a plugin ---------------------- - -Your plugin shall be structured like this: - -- yourplugin - - src/ - - data/ - - doc/ - -Where you put all your source code inside the src-folder, all -additional data like scripts should be put into a seperate -data-folder and content for plugin documentation fit into the folder -doc. - -Adding a new plugin to autotools build system ---------------------------------------------- - -configure.ac -^^^^^^^^^^^^ - -Add an entry into configure.ac for your plugin. The entry should look like -``GP_CHECK_YOURFANCYPLUGINNAME`` - -Makefile.am -^^^^^^^^^^^ - -Add an entry into Makefile.am where to find the sources of your plugin. -This entry shall look like this:: - - if ENABLE_YOURFANCYPLUGINNAME - SUBDIRS += yourfancyplugin - endif - - -build-subfolder -^^^^^^^^^^^^^^^ - -To build your plugin you will also need to add an m4-script inside -the ``build`` subfolder of the geany-plugin sources. The file should -be called ``yourfancypluginname.m4`` and contain the definition of the M4 -macro that checks for your plugin's dependencies and generates its -build files, which macro is called from configure.ac:: - - AC_DEFUN([GP_CHECK_YOURFANCYPLUGINNAME], - [ - GP_ARG_DISABLE([yourfancypluginname], [auto]) - GP_STATUS_PLUGIN_ADD([yourfancypluginname], [$enable_yourfancxpluginname]) - AC_CONFIG_FILES([ - yourplugin/Makefile - yourplugin/src/Makefile - ]) - ]) - - -Makefile inside your plugin folder -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -The Makefile inside your plugin folder can be seperated at least -into two parts: The first part is located inside the root folder of -your plugin, whereas the second one is located inside src/ of your -plugin. - - -Plugin-root -########### - -The file should be called ``Makefile.am`` and contains the entry -point for really building your plugin. The easiest version could look -similar to this:: - - include $(top_srcdir)/build/vars.auxfiles.mk - SUBDIRS = src - plugin = yourfancypluginname - - -src-folder -########### - -The ``Makefile.am`` inside the src-Folder is containing the -informationen how to build the sources. An example could look like:: - - include $(top_srcdir)/build/vars.build.mk - - yourfancypluginname_LTLIBRARIES = yourfancypluginname.la - - yourfancypluginname_la_SOURCES = yourfancypluginname.c - yourfancypluginname_la_LIBADD = $(COMMONLIBS) - - include $(top_srcdir)/build/cppcheck.mk - -Additional things to do for a new plugin ----------------------------------------- - -Adding yourself to MAINTAINERS -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -As you might want to keep on maintaining your newly added plugin, we -recommend to put your contact data to file MAINTAINERS which is -located inside geany-plugins root folder. The entry should contain -your plugin name as well as some of the important data. An example -could look like:: - - myfancyplugin - P: Jon Doe - M: Jon Doe - W: http://example.org/myfancyplugin - S: Maintained - -The flags can be compiled like this: - -* P: Person -* M: Mail patches to: FullName -* W: Web-page with status/info -* S: Status of plugin - -Once you have a look onto MAINTAINERS you will see a lot of examples -as well as some more detailed information. - - -Adding your plugin-files to po/POTFILES.in -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -If you want to have your plugin translated into different languages -you will have to add your plugin to file po/POTFILES.in. This -contains a list of all translateable files for each plugin. An -example could look like:: - - #myfancyplugin - yourfancypluginname/src/yourfancypluginname.c - - -I18n/l10n ---------- - -Geany-Plugins is supporting localisation of your plugin. To make -usage of it, there needs to be done: - -* Mark each string which should be translatable with the gettext macro - ``_()`` or ``N_()`` for static strings. As an example the string - ``"Hello World"`` might become ``_("Hello World")``. -* Add files with translateable strings into ``po/POTFILES.in``. You - should group them for your plugin as done for the other. Each files - needs to be put into one line with complete relative path from - plugin root directory. E.g. ``myplugin/src/myplugin.c`` diff -Nru geany-plugins-1.24.0+20140222+git/install-sh geany-plugins-1.24.1+dfsg/install-sh --- geany-plugins-1.24.0+20140222+git/install-sh 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/install-sh 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-11-20.07; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# 'make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call 'install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for 'test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/ltmain.sh geany-plugins-1.24.1+dfsg/ltmain.sh --- geany-plugins-1.24.0+20140222+git/ltmain.sh 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/ltmain.sh 2014-04-13 17:12:33.000000000 +0000 @@ -0,0 +1,9661 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool 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. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7ubuntu1 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.2 Debian-2.4.2-1.7ubuntu1" +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff -Nru geany-plugins-1.24.0+20140222+git/MAINTAINERS geany-plugins-1.24.1+dfsg/MAINTAINERS --- geany-plugins-1.24.0+20140222+git/MAINTAINERS 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/MAINTAINERS 1970-01-01 00:00:00.000000000 +0000 @@ -1,235 +0,0 @@ -# P: Person -# M: Mail patches to: FullName -# W: Web-page with status/info -# S: Status, one of the following: -# Maintained: Someone actually looks after it. -# Odd Fixes: It has a maintainer but they don't have time to do -# much other than throw the odd patch in. See below.. -# Orphan: No current maintainer [but maybe you could take the -# role as you write your new code]. -# Obsolete: Old code. Something tagged obsolete generally means -# it has been replaced by a better system and you -# should be using that. - -addons -P: Enrico Tröger -M: Enrico Tröger -W: http://plugins.geany.org/addons.html -S: Maintained - -autoclose -P: Pavel Roschin -M: Pavel Roschin -W: -S: Maintained - -codenav -P: -M: -W: -S: Orphan - -commander -P: Colomban Wendling -M: Colomban Wendling -W: -S: Maintained - - -debugger -P: Alexander Petukhov -M: Alexander Petukhov -W: http://plugins.geany.org/debugger.html -S: Maintained - -defineformat -P: Pavel Roschin -M: Pavel Roschin -W: http://plugins.geany.org/defineformat.html -S: Maintained - -devhelp -P: Matthew Brush -M: Matthew Brush -W: http://plugins.geany.org/devhelp.html -S: Maintained - -geanydoc -P: Yura Siamashka -M: Yura Siamashka -W: http://plugins.geany.org/geanydoc.html -S: Odd Fixes - -geanyextrasel -P: Dimitar Zhekov -M: Dimitar Zhekov -W: http://sheckley.users.sourceforge.net -S: Maintained - -geanygendoc -P: Colomban Wendling -M: Colomban Wendling -W: http://plugins.geany.org/geanygendoc.html -S: Maintained - -geanyinsertnum -P: Dimitar Zhekov -M: Dimitar Zhekov -W: http://sheckley.users.sourceforge.net -S: Maintained - -geanylatex -P: Frank Lanitz -M: Frank Lanitz -W: http://frank.uvena.de/en/Geany/geanylatex/ -S: Maintained - -geanylipsum -P: Frank Lanitz -M: Frank Lanitz -W: http://plugins.geany.org/geanylipsum.html -S: Maintained - -geanylua -P: -M: -W: -S: Orphan - -geanymacro -P: William Fraser -M: William Fraser -W: http://plugins.geany.org/geanymacro.html -S: Maintained - -geanyminiscript -P: Eugene Arshinov -M: Eugene Arshinov -W: -S: Maintained - -geanynumberedbookmarks -P: William Fraser -M: William Fraser -W: http://plugins.geany.org/geanynumberedbookmarks.html -S: Maintained - -geanypg -P: Hans Alves -M: Hans Alves -W: http://plugins.geany.org/geanypg.html -S: Odd Fixes - -geanyprj -P: Yura Siamashka -M: Yura Siamashka -W: http://plugins.geany.org/geanyprj.html -S: Odd Fixes - -geanypy -P: Lex Trotman -M: Lex Trotman -W: http://plugins.geany.org/geanypy.html -S: Maintained - -geanysendmail -P: Frank Lanitz -M: Frank Lanitz -W: http://plugins.geany.org/geanysendmail.html -S: Maintained - -geanyvc -P: Yura Siamashka -M: Yura Siamashka -W: http://plugins.geany.org/geanyvc.html -S: Odd Fixes - -geniuspaste -P: Enrico Trotta -M: Enrico Trotta -W: -S: Maintained - -gproject -P: Jiří Techet -M: Jiří Techet -W: http://plugins.geany.org/gproject.html -S: Maintained - -markdown -P: Matthew Brush -M: Matthew Brush -W: -S: Maintained - -multiterm -P: Matthew Brush -M: Matthew Brush -W: http://plugins.geany.org/multiterm.html -S: Maintained - -pairtaghighlighter -P: Volodymyr Kononenko -M: Volodymyr Kononenko -W: -S: Maintained - -pretty-printer -P: -M: -W: -S: Orphan - -pohelper -P: Colomban Wendling -M: Colomban Wendling -W: http://plugins.geany.org/pohelper.html -S: Maintained - -scope -P: Dimitar Zhekov -M: Dimitar Zhekov -W: http://sheckley.users.sourceforge.net -S: Maintained - -shiftcolumn -P: -M: -W: -S: Orphan - -spellcheck -P: Enrico Tröger -M: Enrico Tröger -W: http://plugins.geany.org/spellcheck.html -S: Maintained - -tableconvert -P: Frank Lanitz -M: Frank Lanitz -W: http://plugins.geany.org/tableconvert.html -S: Maintained - -treebrowser -P: Adam Dingle -M: Adam Dingle -W: http://plugins.geany.org/treebrowser.html -S: Maintained - -updatechecker -P: Frank Lanitz -M: Frank Lanitz -W: http://plugins.geany.org/updatechecker.html -S: Maintained - -webhelper -P: Colomban Wendling -M: Colomban Wendling -W: http://plugins.geany.org/webhelper.html -S: Maintained - -xmlsnippets -P: Eugene Arshinov -M: Eugene Arshinov -W: http://plugins.geany.org/xmlsnippets.html -S: Maintained diff -Nru geany-plugins-1.24.0+20140222+git/Makefile.in geany-plugins-1.24.1+dfsg/Makefile.in --- geany-plugins-1.24.0+20140222+git/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/Makefile.in 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,1007 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +@ENABLE_ADDONS_TRUE@am__append_1 = addons +@ENABLE_AUTOCLOSE_TRUE@am__append_2 = autoclose +@ENABLE_CODENAV_TRUE@am__append_3 = codenav +@ENABLE_COMMANDER_TRUE@am__append_4 = commander +@ENABLE_DEBUGGER_TRUE@am__append_5 = debugger +@ENABLE_DEFINEFORMAT_TRUE@am__append_6 = defineformat +@ENABLE_DEVHELP_TRUE@am__append_7 = devhelp +@ENABLE_GEANYDOC_TRUE@am__append_8 = geanydoc +@ENABLE_GEANYEXTRASEL_TRUE@am__append_9 = geanyextrasel +@ENABLE_GEANYGENDOC_TRUE@am__append_10 = geanygendoc +@ENABLE_GEANYINSERTNUM_TRUE@am__append_11 = geanyinsertnum +@ENABLE_GEANYLATEX_TRUE@am__append_12 = geanylatex +@ENABLE_GEANYLIPSUM_TRUE@am__append_13 = geanylipsum +@ENABLE_GEANYLUA_TRUE@am__append_14 = geanylua +@ENABLE_GEANYMACRO_TRUE@am__append_15 = geanymacro +@ENABLE_GEANYMINISCRIPT_TRUE@am__append_16 = geanyminiscript +@ENABLE_GEANYNUMBEREDBOOKMARKS_TRUE@am__append_17 = geanynumberedbookmarks +@ENABLE_GEANYPG_TRUE@am__append_18 = geanypg +@ENABLE_GEANYPRJ_TRUE@am__append_19 = geanyprj +@ENABLE_GEANYPY_TRUE@am__append_20 = geanypy +@ENABLE_GEANYSENDMAIL_TRUE@am__append_21 = geanysendmail +@ENABLE_GEANYVC_TRUE@am__append_22 = geanyvc +@ENABLE_GENIUSPASTE_TRUE@am__append_23 = geniuspaste +@ENABLE_GPROJECT_TRUE@am__append_24 = gproject +@ENABLE_MARKDOWN_TRUE@am__append_25 = markdown +@ENABLE_MULTITERM_TRUE@am__append_26 = multiterm +@ENABLE_PAIRTAGHIGHLIGHTER_TRUE@am__append_27 = pairtaghighlighter +@ENABLE_POHELPER_TRUE@am__append_28 = pohelper +@ENABLE_PRETTY_PRINTER_TRUE@am__append_29 = pretty-printer +@ENABLE_SCOPE_TRUE@am__append_30 = scope +@ENABLE_SHIFTCOLUMN_TRUE@am__append_31 = shiftcolumn +@ENABLE_SPELLCHECK_TRUE@am__append_32 = spellcheck +@ENABLE_TABLECONVERT_TRUE@am__append_33 = tableconvert +@ENABLE_TREEBROWSER_TRUE@am__append_34 = treebrowser +@ENABLE_UPDATECHECKER_TRUE@am__append_35 = updatechecker +@ENABLE_WEBHELPER_TRUE@am__append_36 = webhelper +@ENABLE_XMLSNIPPETS_TRUE@am__append_37 = xmlsnippets +subdir = . +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/configure $(am__configure_deps) \ + $(srcdir)/config.h.in NEWS README compile config.guess \ + config.sub install-sh missing ltmain.sh +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +DIST_SUBDIRS = po addons autoclose codenav commander debugger \ + defineformat devhelp geanydoc geanyextrasel geanygendoc \ + geanyinsertnum geanylatex geanylipsum geanylua geanymacro \ + geanyminiscript geanynumberedbookmarks geanypg geanyprj \ + geanypy geanysendmail geanyvc geniuspaste gproject markdown \ + multiterm pairtaghighlighter pohelper pretty-printer scope \ + shiftcolumn spellcheck tableconvert treebrowser updatechecker \ + webhelper xmlsnippets +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 +GZIP_ENV = --best +DIST_TARGETS = dist-bzip2 dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +ACLOCAL_AMFLAGS = -I build/cache -I build -I build/bundled -I geanypy/m4 --install +AM_DISTCHECK_CONFIGURE_FLAGS = --with-geany-libdir='$${libdir}' +SUBDIRS = po $(am__append_1) $(am__append_2) $(am__append_3) \ + $(am__append_4) $(am__append_5) $(am__append_6) \ + $(am__append_7) $(am__append_8) $(am__append_9) \ + $(am__append_10) $(am__append_11) $(am__append_12) \ + $(am__append_13) $(am__append_14) $(am__append_15) \ + $(am__append_16) $(am__append_17) $(am__append_18) \ + $(am__append_19) $(am__append_20) $(am__append_21) \ + $(am__append_22) $(am__append_23) $(am__append_24) \ + $(am__append_25) $(am__append_26) $(am__append_27) \ + $(am__append_28) $(am__append_29) $(am__append_30) \ + $(am__append_31) $(am__append_32) $(am__append_33) \ + $(am__append_34) $(am__append_35) $(am__append_36) \ + $(am__append_37) +EXTRA_DIST = \ + build/__init__.py \ + build/wafcache.py \ + build/wafutils.py \ + waf \ + wscript \ + README.waf \ + README.windows + +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + --srcdir=.. --prefix="$$dc_install_base" \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile config.h +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) all install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-cscope clean-generic \ + clean-libtool cscope cscopelist-am ctags ctags-am dist \ + dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ + dist-xz dist-zip distcheck distclean distclean-generic \ + distclean-hdr distclean-libtool distclean-tags distcleancheck \ + distdir distuninstallcheck dvi dvi-am html html-am info \ + info-am install install-am install-data install-data-am \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/markdown/docs/Makefile.in geany-plugins-1.24.1+dfsg/markdown/docs/Makefile.in --- geany-plugins-1.24.0+20140222+git/markdown/docs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/docs/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,636 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = markdown/docs +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(dist_help_DATA) +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(helpdir)" +DATA = $(dist_help_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +helpdir = $(docdir)/markdown/html +dist_help_DATA = \ + help.html \ + plugin.png \ + plugin_mgr.png \ + plugin_prefs.png \ + plugin_small.png \ + set_filetype.png \ + settings.png + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign markdown/docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign markdown/docs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_helpDATA: $(dist_help_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_help_DATA)'; test -n "$(helpdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(helpdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(helpdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(helpdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(helpdir)" || exit $$?; \ + done + +uninstall-dist_helpDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_help_DATA)'; test -n "$(helpdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(helpdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(helpdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_helpDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_helpDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_helpDATA install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_helpDATA + + +# To update the HTML help file +help.html: $(top_srcdir)/markdown/README + rst2html $< > $@ + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/markdown/.gitignore geany-plugins-1.24.1+dfsg/markdown/.gitignore --- geany-plugins-1.24.0+20140222+git/markdown/.gitignore 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -/peg-markdown/markdown_parser.c -/peg-markdown/peg-0.1.9/leg diff -Nru geany-plugins-1.24.0+20140222+git/markdown/Makefile.in geany-plugins-1.24.1+dfsg/markdown/Makefile.in --- geany-plugins-1.24.0+20140222+git/markdown/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,826 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +@MARKDOWN_PEG_MARKDOWN_TRUE@am__append_1 = peg-markdown +subdir = markdown +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = peg-markdown src docs +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = $(am__append_1) src docs +plugin = markdown +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign markdown/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign markdown/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/LICENSE geany-plugins-1.24.1+dfsg/markdown/peg-markdown/LICENSE --- geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/LICENSE 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/peg-markdown/LICENSE 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ -markdown in c, implemented using PEG grammar -Copyright (c) 2008-2011 John MacFarlane -ODF output code (c) 2011 Fletcher T. Penney - -peg-markdown is released under both the GPL and MIT licenses. -You may pick the license that best fits your needs. - -The GPL - -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 - -The MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - -peg-0.1.4 (included for convenience - http://piumarta.com/software/peg/) - -Copyright (c) 2007 by Ian Piumarta -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the 'Software'), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, provided that the above copyright notice(s) and this -permission notice appear in all copies of the Software. Acknowledgement -of the use of this Software in supporting documentation would be -appreciated but is not required. - -THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. - -* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - -my_getopt (included for convenience - http://www.geocities.com/bsittler/) - -Copyright 1997, 2000, 2001, 2002, 2006, Benjamin Sittler - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - diff -Nru geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/Makefile.in geany-plugins-1.24.1+dfsg/markdown/peg-markdown/Makefile.in --- geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/peg-markdown/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,908 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = markdown/peg-markdown +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/depcomp README +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +am__DEPENDENCIES_1 = +libpegmarkdown_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am_libpegmarkdown_la_OBJECTS = libpegmarkdown_la-markdown_lib.lo \ + libpegmarkdown_la-markdown_output.lo \ + libpegmarkdown_la-markdown_parser.lo libpegmarkdown_la-odf.lo \ + libpegmarkdown_la-parsing_functions.lo \ + libpegmarkdown_la-utility_functions.lo +libpegmarkdown_la_OBJECTS = $(am_libpegmarkdown_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libpegmarkdown_la_SOURCES) +DIST_SOURCES = $(libpegmarkdown_la_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = peg-0.1.9 +noinst_LTLIBRARIES = libpegmarkdown.la +libpegmarkdown_la_CPPFLAGS = $(GEANY_CFLAGS) +libpegmarkdown_la_LIBADD = $(GEANY_LIBS) +libpegmarkdown_la_SOURCES = \ + markdown_lib.c \ + markdown_lib.h \ + markdown_output.c \ + markdown_parser.c \ + markdown_peg.h \ + odf.c \ + odf.h \ + parsing_functions.c \ + parsing_functions.h \ + utility_functions.c \ + utility_functions.h + +LEG = peg-0.1.9/leg +CLEANFILES = markdown_parser.c +EXTRA_DIST = markdown_parser.leg +all: all-recursive + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign markdown/peg-markdown/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign markdown/peg-markdown/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libpegmarkdown.la: $(libpegmarkdown_la_OBJECTS) $(libpegmarkdown_la_DEPENDENCIES) $(EXTRA_libpegmarkdown_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) $(libpegmarkdown_la_OBJECTS) $(libpegmarkdown_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-markdown_lib.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-markdown_output.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-markdown_parser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-odf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-parsing_functions.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpegmarkdown_la-utility_functions.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +libpegmarkdown_la-markdown_lib.lo: markdown_lib.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-markdown_lib.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-markdown_lib.Tpo -c -o libpegmarkdown_la-markdown_lib.lo `test -f 'markdown_lib.c' || echo '$(srcdir)/'`markdown_lib.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-markdown_lib.Tpo $(DEPDIR)/libpegmarkdown_la-markdown_lib.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='markdown_lib.c' object='libpegmarkdown_la-markdown_lib.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-markdown_lib.lo `test -f 'markdown_lib.c' || echo '$(srcdir)/'`markdown_lib.c + +libpegmarkdown_la-markdown_output.lo: markdown_output.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-markdown_output.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-markdown_output.Tpo -c -o libpegmarkdown_la-markdown_output.lo `test -f 'markdown_output.c' || echo '$(srcdir)/'`markdown_output.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-markdown_output.Tpo $(DEPDIR)/libpegmarkdown_la-markdown_output.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='markdown_output.c' object='libpegmarkdown_la-markdown_output.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-markdown_output.lo `test -f 'markdown_output.c' || echo '$(srcdir)/'`markdown_output.c + +libpegmarkdown_la-markdown_parser.lo: markdown_parser.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-markdown_parser.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-markdown_parser.Tpo -c -o libpegmarkdown_la-markdown_parser.lo `test -f 'markdown_parser.c' || echo '$(srcdir)/'`markdown_parser.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-markdown_parser.Tpo $(DEPDIR)/libpegmarkdown_la-markdown_parser.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='markdown_parser.c' object='libpegmarkdown_la-markdown_parser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-markdown_parser.lo `test -f 'markdown_parser.c' || echo '$(srcdir)/'`markdown_parser.c + +libpegmarkdown_la-odf.lo: odf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-odf.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-odf.Tpo -c -o libpegmarkdown_la-odf.lo `test -f 'odf.c' || echo '$(srcdir)/'`odf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-odf.Tpo $(DEPDIR)/libpegmarkdown_la-odf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='odf.c' object='libpegmarkdown_la-odf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-odf.lo `test -f 'odf.c' || echo '$(srcdir)/'`odf.c + +libpegmarkdown_la-parsing_functions.lo: parsing_functions.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-parsing_functions.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-parsing_functions.Tpo -c -o libpegmarkdown_la-parsing_functions.lo `test -f 'parsing_functions.c' || echo '$(srcdir)/'`parsing_functions.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-parsing_functions.Tpo $(DEPDIR)/libpegmarkdown_la-parsing_functions.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parsing_functions.c' object='libpegmarkdown_la-parsing_functions.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-parsing_functions.lo `test -f 'parsing_functions.c' || echo '$(srcdir)/'`parsing_functions.c + +libpegmarkdown_la-utility_functions.lo: utility_functions.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpegmarkdown_la-utility_functions.lo -MD -MP -MF $(DEPDIR)/libpegmarkdown_la-utility_functions.Tpo -c -o libpegmarkdown_la-utility_functions.lo `test -f 'utility_functions.c' || echo '$(srcdir)/'`utility_functions.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpegmarkdown_la-utility_functions.Tpo $(DEPDIR)/libpegmarkdown_la-utility_functions.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utility_functions.c' object='libpegmarkdown_la-utility_functions.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpegmarkdown_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpegmarkdown_la-utility_functions.lo `test -f 'utility_functions.c' || echo '$(srcdir)/'`utility_functions.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(LTLIBRARIES) +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-recursive + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool \ + clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am + + +$(LEG): + $(MAKE) -C peg-0.1.9 leg + +markdown_parser.c: markdown_parser.leg $(LEG) + $(AM_V_GEN)$(LEG) -o $@ $< + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/markdown_parser.c geany-plugins-1.24.1+dfsg/markdown/peg-markdown/markdown_parser.c --- geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/markdown_parser.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/peg-markdown/markdown_parser.c 2014-04-13 17:17:55.000000000 +0000 @@ -0,0 +1,6715 @@ +/* A recursive-descent parser generated by peg 0.1.9 */ + +#include +#include +#include +#define YYRULECOUNT 240 + +/********************************************************************** + + markdown_parser.leg - markdown parser in C using a PEG grammar. + (c) 2008 John MacFarlane (jgm at berkeley dot edu). + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License or the MIT + license. See LICENSE for details. + + 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. + + ***********************************************************************/ + +#include +#include +#include "markdown_peg.h" +#include "utility_functions.h" + + + +/********************************************************************** + + Definitions for leg parser generator. + YY_INPUT is the function the parser calls to get new input. + We take all new input from (static) charbuf. + + ***********************************************************************/ + + + +# define YYSTYPE element * +#ifdef __DEBUG__ +# define YY_DEBUG 1 +#endif + +#define YY_INPUT(buf, result, max_size) \ +{ \ + int yyc; \ + if (charbuf && *charbuf != '\0') { \ + yyc= *charbuf++; \ + } else { \ + yyc= EOF; \ + } \ + result= (EOF == yyc) ? 0 : (*(buf)= yyc, 1); \ +} + +#define YY_RULE(T) T + + +/********************************************************************** + + PEG grammar and parser actions for markdown syntax. + + ***********************************************************************/ + + +#ifndef YY_LOCAL +#define YY_LOCAL(T) static T +#endif +#ifndef YY_ACTION +#define YY_ACTION(T) static T +#endif +#ifndef YY_RULE +#define YY_RULE(T) static T +#endif +#ifndef YY_PARSE +#define YY_PARSE(T) T +#endif +#ifndef YYPARSE +#define YYPARSE yyparse +#endif +#ifndef YYPARSEFROM +#define YYPARSEFROM yyparsefrom +#endif +#ifndef YY_INPUT +#define YY_INPUT(buf, result, max_size) \ + { \ + int yyc= getchar(); \ + result= (EOF == yyc) ? 0 : (*(buf)= yyc, 1); \ + yyprintf((stderr, "<%c>", yyc)); \ + } +#endif +#ifndef YY_BEGIN +#define YY_BEGIN ( ctx->begin= ctx->pos, 1) +#endif +#ifndef YY_END +#define YY_END ( ctx->end= ctx->pos, 1) +#endif +#ifdef YY_DEBUG +# define yyprintf(args) fprintf args +#else +# define yyprintf(args) +#endif +#ifndef YYSTYPE +#define YYSTYPE int +#endif + +#ifndef YY_PART + +typedef struct _yycontext yycontext; +typedef void (*yyaction)(yycontext *ctx, char *yytext, int yyleng); +typedef struct _yythunk { int begin, end; yyaction action; struct _yythunk *next; } yythunk; + +struct _yycontext { + char *buf; + int buflen; + int pos; + int limit; + char *text; + int textlen; + int begin; + int end; + int textmax; + yythunk *thunks; + int thunkslen; + int thunkpos; + YYSTYPE yy; + YYSTYPE *val; + YYSTYPE *vals; + int valslen; +#ifdef YY_CTX_MEMBERS + YY_CTX_MEMBERS +#endif +}; + +#ifdef YY_CTX_LOCAL +#define YY_CTX_PARAM_ yycontext *yyctx, +#define YY_CTX_PARAM yycontext *yyctx +#define YY_CTX_ARG_ yyctx, +#define YY_CTX_ARG yyctx +#else +#define YY_CTX_PARAM_ +#define YY_CTX_PARAM +#define YY_CTX_ARG_ +#define YY_CTX_ARG +yycontext yyctx0; +yycontext *yyctx= &yyctx0; +#endif + +YY_LOCAL(int) yyrefill(yycontext *ctx) +{ + int yyn; + while (ctx->buflen - ctx->pos < 512) + { + ctx->buflen *= 2; + ctx->buf= (char *)realloc(ctx->buf, ctx->buflen); + } + YY_INPUT((ctx->buf + ctx->pos), yyn, (ctx->buflen - ctx->pos)); + if (!yyn) return 0; + ctx->limit += yyn; + return 1; +} + +YY_LOCAL(int) yymatchDot(yycontext *ctx) +{ + if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0; + ++ctx->pos; + return 1; +} + +YY_LOCAL(int) yymatchChar(yycontext *ctx, int c) +{ + if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0; + if ((unsigned char)ctx->buf[ctx->pos] == c) + { + ++ctx->pos; + yyprintf((stderr, " ok yymatchChar(ctx, %c) @ %s\n", c, ctx->buf+ctx->pos)); + return 1; + } + yyprintf((stderr, " fail yymatchChar(ctx, %c) @ %s\n", c, ctx->buf+ctx->pos)); + return 0; +} + +YY_LOCAL(int) yymatchString(yycontext *ctx, char *s) +{ + int yysav= ctx->pos; + while (*s) + { + if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0; + if (ctx->buf[ctx->pos] != *s) + { + ctx->pos= yysav; + return 0; + } + ++s; + ++ctx->pos; + } + return 1; +} + +YY_LOCAL(int) yymatchClass(yycontext *ctx, unsigned char *bits) +{ + int c; + if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0; + c= (unsigned char)ctx->buf[ctx->pos]; + if (bits[c >> 3] & (1 << (c & 7))) + { + ++ctx->pos; + yyprintf((stderr, " ok yymatchClass @ %s\n", ctx->buf+ctx->pos)); + return 1; + } + yyprintf((stderr, " fail yymatchClass @ %s\n", ctx->buf+ctx->pos)); + return 0; +} + +YY_LOCAL(void) yyDo(yycontext *ctx, yyaction action, int begin, int end) +{ + while (ctx->thunkpos >= ctx->thunkslen) + { + ctx->thunkslen *= 2; + ctx->thunks= (yythunk *)realloc(ctx->thunks, sizeof(yythunk) * ctx->thunkslen); + } + ctx->thunks[ctx->thunkpos].begin= begin; + ctx->thunks[ctx->thunkpos].end= end; + ctx->thunks[ctx->thunkpos].action= action; + ++ctx->thunkpos; +} + +YY_LOCAL(int) yyText(yycontext *ctx, int begin, int end) +{ + int yyleng= end - begin; + if (yyleng <= 0) + yyleng= 0; + else + { + while (ctx->textlen < (yyleng + 1)) + { + ctx->textlen *= 2; + ctx->text= (char *)realloc(ctx->text, ctx->textlen); + } + memcpy(ctx->text, ctx->buf + begin, yyleng); + } + ctx->text[yyleng]= '\0'; + return yyleng; +} + +YY_LOCAL(void) yyDone(yycontext *ctx) +{ + int pos; + for (pos= 0; pos < ctx->thunkpos; ++pos) + { + yythunk *thunk= &ctx->thunks[pos]; + int yyleng= thunk->end ? yyText(ctx, thunk->begin, thunk->end) : thunk->begin; + yyprintf((stderr, "DO [%d] %p %s\n", pos, thunk->action, ctx->text)); + thunk->action(ctx, ctx->text, yyleng); + } + ctx->thunkpos= 0; +} + +YY_LOCAL(void) yyCommit(yycontext *ctx) +{ + if ((ctx->limit -= ctx->pos)) + { + memmove(ctx->buf, ctx->buf + ctx->pos, ctx->limit); + } + ctx->begin -= ctx->pos; + ctx->end -= ctx->pos; + ctx->pos= ctx->thunkpos= 0; +} + +YY_LOCAL(int) yyAccept(yycontext *ctx, int tp0) +{ + if (tp0) + { + fprintf(stderr, "accept denied at %d\n", tp0); + return 0; + } + else + { + yyDone(ctx); + yyCommit(ctx); + } + return 1; +} + +YY_LOCAL(void) yyPush(yycontext *ctx, char *text, int count) { ctx->val += count; } +YY_LOCAL(void) yyPop(yycontext *ctx, char *text, int count) { ctx->val -= count; } +YY_LOCAL(void) yySet(yycontext *ctx, char *text, int count) { ctx->val[count]= ctx->yy; } + +#endif /* YY_PART */ + +#define YYACCEPT yyAccept(ctx, yythunkpos0) + +YY_RULE(int) yy_Notes(yycontext *ctx); /* 240 */ +YY_RULE(int) yy_RawNoteBlock(yycontext *ctx); /* 239 */ +YY_RULE(int) yy_RawNoteReference(yycontext *ctx); /* 238 */ +YY_RULE(int) yy_DoubleQuoteEnd(yycontext *ctx); /* 237 */ +YY_RULE(int) yy_DoubleQuoteStart(yycontext *ctx); /* 236 */ +YY_RULE(int) yy_SingleQuoteEnd(yycontext *ctx); /* 235 */ +YY_RULE(int) yy_SingleQuoteStart(yycontext *ctx); /* 234 */ +YY_RULE(int) yy_EnDash(yycontext *ctx); /* 233 */ +YY_RULE(int) yy_EmDash(yycontext *ctx); /* 232 */ +YY_RULE(int) yy_Apostrophe(yycontext *ctx); /* 231 */ +YY_RULE(int) yy_DoubleQuoted(yycontext *ctx); /* 230 */ +YY_RULE(int) yy_SingleQuoted(yycontext *ctx); /* 229 */ +YY_RULE(int) yy_Dash(yycontext *ctx); /* 228 */ +YY_RULE(int) yy_Ellipsis(yycontext *ctx); /* 227 */ +YY_RULE(int) yy_Digit(yycontext *ctx); /* 226 */ +YY_RULE(int) yy_ExtendedSpecialChar(yycontext *ctx); /* 225 */ +YY_RULE(int) yy_AlphanumericAscii(yycontext *ctx); /* 224 */ +YY_RULE(int) yy_Quoted(yycontext *ctx); /* 223 */ +YY_RULE(int) yy_HtmlTag(yycontext *ctx); /* 222 */ +YY_RULE(int) yy_Ticks5(yycontext *ctx); /* 221 */ +YY_RULE(int) yy_Ticks4(yycontext *ctx); /* 220 */ +YY_RULE(int) yy_Ticks3(yycontext *ctx); /* 219 */ +YY_RULE(int) yy_Ticks2(yycontext *ctx); /* 218 */ +YY_RULE(int) yy_Ticks1(yycontext *ctx); /* 217 */ +YY_RULE(int) yy_SkipBlock(yycontext *ctx); /* 216 */ +YY_RULE(int) yy_References(yycontext *ctx); /* 215 */ +YY_RULE(int) yy_EmptyTitle(yycontext *ctx); /* 214 */ +YY_RULE(int) yy_RefTitleParens(yycontext *ctx); /* 213 */ +YY_RULE(int) yy_RefTitleDouble(yycontext *ctx); /* 212 */ +YY_RULE(int) yy_RefTitleSingle(yycontext *ctx); /* 211 */ +YY_RULE(int) yy_RefTitle(yycontext *ctx); /* 210 */ +YY_RULE(int) yy_RefSrc(yycontext *ctx); /* 209 */ +YY_RULE(int) yy_AutoLinkEmail(yycontext *ctx); /* 208 */ +YY_RULE(int) yy_AutoLinkUrl(yycontext *ctx); /* 207 */ +YY_RULE(int) yy_TitleDouble(yycontext *ctx); /* 206 */ +YY_RULE(int) yy_TitleSingle(yycontext *ctx); /* 205 */ +YY_RULE(int) yy_Nonspacechar(yycontext *ctx); /* 204 */ +YY_RULE(int) yy_SourceContents(yycontext *ctx); /* 203 */ +YY_RULE(int) yy_Title(yycontext *ctx); /* 202 */ +YY_RULE(int) yy_Source(yycontext *ctx); /* 201 */ +YY_RULE(int) yy_Label(yycontext *ctx); /* 200 */ +YY_RULE(int) yy_ReferenceLinkSingle(yycontext *ctx); /* 199 */ +YY_RULE(int) yy_ReferenceLinkDouble(yycontext *ctx); /* 198 */ +YY_RULE(int) yy_AutoLink(yycontext *ctx); /* 197 */ +YY_RULE(int) yy_ReferenceLink(yycontext *ctx); /* 196 */ +YY_RULE(int) yy_ExplicitLink(yycontext *ctx); /* 195 */ +YY_RULE(int) yy_StrongUl(yycontext *ctx); /* 194 */ +YY_RULE(int) yy_StrongStar(yycontext *ctx); /* 193 */ +YY_RULE(int) yy_Whitespace(yycontext *ctx); /* 192 */ +YY_RULE(int) yy_EmphUl(yycontext *ctx); /* 191 */ +YY_RULE(int) yy_EmphStar(yycontext *ctx); /* 190 */ +YY_RULE(int) yy_StarLine(yycontext *ctx); /* 189 */ +YY_RULE(int) yy_UlLine(yycontext *ctx); /* 188 */ +YY_RULE(int) yy_SpecialChar(yycontext *ctx); /* 187 */ +YY_RULE(int) yy_Eof(yycontext *ctx); /* 186 */ +YY_RULE(int) yy_NormalEndline(yycontext *ctx); /* 185 */ +YY_RULE(int) yy_TerminalEndline(yycontext *ctx); /* 184 */ +YY_RULE(int) yy_LineBreak(yycontext *ctx); /* 183 */ +YY_RULE(int) yy_CharEntity(yycontext *ctx); /* 182 */ +YY_RULE(int) yy_DecEntity(yycontext *ctx); /* 181 */ +YY_RULE(int) yy_HexEntity(yycontext *ctx); /* 180 */ +YY_RULE(int) yy_AposChunk(yycontext *ctx); /* 179 */ +YY_RULE(int) yy_Alphanumeric(yycontext *ctx); /* 178 */ +YY_RULE(int) yy_StrChunk(yycontext *ctx); /* 177 */ +YY_RULE(int) yy_NormalChar(yycontext *ctx); /* 176 */ +YY_RULE(int) yy_Symbol(yycontext *ctx); /* 175 */ +YY_RULE(int) yy_Smart(yycontext *ctx); /* 174 */ +YY_RULE(int) yy_EscapedChar(yycontext *ctx); /* 173 */ +YY_RULE(int) yy_Entity(yycontext *ctx); /* 172 */ +YY_RULE(int) yy_RawHtml(yycontext *ctx); /* 171 */ +YY_RULE(int) yy_Code(yycontext *ctx); /* 170 */ +YY_RULE(int) yy_InlineNote(yycontext *ctx); /* 169 */ +YY_RULE(int) yy_NoteReference(yycontext *ctx); /* 168 */ +YY_RULE(int) yy_Link(yycontext *ctx); /* 167 */ +YY_RULE(int) yy_Image(yycontext *ctx); /* 166 */ +YY_RULE(int) yy_Emph(yycontext *ctx); /* 165 */ +YY_RULE(int) yy_Strong(yycontext *ctx); /* 164 */ +YY_RULE(int) yy_Space(yycontext *ctx); /* 163 */ +YY_RULE(int) yy_UlOrStarLine(yycontext *ctx); /* 162 */ +YY_RULE(int) yy_Str(yycontext *ctx); /* 161 */ +YY_RULE(int) yy_InStyleTags(yycontext *ctx); /* 160 */ +YY_RULE(int) yy_StyleClose(yycontext *ctx); /* 159 */ +YY_RULE(int) yy_StyleOpen(yycontext *ctx); /* 158 */ +YY_RULE(int) yy_HtmlBlockType(yycontext *ctx); /* 157 */ +YY_RULE(int) yy_HtmlBlockSelfClosing(yycontext *ctx); /* 156 */ +YY_RULE(int) yy_HtmlComment(yycontext *ctx); /* 155 */ +YY_RULE(int) yy_HtmlBlockInTags(yycontext *ctx); /* 154 */ +YY_RULE(int) yy_HtmlBlockHead(yycontext *ctx); /* 153 */ +YY_RULE(int) yy_HtmlBlockCloseHead(yycontext *ctx); /* 152 */ +YY_RULE(int) yy_HtmlBlockOpenHead(yycontext *ctx); /* 151 */ +YY_RULE(int) yy_HtmlBlockScript(yycontext *ctx); /* 150 */ +YY_RULE(int) yy_HtmlBlockCloseScript(yycontext *ctx); /* 149 */ +YY_RULE(int) yy_HtmlBlockOpenScript(yycontext *ctx); /* 148 */ +YY_RULE(int) yy_HtmlBlockTr(yycontext *ctx); /* 147 */ +YY_RULE(int) yy_HtmlBlockCloseTr(yycontext *ctx); /* 146 */ +YY_RULE(int) yy_HtmlBlockOpenTr(yycontext *ctx); /* 145 */ +YY_RULE(int) yy_HtmlBlockThead(yycontext *ctx); /* 144 */ +YY_RULE(int) yy_HtmlBlockCloseThead(yycontext *ctx); /* 143 */ +YY_RULE(int) yy_HtmlBlockOpenThead(yycontext *ctx); /* 142 */ +YY_RULE(int) yy_HtmlBlockTh(yycontext *ctx); /* 141 */ +YY_RULE(int) yy_HtmlBlockCloseTh(yycontext *ctx); /* 140 */ +YY_RULE(int) yy_HtmlBlockOpenTh(yycontext *ctx); /* 139 */ +YY_RULE(int) yy_HtmlBlockTfoot(yycontext *ctx); /* 138 */ +YY_RULE(int) yy_HtmlBlockCloseTfoot(yycontext *ctx); /* 137 */ +YY_RULE(int) yy_HtmlBlockOpenTfoot(yycontext *ctx); /* 136 */ +YY_RULE(int) yy_HtmlBlockTd(yycontext *ctx); /* 135 */ +YY_RULE(int) yy_HtmlBlockCloseTd(yycontext *ctx); /* 134 */ +YY_RULE(int) yy_HtmlBlockOpenTd(yycontext *ctx); /* 133 */ +YY_RULE(int) yy_HtmlBlockTbody(yycontext *ctx); /* 132 */ +YY_RULE(int) yy_HtmlBlockCloseTbody(yycontext *ctx); /* 131 */ +YY_RULE(int) yy_HtmlBlockOpenTbody(yycontext *ctx); /* 130 */ +YY_RULE(int) yy_HtmlBlockLi(yycontext *ctx); /* 129 */ +YY_RULE(int) yy_HtmlBlockCloseLi(yycontext *ctx); /* 128 */ +YY_RULE(int) yy_HtmlBlockOpenLi(yycontext *ctx); /* 127 */ +YY_RULE(int) yy_HtmlBlockFrameset(yycontext *ctx); /* 126 */ +YY_RULE(int) yy_HtmlBlockCloseFrameset(yycontext *ctx); /* 125 */ +YY_RULE(int) yy_HtmlBlockOpenFrameset(yycontext *ctx); /* 124 */ +YY_RULE(int) yy_HtmlBlockDt(yycontext *ctx); /* 123 */ +YY_RULE(int) yy_HtmlBlockCloseDt(yycontext *ctx); /* 122 */ +YY_RULE(int) yy_HtmlBlockOpenDt(yycontext *ctx); /* 121 */ +YY_RULE(int) yy_HtmlBlockDd(yycontext *ctx); /* 120 */ +YY_RULE(int) yy_HtmlBlockCloseDd(yycontext *ctx); /* 119 */ +YY_RULE(int) yy_HtmlBlockOpenDd(yycontext *ctx); /* 118 */ +YY_RULE(int) yy_HtmlBlockUl(yycontext *ctx); /* 117 */ +YY_RULE(int) yy_HtmlBlockCloseUl(yycontext *ctx); /* 116 */ +YY_RULE(int) yy_HtmlBlockOpenUl(yycontext *ctx); /* 115 */ +YY_RULE(int) yy_HtmlBlockTable(yycontext *ctx); /* 114 */ +YY_RULE(int) yy_HtmlBlockCloseTable(yycontext *ctx); /* 113 */ +YY_RULE(int) yy_HtmlBlockOpenTable(yycontext *ctx); /* 112 */ +YY_RULE(int) yy_HtmlBlockPre(yycontext *ctx); /* 111 */ +YY_RULE(int) yy_HtmlBlockClosePre(yycontext *ctx); /* 110 */ +YY_RULE(int) yy_HtmlBlockOpenPre(yycontext *ctx); /* 109 */ +YY_RULE(int) yy_HtmlBlockP(yycontext *ctx); /* 108 */ +YY_RULE(int) yy_HtmlBlockCloseP(yycontext *ctx); /* 107 */ +YY_RULE(int) yy_HtmlBlockOpenP(yycontext *ctx); /* 106 */ +YY_RULE(int) yy_HtmlBlockOl(yycontext *ctx); /* 105 */ +YY_RULE(int) yy_HtmlBlockCloseOl(yycontext *ctx); /* 104 */ +YY_RULE(int) yy_HtmlBlockOpenOl(yycontext *ctx); /* 103 */ +YY_RULE(int) yy_HtmlBlockNoscript(yycontext *ctx); /* 102 */ +YY_RULE(int) yy_HtmlBlockCloseNoscript(yycontext *ctx); /* 101 */ +YY_RULE(int) yy_HtmlBlockOpenNoscript(yycontext *ctx); /* 100 */ +YY_RULE(int) yy_HtmlBlockNoframes(yycontext *ctx); /* 99 */ +YY_RULE(int) yy_HtmlBlockCloseNoframes(yycontext *ctx); /* 98 */ +YY_RULE(int) yy_HtmlBlockOpenNoframes(yycontext *ctx); /* 97 */ +YY_RULE(int) yy_HtmlBlockMenu(yycontext *ctx); /* 96 */ +YY_RULE(int) yy_HtmlBlockCloseMenu(yycontext *ctx); /* 95 */ +YY_RULE(int) yy_HtmlBlockOpenMenu(yycontext *ctx); /* 94 */ +YY_RULE(int) yy_HtmlBlockH6(yycontext *ctx); /* 93 */ +YY_RULE(int) yy_HtmlBlockCloseH6(yycontext *ctx); /* 92 */ +YY_RULE(int) yy_HtmlBlockOpenH6(yycontext *ctx); /* 91 */ +YY_RULE(int) yy_HtmlBlockH5(yycontext *ctx); /* 90 */ +YY_RULE(int) yy_HtmlBlockCloseH5(yycontext *ctx); /* 89 */ +YY_RULE(int) yy_HtmlBlockOpenH5(yycontext *ctx); /* 88 */ +YY_RULE(int) yy_HtmlBlockH4(yycontext *ctx); /* 87 */ +YY_RULE(int) yy_HtmlBlockCloseH4(yycontext *ctx); /* 86 */ +YY_RULE(int) yy_HtmlBlockOpenH4(yycontext *ctx); /* 85 */ +YY_RULE(int) yy_HtmlBlockH3(yycontext *ctx); /* 84 */ +YY_RULE(int) yy_HtmlBlockCloseH3(yycontext *ctx); /* 83 */ +YY_RULE(int) yy_HtmlBlockOpenH3(yycontext *ctx); /* 82 */ +YY_RULE(int) yy_HtmlBlockH2(yycontext *ctx); /* 81 */ +YY_RULE(int) yy_HtmlBlockCloseH2(yycontext *ctx); /* 80 */ +YY_RULE(int) yy_HtmlBlockOpenH2(yycontext *ctx); /* 79 */ +YY_RULE(int) yy_HtmlBlockH1(yycontext *ctx); /* 78 */ +YY_RULE(int) yy_HtmlBlockCloseH1(yycontext *ctx); /* 77 */ +YY_RULE(int) yy_HtmlBlockOpenH1(yycontext *ctx); /* 76 */ +YY_RULE(int) yy_HtmlBlockForm(yycontext *ctx); /* 75 */ +YY_RULE(int) yy_HtmlBlockCloseForm(yycontext *ctx); /* 74 */ +YY_RULE(int) yy_HtmlBlockOpenForm(yycontext *ctx); /* 73 */ +YY_RULE(int) yy_HtmlBlockFieldset(yycontext *ctx); /* 72 */ +YY_RULE(int) yy_HtmlBlockCloseFieldset(yycontext *ctx); /* 71 */ +YY_RULE(int) yy_HtmlBlockOpenFieldset(yycontext *ctx); /* 70 */ +YY_RULE(int) yy_HtmlBlockDl(yycontext *ctx); /* 69 */ +YY_RULE(int) yy_HtmlBlockCloseDl(yycontext *ctx); /* 68 */ +YY_RULE(int) yy_HtmlBlockOpenDl(yycontext *ctx); /* 67 */ +YY_RULE(int) yy_HtmlBlockDiv(yycontext *ctx); /* 66 */ +YY_RULE(int) yy_HtmlBlockCloseDiv(yycontext *ctx); /* 65 */ +YY_RULE(int) yy_HtmlBlockOpenDiv(yycontext *ctx); /* 64 */ +YY_RULE(int) yy_HtmlBlockDir(yycontext *ctx); /* 63 */ +YY_RULE(int) yy_HtmlBlockCloseDir(yycontext *ctx); /* 62 */ +YY_RULE(int) yy_HtmlBlockOpenDir(yycontext *ctx); /* 61 */ +YY_RULE(int) yy_HtmlBlockCenter(yycontext *ctx); /* 60 */ +YY_RULE(int) yy_HtmlBlockCloseCenter(yycontext *ctx); /* 59 */ +YY_RULE(int) yy_HtmlBlockOpenCenter(yycontext *ctx); /* 58 */ +YY_RULE(int) yy_HtmlBlockBlockquote(yycontext *ctx); /* 57 */ +YY_RULE(int) yy_HtmlBlockCloseBlockquote(yycontext *ctx); /* 56 */ +YY_RULE(int) yy_HtmlBlockOpenBlockquote(yycontext *ctx); /* 55 */ +YY_RULE(int) yy_HtmlBlockAddress(yycontext *ctx); /* 54 */ +YY_RULE(int) yy_HtmlBlockCloseAddress(yycontext *ctx); /* 53 */ +YY_RULE(int) yy_HtmlAttribute(yycontext *ctx); /* 52 */ +YY_RULE(int) yy_Spnl(yycontext *ctx); /* 51 */ +YY_RULE(int) yy_HtmlBlockOpenAddress(yycontext *ctx); /* 50 */ +YY_RULE(int) yy_OptionallyIndentedLine(yycontext *ctx); /* 49 */ +YY_RULE(int) yy_Indent(yycontext *ctx); /* 48 */ +YY_RULE(int) yy_ListBlockLine(yycontext *ctx); /* 47 */ +YY_RULE(int) yy_ListContinuationBlock(yycontext *ctx); /* 46 */ +YY_RULE(int) yy_ListBlock(yycontext *ctx); /* 45 */ +YY_RULE(int) yy_ListItem(yycontext *ctx); /* 44 */ +YY_RULE(int) yy_Enumerator(yycontext *ctx); /* 43 */ +YY_RULE(int) yy_ListItemTight(yycontext *ctx); /* 42 */ +YY_RULE(int) yy_ListLoose(yycontext *ctx); /* 41 */ +YY_RULE(int) yy_ListTight(yycontext *ctx); /* 40 */ +YY_RULE(int) yy_Spacechar(yycontext *ctx); /* 39 */ +YY_RULE(int) yy_Bullet(yycontext *ctx); /* 38 */ +YY_RULE(int) yy_VerbatimChunk(yycontext *ctx); /* 37 */ +YY_RULE(int) yy_IndentedLine(yycontext *ctx); /* 36 */ +YY_RULE(int) yy_NonblankIndentedLine(yycontext *ctx); /* 35 */ +YY_RULE(int) yy_Line(yycontext *ctx); /* 34 */ +YY_RULE(int) yy_BlockQuoteRaw(yycontext *ctx); /* 33 */ +YY_RULE(int) yy_Endline(yycontext *ctx); /* 32 */ +YY_RULE(int) yy_RawLine(yycontext *ctx); /* 31 */ +YY_RULE(int) yy_SetextBottom2(yycontext *ctx); /* 30 */ +YY_RULE(int) yy_SetextBottom1(yycontext *ctx); /* 29 */ +YY_RULE(int) yy_SetextHeading2(yycontext *ctx); /* 28 */ +YY_RULE(int) yy_SetextHeading1(yycontext *ctx); /* 27 */ +YY_RULE(int) yy_SetextHeading(yycontext *ctx); /* 26 */ +YY_RULE(int) yy_AtxHeading(yycontext *ctx); /* 25 */ +YY_RULE(int) yy_AtxStart(yycontext *ctx); /* 24 */ +YY_RULE(int) yy_Inline(yycontext *ctx); /* 23 */ +YY_RULE(int) yy_Sp(yycontext *ctx); /* 22 */ +YY_RULE(int) yy_Newline(yycontext *ctx); /* 21 */ +YY_RULE(int) yy_AtxInline(yycontext *ctx); /* 20 */ +YY_RULE(int) yy_Inlines(yycontext *ctx); /* 19 */ +YY_RULE(int) yy_NonindentSpace(yycontext *ctx); /* 18 */ +YY_RULE(int) yy_Plain(yycontext *ctx); /* 17 */ +YY_RULE(int) yy_Para(yycontext *ctx); /* 16 */ +YY_RULE(int) yy_StyleBlock(yycontext *ctx); /* 15 */ +YY_RULE(int) yy_HtmlBlock(yycontext *ctx); /* 14 */ +YY_RULE(int) yy_BulletList(yycontext *ctx); /* 13 */ +YY_RULE(int) yy_OrderedList(yycontext *ctx); /* 12 */ +YY_RULE(int) yy_Heading(yycontext *ctx); /* 11 */ +YY_RULE(int) yy_HorizontalRule(yycontext *ctx); /* 10 */ +YY_RULE(int) yy_Reference(yycontext *ctx); /* 9 */ +YY_RULE(int) yy_Note(yycontext *ctx); /* 8 */ +YY_RULE(int) yy_Verbatim(yycontext *ctx); /* 7 */ +YY_RULE(int) yy_BlockQuote(yycontext *ctx); /* 6 */ +YY_RULE(int) yy_BlankLine(yycontext *ctx); /* 5 */ +YY_RULE(int) yy_Block(yycontext *ctx); /* 4 */ +YY_RULE(int) yy_StartList(yycontext *ctx); /* 3 */ +YY_RULE(int) yy_BOM(yycontext *ctx); /* 2 */ +YY_RULE(int) yy_Doc(yycontext *ctx); /* 1 */ + +YY_ACTION(void) yy_3_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_RawNoteBlock\n")); + yy = mk_str_from_list(a, true); + yy->key = RAW; + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_RawNoteBlock\n")); + a = cons(mk_str(yytext), a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_RawNoteBlock\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_Notes(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Notes\n")); + notes = reverse(a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_Notes(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Notes\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_InlineNote(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_InlineNote\n")); + yy = mk_list(NOTE, a); + yy->contents.str = 0; ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_InlineNote(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_InlineNote\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_Note(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define ref ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_Note\n")); + yy = mk_list(NOTE, a); + yy->contents.str = strdup(ref->contents.str); + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +#undef ref +} +YY_ACTION(void) yy_2_Note(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define ref ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Note\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +#undef ref +} +YY_ACTION(void) yy_1_Note(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define ref ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Note\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +#undef ref +} +YY_ACTION(void) yy_1_RawNoteReference(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_RawNoteReference\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_NoteReference(yycontext *ctx, char *yytext, int yyleng) +{ +#define ref ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_NoteReference\n")); + element *match; + if (find_note(&match, ref->contents.str)) { + yy = mk_element(NOTE); + assert(match->children != NULL); + yy->children = match->children; + yy->contents.str = 0; + } else { + char *s; + s = malloc(strlen(ref->contents.str) + 4); + sprintf(s, "[^%s]", ref->contents.str); + yy = mk_str(s); + free(s); + } + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef ref +} +YY_ACTION(void) yy_2_DoubleQuoted(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_DoubleQuoted\n")); + yy = mk_list(DOUBLEQUOTED, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_DoubleQuoted(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_DoubleQuoted\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_SingleQuoted(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_SingleQuoted\n")); + yy = mk_list(SINGLEQUOTED, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_SingleQuoted(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_SingleQuoted\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_EmDash(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_EmDash\n")); + yy = mk_element(EMDASH); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_EnDash(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_EnDash\n")); + yy = mk_element(ENDASH); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Ellipsis(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Ellipsis\n")); + yy = mk_element(ELLIPSIS); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Apostrophe(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Apostrophe\n")); + yy = mk_element(APOSTROPHE); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Line(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Line\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_StartList(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_StartList\n")); + yy = NULL; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_RawHtml(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_RawHtml\n")); + if (extension(EXT_FILTER_HTML)) { + yy = mk_list(LIST, NULL); + } else { + yy = mk_str(yytext); + yy->key = HTML; + } + ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Code(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Code\n")); + yy = mk_str(yytext); yy->key = CODE; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_2_References(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_References\n")); + references = reverse(a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_References(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_References\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_RefTitle(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_RefTitle\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_RefSrc(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_RefSrc\n")); + yy = mk_str(yytext); + yy->key = HTML; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_2_Label(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Label\n")); + yy = mk_list(LIST, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Label(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Label\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Reference(yycontext *ctx, char *yytext, int yyleng) +{ +#define t ctx->val[-1] +#define s ctx->val[-2] +#define l ctx->val[-3] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Reference\n")); + yy = mk_link(l->children, s->contents.str, t->contents.str); + free_element(s); + free_element(t); + free(l); + yy->key = REFERENCE; ; +#undef yythunkpos +#undef yypos +#undef yy +#undef t +#undef s +#undef l +} +YY_ACTION(void) yy_1_AutoLinkEmail(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_AutoLinkEmail\n")); + char *mailto = malloc(strlen(yytext) + 8); + sprintf(mailto, "mailto:%s", yytext); + yy = mk_link(mk_str(yytext), mailto, ""); + free(mailto); + ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_AutoLinkUrl(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_AutoLinkUrl\n")); + yy = mk_link(mk_str(yytext), yytext, ""); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Title(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Title\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Source(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Source\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_ExplicitLink(yycontext *ctx, char *yytext, int yyleng) +{ +#define t ctx->val[-1] +#define s ctx->val[-2] +#define l ctx->val[-3] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ExplicitLink\n")); + yy = mk_link(l->children, s->contents.str, t->contents.str); + free_element(s); + free_element(t); + free(l); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef t +#undef s +#undef l +} +YY_ACTION(void) yy_1_ReferenceLinkSingle(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ReferenceLinkSingle\n")); + link match; + if (find_reference(&match, a->children)) { + yy = mk_link(a->children, match.url, match.title); + free(a); + } + else { + element *result; + result = mk_element(LIST); + result->children = cons(mk_str("["), cons(a, cons(mk_str("]"), mk_str(yytext)))); + yy = result; + } + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ReferenceLinkDouble(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ReferenceLinkDouble\n")); + link match; + if (find_reference(&match, b->children)) { + yy = mk_link(a->children, match.url, match.title); + free(a); + free_element_list(b); + } else { + element *result; + result = mk_element(LIST); + result->children = cons(mk_str("["), cons(a, cons(mk_str("]"), cons(mk_str(yytext), + cons(mk_str("["), cons(b, mk_str("]"))))))); + yy = result; + } + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_Image(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Image\n")); + if (yy->key == LINK) { + yy->key = IMAGE; + } else { + element *result; + result = yy; + yy->children = cons(mk_str("!"), result->children); + } ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_2_StrongUl(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_StrongUl\n")); + yy = mk_list(STRONG, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_StrongUl(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_StrongUl\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_StrongStar(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_StrongStar\n")); + yy = mk_list(STRONG, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_StrongStar(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_StrongStar\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_3_EmphUl(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_EmphUl\n")); + yy = mk_list(EMPH, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_EmphUl(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_EmphUl\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_EmphUl(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_EmphUl\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_3_EmphStar(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_EmphStar\n")); + yy = mk_list(EMPH, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_EmphStar(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_EmphStar\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_EmphStar(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_EmphStar\n")); + a = cons(b, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_UlOrStarLine(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_UlOrStarLine\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Symbol(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Symbol\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_LineBreak(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_LineBreak\n")); + yy = mk_element(LINEBREAK); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_TerminalEndline(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_TerminalEndline\n")); + yy = NULL; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_NormalEndline(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_NormalEndline\n")); + yy = mk_str("\n"); + yy->key = SPACE; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Entity(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Entity\n")); + yy = mk_str(yytext); yy->key = HTML; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_EscapedChar(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_EscapedChar\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_AposChunk(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_AposChunk\n")); + yy = mk_element(APOSTROPHE); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_StrChunk(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_StrChunk\n")); + yy = mk_str(yytext); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_3_Str(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_Str\n")); + if (a->next == NULL) { yy = a; } else { yy = mk_list(LIST, a); } ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_Str(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Str\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Str(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Str\n")); + a = cons(mk_str(yytext), a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Space(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Space\n")); + yy = mk_str(" "); + yy->key = SPACE; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_3_Inlines(yycontext *ctx, char *yytext, int yyleng) +{ +#define c ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_Inlines\n")); + yy = mk_list(LIST, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef c +#undef a +} +YY_ACTION(void) yy_2_Inlines(yycontext *ctx, char *yytext, int yyleng) +{ +#define c ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Inlines\n")); + a = cons(c, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef c +#undef a +} +YY_ACTION(void) yy_1_Inlines(yycontext *ctx, char *yytext, int yyleng) +{ +#define c ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Inlines\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef c +#undef a +} +YY_ACTION(void) yy_1_StyleBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_StyleBlock\n")); + if (extension(EXT_FILTER_STYLES)) { + yy = mk_list(LIST, NULL); + } else { + yy = mk_str(yytext); + yy->key = HTMLBLOCK; + } + ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_HtmlBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_HtmlBlock\n")); + if (extension(EXT_FILTER_HTML)) { + yy = mk_list(LIST, NULL); + } else { + yy = mk_str(yytext); + yy->key = HTMLBLOCK; + } + ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_OrderedList(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_OrderedList\n")); + yy->key = ORDEREDLIST; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_3_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_ListContinuationBlock\n")); + yy = mk_str_from_list(a, false); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListContinuationBlock\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListContinuationBlock\n")); + if (strlen(yytext) == 0) + a = cons(mk_str("\001"), a); /* block separator */ + else + a = cons(mk_str(yytext), a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_ListBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_ListBlock\n")); + yy = mk_str_from_list(a, false); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_ListBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListBlock\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ListBlock(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListBlock\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_ListItemTight(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_ListItemTight\n")); + element *raw; + raw = mk_str_from_list(a, false); + raw->key = RAW; + yy = mk_element(LISTITEM); + yy->children = raw; + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_ListItemTight(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListItemTight\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ListItemTight(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListItemTight\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_ListItem(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_ListItem\n")); + element *raw; + raw = mk_str_from_list(a, false); + raw->key = RAW; + yy = mk_element(LISTITEM); + yy->children = raw; + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_ListItem(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListItem\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ListItem(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListItem\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_ListLoose(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListLoose\n")); + yy = mk_list(LIST, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_1_ListLoose(yycontext *ctx, char *yytext, int yyleng) +{ +#define b ctx->val[-1] +#define a ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListLoose\n")); + element *li; + li = b->children; + li->contents.str = realloc(li->contents.str, strlen(li->contents.str) + 3); + strcat(li->contents.str, "\n\n"); /* In loose list, \n\n added to end of each element */ + a = cons(b, a); + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef b +#undef a +} +YY_ACTION(void) yy_2_ListTight(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_ListTight\n")); + yy = mk_list(LIST, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_ListTight(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_ListTight\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_BulletList(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_BulletList\n")); + yy->key = BULLETLIST; ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_HorizontalRule(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_HorizontalRule\n")); + yy = mk_element(HRULE); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_2_Verbatim(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Verbatim\n")); + yy = mk_str_from_list(a, false); + yy->key = VERBATIM; ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Verbatim(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Verbatim\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_VerbatimChunk\n")); + yy = mk_str_from_list(a, false); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_VerbatimChunk\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_VerbatimChunk\n")); + a = cons(mk_str("\n"), a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_4_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_4_BlockQuoteRaw\n")); + yy = mk_str_from_list(a, true); + yy->key = RAW; + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_3_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_3_BlockQuoteRaw\n")); + a = cons(mk_str("\n"), a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_BlockQuoteRaw\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_BlockQuoteRaw\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_BlockQuote(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_BlockQuote\n")); + yy = mk_element(BLOCKQUOTE); + yy->children = a; + ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_SetextHeading2(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_SetextHeading2\n")); + yy = mk_list(H2, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_SetextHeading2(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_SetextHeading2\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_SetextHeading1(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_SetextHeading1\n")); + yy = mk_list(H1, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_SetextHeading1(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_SetextHeading1\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_AtxHeading(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define s ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_AtxHeading\n")); + yy = mk_list(s->key, a); + free(s); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +#undef s +} +YY_ACTION(void) yy_1_AtxHeading(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define s ctx->val[-2] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_AtxHeading\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +#undef s +} +YY_ACTION(void) yy_1_AtxStart(yycontext *ctx, char *yytext, int yyleng) +{ +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_AtxStart\n")); + yy = mk_element(H1 + (strlen(yytext) - 1)); ; +#undef yythunkpos +#undef yypos +#undef yy +} +YY_ACTION(void) yy_1_Plain(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Plain\n")); + yy = a; yy->key = PLAIN; ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Para(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Para\n")); + yy = a; yy->key = PARA; ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_2_Doc(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_2_Doc\n")); + parse_result = reverse(a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} +YY_ACTION(void) yy_1_Doc(yycontext *ctx, char *yytext, int yyleng) +{ +#define a ctx->val[-1] +#define yy ctx->yy +#define yypos ctx->pos +#define yythunkpos ctx->thunkpos + yyprintf((stderr, "do yy_1_Doc\n")); + a = cons(yy, a); ; +#undef yythunkpos +#undef yypos +#undef yy +#undef a +} + +YY_RULE(int) yy_Notes(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "Notes")); if (!yy_StartList(ctx)) goto l1; yyDo(ctx, yySet, -2, 0); + l2:; + { int yypos3= ctx->pos, yythunkpos3= ctx->thunkpos; + { int yypos4= ctx->pos, yythunkpos4= ctx->thunkpos; if (!yy_Note(ctx)) goto l5; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_Notes, ctx->begin, ctx->end); goto l4; + l5:; ctx->pos= yypos4; ctx->thunkpos= yythunkpos4; if (!yy_SkipBlock(ctx)) goto l3; + } + l4:; goto l2; + l3:; ctx->pos= yypos3; ctx->thunkpos= yythunkpos3; + } yyDo(ctx, yy_2_Notes, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Notes", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l1:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Notes", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RawNoteBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "RawNoteBlock")); if (!yy_StartList(ctx)) goto l6; yyDo(ctx, yySet, -1, 0); + { int yypos9= ctx->pos, yythunkpos9= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l9; goto l6; + l9:; ctx->pos= yypos9; ctx->thunkpos= yythunkpos9; + } if (!yy_OptionallyIndentedLine(ctx)) goto l6; yyDo(ctx, yy_1_RawNoteBlock, ctx->begin, ctx->end); + l7:; + { int yypos8= ctx->pos, yythunkpos8= ctx->thunkpos; + { int yypos10= ctx->pos, yythunkpos10= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l10; goto l8; + l10:; ctx->pos= yypos10; ctx->thunkpos= yythunkpos10; + } if (!yy_OptionallyIndentedLine(ctx)) goto l8; yyDo(ctx, yy_1_RawNoteBlock, ctx->begin, ctx->end); goto l7; + l8:; ctx->pos= yypos8; ctx->thunkpos= yythunkpos8; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l6; + l11:; + { int yypos12= ctx->pos, yythunkpos12= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l12; goto l11; + l12:; ctx->pos= yypos12; ctx->thunkpos= yythunkpos12; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l6; yyDo(ctx, yy_2_RawNoteBlock, ctx->begin, ctx->end); yyDo(ctx, yy_3_RawNoteBlock, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "RawNoteBlock", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l6:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RawNoteBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RawNoteReference(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RawNoteReference")); if (!yymatchString(ctx, "[^")) goto l13; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l13; + { int yypos16= ctx->pos, yythunkpos16= ctx->thunkpos; if (!yy_Newline(ctx)) goto l16; goto l13; + l16:; ctx->pos= yypos16; ctx->thunkpos= yythunkpos16; + } + { int yypos17= ctx->pos, yythunkpos17= ctx->thunkpos; if (!yymatchChar(ctx, ']')) goto l17; goto l13; + l17:; ctx->pos= yypos17; ctx->thunkpos= yythunkpos17; + } if (!yymatchDot(ctx)) goto l13; + l14:; + { int yypos15= ctx->pos, yythunkpos15= ctx->thunkpos; + { int yypos18= ctx->pos, yythunkpos18= ctx->thunkpos; if (!yy_Newline(ctx)) goto l18; goto l15; + l18:; ctx->pos= yypos18; ctx->thunkpos= yythunkpos18; + } + { int yypos19= ctx->pos, yythunkpos19= ctx->thunkpos; if (!yymatchChar(ctx, ']')) goto l19; goto l15; + l19:; ctx->pos= yypos19; ctx->thunkpos= yythunkpos19; + } if (!yymatchDot(ctx)) goto l15; goto l14; + l15:; ctx->pos= yypos15; ctx->thunkpos= yythunkpos15; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l13; if (!yymatchChar(ctx, ']')) goto l13; yyDo(ctx, yy_1_RawNoteReference, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "RawNoteReference", ctx->buf+ctx->pos)); + return 1; + l13:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RawNoteReference", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_DoubleQuoteEnd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "DoubleQuoteEnd")); if (!yymatchChar(ctx, '"')) goto l20; + yyprintf((stderr, " ok %s @ %s\n", "DoubleQuoteEnd", ctx->buf+ctx->pos)); + return 1; + l20:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "DoubleQuoteEnd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_DoubleQuoteStart(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "DoubleQuoteStart")); if (!yymatchChar(ctx, '"')) goto l21; + yyprintf((stderr, " ok %s @ %s\n", "DoubleQuoteStart", ctx->buf+ctx->pos)); + return 1; + l21:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "DoubleQuoteStart", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SingleQuoteEnd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SingleQuoteEnd")); if (!yymatchChar(ctx, '\'')) goto l22; + { int yypos23= ctx->pos, yythunkpos23= ctx->thunkpos; if (!yy_Alphanumeric(ctx)) goto l23; goto l22; + l23:; ctx->pos= yypos23; ctx->thunkpos= yythunkpos23; + } + yyprintf((stderr, " ok %s @ %s\n", "SingleQuoteEnd", ctx->buf+ctx->pos)); + return 1; + l22:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SingleQuoteEnd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SingleQuoteStart(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SingleQuoteStart")); if (!yymatchChar(ctx, '\'')) goto l24; + { int yypos25= ctx->pos, yythunkpos25= ctx->thunkpos; + { int yypos26= ctx->pos, yythunkpos26= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l27; goto l26; + l27:; ctx->pos= yypos26; ctx->thunkpos= yythunkpos26; if (!yy_Newline(ctx)) goto l25; + } + l26:; goto l24; + l25:; ctx->pos= yypos25; ctx->thunkpos= yythunkpos25; + } + yyprintf((stderr, " ok %s @ %s\n", "SingleQuoteStart", ctx->buf+ctx->pos)); + return 1; + l24:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SingleQuoteStart", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EnDash(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "EnDash")); if (!yymatchChar(ctx, '-')) goto l28; + { int yypos29= ctx->pos, yythunkpos29= ctx->thunkpos; if (!yy_Digit(ctx)) goto l28; ctx->pos= yypos29; ctx->thunkpos= yythunkpos29; + } yyDo(ctx, yy_1_EnDash, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "EnDash", ctx->buf+ctx->pos)); + return 1; + l28:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EnDash", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EmDash(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "EmDash")); + { int yypos31= ctx->pos, yythunkpos31= ctx->thunkpos; if (!yymatchString(ctx, "---")) goto l32; goto l31; + l32:; ctx->pos= yypos31; ctx->thunkpos= yythunkpos31; if (!yymatchString(ctx, "--")) goto l30; + } + l31:; yyDo(ctx, yy_1_EmDash, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "EmDash", ctx->buf+ctx->pos)); + return 1; + l30:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EmDash", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Apostrophe(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Apostrophe")); if (!yymatchChar(ctx, '\'')) goto l33; yyDo(ctx, yy_1_Apostrophe, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Apostrophe", ctx->buf+ctx->pos)); + return 1; + l33:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Apostrophe", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_DoubleQuoted(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "DoubleQuoted")); if (!yy_DoubleQuoteStart(ctx)) goto l34; if (!yy_StartList(ctx)) goto l34; yyDo(ctx, yySet, -2, 0); + { int yypos37= ctx->pos, yythunkpos37= ctx->thunkpos; if (!yy_DoubleQuoteEnd(ctx)) goto l37; goto l34; + l37:; ctx->pos= yypos37; ctx->thunkpos= yythunkpos37; + } if (!yy_Inline(ctx)) goto l34; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_DoubleQuoted, ctx->begin, ctx->end); + l35:; + { int yypos36= ctx->pos, yythunkpos36= ctx->thunkpos; + { int yypos38= ctx->pos, yythunkpos38= ctx->thunkpos; if (!yy_DoubleQuoteEnd(ctx)) goto l38; goto l36; + l38:; ctx->pos= yypos38; ctx->thunkpos= yythunkpos38; + } if (!yy_Inline(ctx)) goto l36; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_DoubleQuoted, ctx->begin, ctx->end); goto l35; + l36:; ctx->pos= yypos36; ctx->thunkpos= yythunkpos36; + } if (!yy_DoubleQuoteEnd(ctx)) goto l34; yyDo(ctx, yy_2_DoubleQuoted, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "DoubleQuoted", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l34:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "DoubleQuoted", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SingleQuoted(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "SingleQuoted")); if (!yy_SingleQuoteStart(ctx)) goto l39; if (!yy_StartList(ctx)) goto l39; yyDo(ctx, yySet, -2, 0); + { int yypos42= ctx->pos, yythunkpos42= ctx->thunkpos; if (!yy_SingleQuoteEnd(ctx)) goto l42; goto l39; + l42:; ctx->pos= yypos42; ctx->thunkpos= yythunkpos42; + } if (!yy_Inline(ctx)) goto l39; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_SingleQuoted, ctx->begin, ctx->end); + l40:; + { int yypos41= ctx->pos, yythunkpos41= ctx->thunkpos; + { int yypos43= ctx->pos, yythunkpos43= ctx->thunkpos; if (!yy_SingleQuoteEnd(ctx)) goto l43; goto l41; + l43:; ctx->pos= yypos43; ctx->thunkpos= yythunkpos43; + } if (!yy_Inline(ctx)) goto l41; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_SingleQuoted, ctx->begin, ctx->end); goto l40; + l41:; ctx->pos= yypos41; ctx->thunkpos= yythunkpos41; + } if (!yy_SingleQuoteEnd(ctx)) goto l39; yyDo(ctx, yy_2_SingleQuoted, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "SingleQuoted", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l39:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SingleQuoted", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Dash(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Dash")); + { int yypos45= ctx->pos, yythunkpos45= ctx->thunkpos; if (!yy_EmDash(ctx)) goto l46; goto l45; + l46:; ctx->pos= yypos45; ctx->thunkpos= yythunkpos45; if (!yy_EnDash(ctx)) goto l44; + } + l45:; + yyprintf((stderr, " ok %s @ %s\n", "Dash", ctx->buf+ctx->pos)); + return 1; + l44:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Dash", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ellipsis(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ellipsis")); + { int yypos48= ctx->pos, yythunkpos48= ctx->thunkpos; if (!yymatchString(ctx, "...")) goto l49; goto l48; + l49:; ctx->pos= yypos48; ctx->thunkpos= yythunkpos48; if (!yymatchString(ctx, ". . .")) goto l47; + } + l48:; yyDo(ctx, yy_1_Ellipsis, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Ellipsis", ctx->buf+ctx->pos)); + return 1; + l47:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ellipsis", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Digit(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Digit")); if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l50; + yyprintf((stderr, " ok %s @ %s\n", "Digit", ctx->buf+ctx->pos)); + return 1; + l50:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Digit", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ExtendedSpecialChar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "ExtendedSpecialChar")); + { int yypos52= ctx->pos, yythunkpos52= ctx->thunkpos; yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_SMART) )) goto l53; + { int yypos54= ctx->pos, yythunkpos54= ctx->thunkpos; if (!yymatchChar(ctx, '.')) goto l55; goto l54; + l55:; ctx->pos= yypos54; ctx->thunkpos= yythunkpos54; if (!yymatchChar(ctx, '-')) goto l56; goto l54; + l56:; ctx->pos= yypos54; ctx->thunkpos= yythunkpos54; if (!yymatchChar(ctx, '\'')) goto l57; goto l54; + l57:; ctx->pos= yypos54; ctx->thunkpos= yythunkpos54; if (!yymatchChar(ctx, '"')) goto l53; + } + l54:; goto l52; + l53:; ctx->pos= yypos52; ctx->thunkpos= yythunkpos52; yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_NOTES) )) goto l51; if (!yymatchChar(ctx, '^')) goto l51; + } + l52:; + yyprintf((stderr, " ok %s @ %s\n", "ExtendedSpecialChar", ctx->buf+ctx->pos)); + return 1; + l51:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ExtendedSpecialChar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AlphanumericAscii(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AlphanumericAscii")); if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l58; + yyprintf((stderr, " ok %s @ %s\n", "AlphanumericAscii", ctx->buf+ctx->pos)); + return 1; + l58:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AlphanumericAscii", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Quoted(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Quoted")); + { int yypos60= ctx->pos, yythunkpos60= ctx->thunkpos; if (!yymatchChar(ctx, '"')) goto l61; + l62:; + { int yypos63= ctx->pos, yythunkpos63= ctx->thunkpos; + { int yypos64= ctx->pos, yythunkpos64= ctx->thunkpos; if (!yymatchChar(ctx, '"')) goto l64; goto l63; + l64:; ctx->pos= yypos64; ctx->thunkpos= yythunkpos64; + } if (!yymatchDot(ctx)) goto l63; goto l62; + l63:; ctx->pos= yypos63; ctx->thunkpos= yythunkpos63; + } if (!yymatchChar(ctx, '"')) goto l61; goto l60; + l61:; ctx->pos= yypos60; ctx->thunkpos= yythunkpos60; if (!yymatchChar(ctx, '\'')) goto l59; + l65:; + { int yypos66= ctx->pos, yythunkpos66= ctx->thunkpos; + { int yypos67= ctx->pos, yythunkpos67= ctx->thunkpos; if (!yymatchChar(ctx, '\'')) goto l67; goto l66; + l67:; ctx->pos= yypos67; ctx->thunkpos= yythunkpos67; + } if (!yymatchDot(ctx)) goto l66; goto l65; + l66:; ctx->pos= yypos66; ctx->thunkpos= yythunkpos66; + } if (!yymatchChar(ctx, '\'')) goto l59; + } + l60:; + yyprintf((stderr, " ok %s @ %s\n", "Quoted", ctx->buf+ctx->pos)); + return 1; + l59:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Quoted", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlTag(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlTag")); if (!yymatchChar(ctx, '<')) goto l68; if (!yy_Spnl(ctx)) goto l68; + { int yypos69= ctx->pos, yythunkpos69= ctx->thunkpos; if (!yymatchChar(ctx, '/')) goto l69; goto l70; + l69:; ctx->pos= yypos69; ctx->thunkpos= yythunkpos69; + } + l70:; if (!yy_AlphanumericAscii(ctx)) goto l68; + l71:; + { int yypos72= ctx->pos, yythunkpos72= ctx->thunkpos; if (!yy_AlphanumericAscii(ctx)) goto l72; goto l71; + l72:; ctx->pos= yypos72; ctx->thunkpos= yythunkpos72; + } if (!yy_Spnl(ctx)) goto l68; + l73:; + { int yypos74= ctx->pos, yythunkpos74= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l74; goto l73; + l74:; ctx->pos= yypos74; ctx->thunkpos= yythunkpos74; + } + { int yypos75= ctx->pos, yythunkpos75= ctx->thunkpos; if (!yymatchChar(ctx, '/')) goto l75; goto l76; + l75:; ctx->pos= yypos75; ctx->thunkpos= yythunkpos75; + } + l76:; if (!yy_Spnl(ctx)) goto l68; if (!yymatchChar(ctx, '>')) goto l68; + yyprintf((stderr, " ok %s @ %s\n", "HtmlTag", ctx->buf+ctx->pos)); + return 1; + l68:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlTag", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ticks5(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ticks5")); if (!yymatchString(ctx, "`````")) goto l77; + { int yypos78= ctx->pos, yythunkpos78= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l78; goto l77; + l78:; ctx->pos= yypos78; ctx->thunkpos= yythunkpos78; + } + yyprintf((stderr, " ok %s @ %s\n", "Ticks5", ctx->buf+ctx->pos)); + return 1; + l77:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ticks5", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ticks4(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ticks4")); if (!yymatchString(ctx, "````")) goto l79; + { int yypos80= ctx->pos, yythunkpos80= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l80; goto l79; + l80:; ctx->pos= yypos80; ctx->thunkpos= yythunkpos80; + } + yyprintf((stderr, " ok %s @ %s\n", "Ticks4", ctx->buf+ctx->pos)); + return 1; + l79:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ticks4", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ticks3(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ticks3")); if (!yymatchString(ctx, "```")) goto l81; + { int yypos82= ctx->pos, yythunkpos82= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l82; goto l81; + l82:; ctx->pos= yypos82; ctx->thunkpos= yythunkpos82; + } + yyprintf((stderr, " ok %s @ %s\n", "Ticks3", ctx->buf+ctx->pos)); + return 1; + l81:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ticks3", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ticks2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ticks2")); if (!yymatchString(ctx, "``")) goto l83; + { int yypos84= ctx->pos, yythunkpos84= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l84; goto l83; + l84:; ctx->pos= yypos84; ctx->thunkpos= yythunkpos84; + } + yyprintf((stderr, " ok %s @ %s\n", "Ticks2", ctx->buf+ctx->pos)); + return 1; + l83:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ticks2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Ticks1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Ticks1")); if (!yymatchChar(ctx, '`')) goto l85; + { int yypos86= ctx->pos, yythunkpos86= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l86; goto l85; + l86:; ctx->pos= yypos86; ctx->thunkpos= yythunkpos86; + } + yyprintf((stderr, " ok %s @ %s\n", "Ticks1", ctx->buf+ctx->pos)); + return 1; + l85:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Ticks1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SkipBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SkipBlock")); + { int yypos88= ctx->pos, yythunkpos88= ctx->thunkpos; if (!yy_HtmlBlock(ctx)) goto l89; goto l88; + l89:; ctx->pos= yypos88; ctx->thunkpos= yythunkpos88; + { int yypos93= ctx->pos, yythunkpos93= ctx->thunkpos; if (!yymatchChar(ctx, '#')) goto l93; goto l90; + l93:; ctx->pos= yypos93; ctx->thunkpos= yythunkpos93; + } + { int yypos94= ctx->pos, yythunkpos94= ctx->thunkpos; if (!yy_SetextBottom1(ctx)) goto l94; goto l90; + l94:; ctx->pos= yypos94; ctx->thunkpos= yythunkpos94; + } + { int yypos95= ctx->pos, yythunkpos95= ctx->thunkpos; if (!yy_SetextBottom2(ctx)) goto l95; goto l90; + l95:; ctx->pos= yypos95; ctx->thunkpos= yythunkpos95; + } + { int yypos96= ctx->pos, yythunkpos96= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l96; goto l90; + l96:; ctx->pos= yypos96; ctx->thunkpos= yythunkpos96; + } if (!yy_RawLine(ctx)) goto l90; + l91:; + { int yypos92= ctx->pos, yythunkpos92= ctx->thunkpos; + { int yypos97= ctx->pos, yythunkpos97= ctx->thunkpos; if (!yymatchChar(ctx, '#')) goto l97; goto l92; + l97:; ctx->pos= yypos97; ctx->thunkpos= yythunkpos97; + } + { int yypos98= ctx->pos, yythunkpos98= ctx->thunkpos; if (!yy_SetextBottom1(ctx)) goto l98; goto l92; + l98:; ctx->pos= yypos98; ctx->thunkpos= yythunkpos98; + } + { int yypos99= ctx->pos, yythunkpos99= ctx->thunkpos; if (!yy_SetextBottom2(ctx)) goto l99; goto l92; + l99:; ctx->pos= yypos99; ctx->thunkpos= yythunkpos99; + } + { int yypos100= ctx->pos, yythunkpos100= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l100; goto l92; + l100:; ctx->pos= yypos100; ctx->thunkpos= yythunkpos100; + } if (!yy_RawLine(ctx)) goto l92; goto l91; + l92:; ctx->pos= yypos92; ctx->thunkpos= yythunkpos92; + } + l101:; + { int yypos102= ctx->pos, yythunkpos102= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l102; goto l101; + l102:; ctx->pos= yypos102; ctx->thunkpos= yythunkpos102; + } goto l88; + l90:; ctx->pos= yypos88; ctx->thunkpos= yythunkpos88; if (!yy_BlankLine(ctx)) goto l103; + l104:; + { int yypos105= ctx->pos, yythunkpos105= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l105; goto l104; + l105:; ctx->pos= yypos105; ctx->thunkpos= yythunkpos105; + } goto l88; + l103:; ctx->pos= yypos88; ctx->thunkpos= yythunkpos88; if (!yy_RawLine(ctx)) goto l87; + } + l88:; + yyprintf((stderr, " ok %s @ %s\n", "SkipBlock", ctx->buf+ctx->pos)); + return 1; + l87:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SkipBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_References(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "References")); if (!yy_StartList(ctx)) goto l106; yyDo(ctx, yySet, -2, 0); + l107:; + { int yypos108= ctx->pos, yythunkpos108= ctx->thunkpos; + { int yypos109= ctx->pos, yythunkpos109= ctx->thunkpos; if (!yy_Reference(ctx)) goto l110; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_References, ctx->begin, ctx->end); goto l109; + l110:; ctx->pos= yypos109; ctx->thunkpos= yythunkpos109; if (!yy_SkipBlock(ctx)) goto l108; + } + l109:; goto l107; + l108:; ctx->pos= yypos108; ctx->thunkpos= yythunkpos108; + } yyDo(ctx, yy_2_References, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "References", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l106:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "References", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EmptyTitle(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "EmptyTitle")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l111; if (!yymatchString(ctx, "")) goto l111; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l111; + yyprintf((stderr, " ok %s @ %s\n", "EmptyTitle", ctx->buf+ctx->pos)); + return 1; + l111:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EmptyTitle", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RefTitleParens(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RefTitleParens")); if (!yy_Spnl(ctx)) goto l112; if (!yymatchChar(ctx, '(')) goto l112; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l112; + l113:; + { int yypos114= ctx->pos, yythunkpos114= ctx->thunkpos; + { int yypos115= ctx->pos, yythunkpos115= ctx->thunkpos; + { int yypos116= ctx->pos, yythunkpos116= ctx->thunkpos; if (!yymatchChar(ctx, ')')) goto l117; if (!yy_Sp(ctx)) goto l117; if (!yy_Newline(ctx)) goto l117; goto l116; + l117:; ctx->pos= yypos116; ctx->thunkpos= yythunkpos116; if (!yy_Newline(ctx)) goto l115; + } + l116:; goto l114; + l115:; ctx->pos= yypos115; ctx->thunkpos= yythunkpos115; + } if (!yymatchDot(ctx)) goto l114; goto l113; + l114:; ctx->pos= yypos114; ctx->thunkpos= yythunkpos114; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l112; if (!yymatchChar(ctx, ')')) goto l112; + yyprintf((stderr, " ok %s @ %s\n", "RefTitleParens", ctx->buf+ctx->pos)); + return 1; + l112:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RefTitleParens", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RefTitleDouble(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RefTitleDouble")); if (!yy_Spnl(ctx)) goto l118; if (!yymatchChar(ctx, '"')) goto l118; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l118; + l119:; + { int yypos120= ctx->pos, yythunkpos120= ctx->thunkpos; + { int yypos121= ctx->pos, yythunkpos121= ctx->thunkpos; + { int yypos122= ctx->pos, yythunkpos122= ctx->thunkpos; if (!yymatchChar(ctx, '"')) goto l123; if (!yy_Sp(ctx)) goto l123; if (!yy_Newline(ctx)) goto l123; goto l122; + l123:; ctx->pos= yypos122; ctx->thunkpos= yythunkpos122; if (!yy_Newline(ctx)) goto l121; + } + l122:; goto l120; + l121:; ctx->pos= yypos121; ctx->thunkpos= yythunkpos121; + } if (!yymatchDot(ctx)) goto l120; goto l119; + l120:; ctx->pos= yypos120; ctx->thunkpos= yythunkpos120; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l118; if (!yymatchChar(ctx, '"')) goto l118; + yyprintf((stderr, " ok %s @ %s\n", "RefTitleDouble", ctx->buf+ctx->pos)); + return 1; + l118:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RefTitleDouble", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RefTitleSingle(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RefTitleSingle")); if (!yy_Spnl(ctx)) goto l124; if (!yymatchChar(ctx, '\'')) goto l124; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l124; + l125:; + { int yypos126= ctx->pos, yythunkpos126= ctx->thunkpos; + { int yypos127= ctx->pos, yythunkpos127= ctx->thunkpos; + { int yypos128= ctx->pos, yythunkpos128= ctx->thunkpos; if (!yymatchChar(ctx, '\'')) goto l129; if (!yy_Sp(ctx)) goto l129; if (!yy_Newline(ctx)) goto l129; goto l128; + l129:; ctx->pos= yypos128; ctx->thunkpos= yythunkpos128; if (!yy_Newline(ctx)) goto l127; + } + l128:; goto l126; + l127:; ctx->pos= yypos127; ctx->thunkpos= yythunkpos127; + } if (!yymatchDot(ctx)) goto l126; goto l125; + l126:; ctx->pos= yypos126; ctx->thunkpos= yythunkpos126; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l124; if (!yymatchChar(ctx, '\'')) goto l124; + yyprintf((stderr, " ok %s @ %s\n", "RefTitleSingle", ctx->buf+ctx->pos)); + return 1; + l124:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RefTitleSingle", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RefTitle(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RefTitle")); + { int yypos131= ctx->pos, yythunkpos131= ctx->thunkpos; if (!yy_RefTitleSingle(ctx)) goto l132; goto l131; + l132:; ctx->pos= yypos131; ctx->thunkpos= yythunkpos131; if (!yy_RefTitleDouble(ctx)) goto l133; goto l131; + l133:; ctx->pos= yypos131; ctx->thunkpos= yythunkpos131; if (!yy_RefTitleParens(ctx)) goto l134; goto l131; + l134:; ctx->pos= yypos131; ctx->thunkpos= yythunkpos131; if (!yy_EmptyTitle(ctx)) goto l130; + } + l131:; yyDo(ctx, yy_1_RefTitle, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "RefTitle", ctx->buf+ctx->pos)); + return 1; + l130:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RefTitle", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RefSrc(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RefSrc")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l135; if (!yy_Nonspacechar(ctx)) goto l135; + l136:; + { int yypos137= ctx->pos, yythunkpos137= ctx->thunkpos; if (!yy_Nonspacechar(ctx)) goto l137; goto l136; + l137:; ctx->pos= yypos137; ctx->thunkpos= yythunkpos137; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l135; yyDo(ctx, yy_1_RefSrc, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "RefSrc", ctx->buf+ctx->pos)); + return 1; + l135:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RefSrc", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AutoLinkEmail(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AutoLinkEmail")); if (!yymatchChar(ctx, '<')) goto l138; + { int yypos139= ctx->pos, yythunkpos139= ctx->thunkpos; if (!yymatchString(ctx, "mailto:")) goto l139; goto l140; + l139:; ctx->pos= yypos139; ctx->thunkpos= yythunkpos139; + } + l140:; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l138; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\062\350\377\003\376\377\377\207\376\377\377\107\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l138; + l141:; + { int yypos142= ctx->pos, yythunkpos142= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\062\350\377\003\376\377\377\207\376\377\377\107\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l142; goto l141; + l142:; ctx->pos= yypos142; ctx->thunkpos= yythunkpos142; + } if (!yymatchChar(ctx, '@')) goto l138; + { int yypos145= ctx->pos, yythunkpos145= ctx->thunkpos; if (!yy_Newline(ctx)) goto l145; goto l138; + l145:; ctx->pos= yypos145; ctx->thunkpos= yythunkpos145; + } + { int yypos146= ctx->pos, yythunkpos146= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l146; goto l138; + l146:; ctx->pos= yypos146; ctx->thunkpos= yythunkpos146; + } if (!yymatchDot(ctx)) goto l138; + l143:; + { int yypos144= ctx->pos, yythunkpos144= ctx->thunkpos; + { int yypos147= ctx->pos, yythunkpos147= ctx->thunkpos; if (!yy_Newline(ctx)) goto l147; goto l144; + l147:; ctx->pos= yypos147; ctx->thunkpos= yythunkpos147; + } + { int yypos148= ctx->pos, yythunkpos148= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l148; goto l144; + l148:; ctx->pos= yypos148; ctx->thunkpos= yythunkpos148; + } if (!yymatchDot(ctx)) goto l144; goto l143; + l144:; ctx->pos= yypos144; ctx->thunkpos= yythunkpos144; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l138; if (!yymatchChar(ctx, '>')) goto l138; yyDo(ctx, yy_1_AutoLinkEmail, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "AutoLinkEmail", ctx->buf+ctx->pos)); + return 1; + l138:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AutoLinkEmail", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AutoLinkUrl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AutoLinkUrl")); if (!yymatchChar(ctx, '<')) goto l149; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l149; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l149; + l150:; + { int yypos151= ctx->pos, yythunkpos151= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l151; goto l150; + l151:; ctx->pos= yypos151; ctx->thunkpos= yythunkpos151; + } if (!yymatchString(ctx, "://")) goto l149; + { int yypos154= ctx->pos, yythunkpos154= ctx->thunkpos; if (!yy_Newline(ctx)) goto l154; goto l149; + l154:; ctx->pos= yypos154; ctx->thunkpos= yythunkpos154; + } + { int yypos155= ctx->pos, yythunkpos155= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l155; goto l149; + l155:; ctx->pos= yypos155; ctx->thunkpos= yythunkpos155; + } if (!yymatchDot(ctx)) goto l149; + l152:; + { int yypos153= ctx->pos, yythunkpos153= ctx->thunkpos; + { int yypos156= ctx->pos, yythunkpos156= ctx->thunkpos; if (!yy_Newline(ctx)) goto l156; goto l153; + l156:; ctx->pos= yypos156; ctx->thunkpos= yythunkpos156; + } + { int yypos157= ctx->pos, yythunkpos157= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l157; goto l153; + l157:; ctx->pos= yypos157; ctx->thunkpos= yythunkpos157; + } if (!yymatchDot(ctx)) goto l153; goto l152; + l153:; ctx->pos= yypos153; ctx->thunkpos= yythunkpos153; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l149; if (!yymatchChar(ctx, '>')) goto l149; yyDo(ctx, yy_1_AutoLinkUrl, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "AutoLinkUrl", ctx->buf+ctx->pos)); + return 1; + l149:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AutoLinkUrl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_TitleDouble(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "TitleDouble")); if (!yymatchChar(ctx, '"')) goto l158; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l158; + l159:; + { int yypos160= ctx->pos, yythunkpos160= ctx->thunkpos; + { int yypos161= ctx->pos, yythunkpos161= ctx->thunkpos; if (!yymatchChar(ctx, '"')) goto l161; if (!yy_Sp(ctx)) goto l161; + { int yypos162= ctx->pos, yythunkpos162= ctx->thunkpos; if (!yymatchChar(ctx, ')')) goto l163; goto l162; + l163:; ctx->pos= yypos162; ctx->thunkpos= yythunkpos162; if (!yy_Newline(ctx)) goto l161; + } + l162:; goto l160; + l161:; ctx->pos= yypos161; ctx->thunkpos= yythunkpos161; + } if (!yymatchDot(ctx)) goto l160; goto l159; + l160:; ctx->pos= yypos160; ctx->thunkpos= yythunkpos160; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l158; if (!yymatchChar(ctx, '"')) goto l158; + yyprintf((stderr, " ok %s @ %s\n", "TitleDouble", ctx->buf+ctx->pos)); + return 1; + l158:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "TitleDouble", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_TitleSingle(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "TitleSingle")); if (!yymatchChar(ctx, '\'')) goto l164; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l164; + l165:; + { int yypos166= ctx->pos, yythunkpos166= ctx->thunkpos; + { int yypos167= ctx->pos, yythunkpos167= ctx->thunkpos; if (!yymatchChar(ctx, '\'')) goto l167; if (!yy_Sp(ctx)) goto l167; + { int yypos168= ctx->pos, yythunkpos168= ctx->thunkpos; if (!yymatchChar(ctx, ')')) goto l169; goto l168; + l169:; ctx->pos= yypos168; ctx->thunkpos= yythunkpos168; if (!yy_Newline(ctx)) goto l167; + } + l168:; goto l166; + l167:; ctx->pos= yypos167; ctx->thunkpos= yythunkpos167; + } if (!yymatchDot(ctx)) goto l166; goto l165; + l166:; ctx->pos= yypos166; ctx->thunkpos= yythunkpos166; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l164; if (!yymatchChar(ctx, '\'')) goto l164; + yyprintf((stderr, " ok %s @ %s\n", "TitleSingle", ctx->buf+ctx->pos)); + return 1; + l164:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "TitleSingle", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Nonspacechar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Nonspacechar")); + { int yypos171= ctx->pos, yythunkpos171= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l171; goto l170; + l171:; ctx->pos= yypos171; ctx->thunkpos= yythunkpos171; + } + { int yypos172= ctx->pos, yythunkpos172= ctx->thunkpos; if (!yy_Newline(ctx)) goto l172; goto l170; + l172:; ctx->pos= yypos172; ctx->thunkpos= yythunkpos172; + } if (!yymatchDot(ctx)) goto l170; + yyprintf((stderr, " ok %s @ %s\n", "Nonspacechar", ctx->buf+ctx->pos)); + return 1; + l170:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Nonspacechar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SourceContents(yycontext *ctx) +{ + yyprintf((stderr, "%s\n", "SourceContents")); + l174:; + { int yypos175= ctx->pos, yythunkpos175= ctx->thunkpos; + { int yypos176= ctx->pos, yythunkpos176= ctx->thunkpos; + { int yypos180= ctx->pos, yythunkpos180= ctx->thunkpos; if (!yymatchChar(ctx, '(')) goto l180; goto l177; + l180:; ctx->pos= yypos180; ctx->thunkpos= yythunkpos180; + } + { int yypos181= ctx->pos, yythunkpos181= ctx->thunkpos; if (!yymatchChar(ctx, ')')) goto l181; goto l177; + l181:; ctx->pos= yypos181; ctx->thunkpos= yythunkpos181; + } + { int yypos182= ctx->pos, yythunkpos182= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l182; goto l177; + l182:; ctx->pos= yypos182; ctx->thunkpos= yythunkpos182; + } if (!yy_Nonspacechar(ctx)) goto l177; + l178:; + { int yypos179= ctx->pos, yythunkpos179= ctx->thunkpos; + { int yypos183= ctx->pos, yythunkpos183= ctx->thunkpos; if (!yymatchChar(ctx, '(')) goto l183; goto l179; + l183:; ctx->pos= yypos183; ctx->thunkpos= yythunkpos183; + } + { int yypos184= ctx->pos, yythunkpos184= ctx->thunkpos; if (!yymatchChar(ctx, ')')) goto l184; goto l179; + l184:; ctx->pos= yypos184; ctx->thunkpos= yythunkpos184; + } + { int yypos185= ctx->pos, yythunkpos185= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l185; goto l179; + l185:; ctx->pos= yypos185; ctx->thunkpos= yythunkpos185; + } if (!yy_Nonspacechar(ctx)) goto l179; goto l178; + l179:; ctx->pos= yypos179; ctx->thunkpos= yythunkpos179; + } goto l176; + l177:; ctx->pos= yypos176; ctx->thunkpos= yythunkpos176; if (!yymatchChar(ctx, '(')) goto l175; if (!yy_SourceContents(ctx)) goto l175; if (!yymatchChar(ctx, ')')) goto l175; + } + l176:; goto l174; + l175:; ctx->pos= yypos175; ctx->thunkpos= yythunkpos175; + } + yyprintf((stderr, " ok %s @ %s\n", "SourceContents", ctx->buf+ctx->pos)); + return 1; +} +YY_RULE(int) yy_Title(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Title")); + { int yypos187= ctx->pos, yythunkpos187= ctx->thunkpos; if (!yy_TitleSingle(ctx)) goto l188; goto l187; + l188:; ctx->pos= yypos187; ctx->thunkpos= yythunkpos187; if (!yy_TitleDouble(ctx)) goto l189; goto l187; + l189:; ctx->pos= yypos187; ctx->thunkpos= yythunkpos187; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l186; if (!yymatchString(ctx, "")) goto l186; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l186; + } + l187:; yyDo(ctx, yy_1_Title, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Title", ctx->buf+ctx->pos)); + return 1; + l186:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Title", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Source(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Source")); + { int yypos191= ctx->pos, yythunkpos191= ctx->thunkpos; if (!yymatchChar(ctx, '<')) goto l192; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l192; if (!yy_SourceContents(ctx)) goto l192; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l192; if (!yymatchChar(ctx, '>')) goto l192; goto l191; + l192:; ctx->pos= yypos191; ctx->thunkpos= yythunkpos191; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l190; if (!yy_SourceContents(ctx)) goto l190; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l190; + } + l191:; yyDo(ctx, yy_1_Source, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Source", ctx->buf+ctx->pos)); + return 1; + l190:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Source", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Label(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Label")); if (!yymatchChar(ctx, '[')) goto l193; + { int yypos194= ctx->pos, yythunkpos194= ctx->thunkpos; + { int yypos196= ctx->pos, yythunkpos196= ctx->thunkpos; if (!yymatchChar(ctx, '^')) goto l196; goto l195; + l196:; ctx->pos= yypos196; ctx->thunkpos= yythunkpos196; + } yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_NOTES) )) goto l195; goto l194; + l195:; ctx->pos= yypos194; ctx->thunkpos= yythunkpos194; + { int yypos197= ctx->pos, yythunkpos197= ctx->thunkpos; if (!yymatchDot(ctx)) goto l193; ctx->pos= yypos197; ctx->thunkpos= yythunkpos197; + } yyText(ctx, ctx->begin, ctx->end); if (!( !extension(EXT_NOTES) )) goto l193; + } + l194:; if (!yy_StartList(ctx)) goto l193; yyDo(ctx, yySet, -1, 0); + l198:; + { int yypos199= ctx->pos, yythunkpos199= ctx->thunkpos; + { int yypos200= ctx->pos, yythunkpos200= ctx->thunkpos; if (!yymatchChar(ctx, ']')) goto l200; goto l199; + l200:; ctx->pos= yypos200; ctx->thunkpos= yythunkpos200; + } if (!yy_Inline(ctx)) goto l199; yyDo(ctx, yy_1_Label, ctx->begin, ctx->end); goto l198; + l199:; ctx->pos= yypos199; ctx->thunkpos= yythunkpos199; + } if (!yymatchChar(ctx, ']')) goto l193; yyDo(ctx, yy_2_Label, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Label", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l193:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Label", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ReferenceLinkSingle(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ReferenceLinkSingle")); if (!yy_Label(ctx)) goto l201; yyDo(ctx, yySet, -1, 0); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l201; + { int yypos202= ctx->pos, yythunkpos202= ctx->thunkpos; if (!yy_Spnl(ctx)) goto l202; if (!yymatchString(ctx, "[]")) goto l202; goto l203; + l202:; ctx->pos= yypos202; ctx->thunkpos= yythunkpos202; + } + l203:; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l201; yyDo(ctx, yy_1_ReferenceLinkSingle, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ReferenceLinkSingle", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l201:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ReferenceLinkSingle", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ReferenceLinkDouble(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "ReferenceLinkDouble")); if (!yy_Label(ctx)) goto l204; yyDo(ctx, yySet, -2, 0); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l204; if (!yy_Spnl(ctx)) goto l204; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l204; + { int yypos205= ctx->pos, yythunkpos205= ctx->thunkpos; if (!yymatchString(ctx, "[]")) goto l205; goto l204; + l205:; ctx->pos= yypos205; ctx->thunkpos= yythunkpos205; + } if (!yy_Label(ctx)) goto l204; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_ReferenceLinkDouble, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ReferenceLinkDouble", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l204:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ReferenceLinkDouble", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AutoLink(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AutoLink")); + { int yypos207= ctx->pos, yythunkpos207= ctx->thunkpos; if (!yy_AutoLinkUrl(ctx)) goto l208; goto l207; + l208:; ctx->pos= yypos207; ctx->thunkpos= yythunkpos207; if (!yy_AutoLinkEmail(ctx)) goto l206; + } + l207:; + yyprintf((stderr, " ok %s @ %s\n", "AutoLink", ctx->buf+ctx->pos)); + return 1; + l206:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AutoLink", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ReferenceLink(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "ReferenceLink")); + { int yypos210= ctx->pos, yythunkpos210= ctx->thunkpos; if (!yy_ReferenceLinkDouble(ctx)) goto l211; goto l210; + l211:; ctx->pos= yypos210; ctx->thunkpos= yythunkpos210; if (!yy_ReferenceLinkSingle(ctx)) goto l209; + } + l210:; + yyprintf((stderr, " ok %s @ %s\n", "ReferenceLink", ctx->buf+ctx->pos)); + return 1; + l209:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ReferenceLink", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ExplicitLink(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 3, 0); + yyprintf((stderr, "%s\n", "ExplicitLink")); if (!yy_Label(ctx)) goto l212; yyDo(ctx, yySet, -3, 0); if (!yymatchChar(ctx, '(')) goto l212; if (!yy_Sp(ctx)) goto l212; if (!yy_Source(ctx)) goto l212; yyDo(ctx, yySet, -2, 0); if (!yy_Spnl(ctx)) goto l212; if (!yy_Title(ctx)) goto l212; yyDo(ctx, yySet, -1, 0); if (!yy_Sp(ctx)) goto l212; if (!yymatchChar(ctx, ')')) goto l212; yyDo(ctx, yy_1_ExplicitLink, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ExplicitLink", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 3, 0); + return 1; + l212:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ExplicitLink", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StrongUl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "StrongUl")); if (!yymatchString(ctx, "__")) goto l213; + { int yypos214= ctx->pos, yythunkpos214= ctx->thunkpos; if (!yy_Whitespace(ctx)) goto l214; goto l213; + l214:; ctx->pos= yypos214; ctx->thunkpos= yythunkpos214; + } if (!yy_StartList(ctx)) goto l213; yyDo(ctx, yySet, -2, 0); + { int yypos217= ctx->pos, yythunkpos217= ctx->thunkpos; if (!yymatchString(ctx, "__")) goto l217; goto l213; + l217:; ctx->pos= yypos217; ctx->thunkpos= yythunkpos217; + } if (!yy_Inline(ctx)) goto l213; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_StrongUl, ctx->begin, ctx->end); + l215:; + { int yypos216= ctx->pos, yythunkpos216= ctx->thunkpos; + { int yypos218= ctx->pos, yythunkpos218= ctx->thunkpos; if (!yymatchString(ctx, "__")) goto l218; goto l216; + l218:; ctx->pos= yypos218; ctx->thunkpos= yythunkpos218; + } if (!yy_Inline(ctx)) goto l216; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_StrongUl, ctx->begin, ctx->end); goto l215; + l216:; ctx->pos= yypos216; ctx->thunkpos= yythunkpos216; + } if (!yymatchString(ctx, "__")) goto l213; yyDo(ctx, yy_2_StrongUl, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "StrongUl", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l213:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StrongUl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StrongStar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "StrongStar")); if (!yymatchString(ctx, "**")) goto l219; + { int yypos220= ctx->pos, yythunkpos220= ctx->thunkpos; if (!yy_Whitespace(ctx)) goto l220; goto l219; + l220:; ctx->pos= yypos220; ctx->thunkpos= yythunkpos220; + } if (!yy_StartList(ctx)) goto l219; yyDo(ctx, yySet, -2, 0); + { int yypos223= ctx->pos, yythunkpos223= ctx->thunkpos; if (!yymatchString(ctx, "**")) goto l223; goto l219; + l223:; ctx->pos= yypos223; ctx->thunkpos= yythunkpos223; + } if (!yy_Inline(ctx)) goto l219; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_StrongStar, ctx->begin, ctx->end); + l221:; + { int yypos222= ctx->pos, yythunkpos222= ctx->thunkpos; + { int yypos224= ctx->pos, yythunkpos224= ctx->thunkpos; if (!yymatchString(ctx, "**")) goto l224; goto l222; + l224:; ctx->pos= yypos224; ctx->thunkpos= yythunkpos224; + } if (!yy_Inline(ctx)) goto l222; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_StrongStar, ctx->begin, ctx->end); goto l221; + l222:; ctx->pos= yypos222; ctx->thunkpos= yythunkpos222; + } if (!yymatchString(ctx, "**")) goto l219; yyDo(ctx, yy_2_StrongStar, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "StrongStar", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l219:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StrongStar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Whitespace(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Whitespace")); + { int yypos226= ctx->pos, yythunkpos226= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l227; goto l226; + l227:; ctx->pos= yypos226; ctx->thunkpos= yythunkpos226; if (!yy_Newline(ctx)) goto l225; + } + l226:; + yyprintf((stderr, " ok %s @ %s\n", "Whitespace", ctx->buf+ctx->pos)); + return 1; + l225:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Whitespace", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EmphUl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "EmphUl")); if (!yymatchChar(ctx, '_')) goto l228; + { int yypos229= ctx->pos, yythunkpos229= ctx->thunkpos; if (!yy_Whitespace(ctx)) goto l229; goto l228; + l229:; ctx->pos= yypos229; ctx->thunkpos= yythunkpos229; + } if (!yy_StartList(ctx)) goto l228; yyDo(ctx, yySet, -2, 0); + { int yypos232= ctx->pos, yythunkpos232= ctx->thunkpos; + { int yypos234= ctx->pos, yythunkpos234= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l234; goto l233; + l234:; ctx->pos= yypos234; ctx->thunkpos= yythunkpos234; + } if (!yy_Inline(ctx)) goto l233; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_EmphUl, ctx->begin, ctx->end); goto l232; + l233:; ctx->pos= yypos232; ctx->thunkpos= yythunkpos232; if (!yy_StrongUl(ctx)) goto l228; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_2_EmphUl, ctx->begin, ctx->end); + } + l232:; + l230:; + { int yypos231= ctx->pos, yythunkpos231= ctx->thunkpos; + { int yypos235= ctx->pos, yythunkpos235= ctx->thunkpos; + { int yypos237= ctx->pos, yythunkpos237= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l237; goto l236; + l237:; ctx->pos= yypos237; ctx->thunkpos= yythunkpos237; + } if (!yy_Inline(ctx)) goto l236; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_EmphUl, ctx->begin, ctx->end); goto l235; + l236:; ctx->pos= yypos235; ctx->thunkpos= yythunkpos235; if (!yy_StrongUl(ctx)) goto l231; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_2_EmphUl, ctx->begin, ctx->end); + } + l235:; goto l230; + l231:; ctx->pos= yypos231; ctx->thunkpos= yythunkpos231; + } if (!yymatchChar(ctx, '_')) goto l228; yyDo(ctx, yy_3_EmphUl, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "EmphUl", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l228:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EmphUl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EmphStar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "EmphStar")); if (!yymatchChar(ctx, '*')) goto l238; + { int yypos239= ctx->pos, yythunkpos239= ctx->thunkpos; if (!yy_Whitespace(ctx)) goto l239; goto l238; + l239:; ctx->pos= yypos239; ctx->thunkpos= yythunkpos239; + } if (!yy_StartList(ctx)) goto l238; yyDo(ctx, yySet, -2, 0); + { int yypos242= ctx->pos, yythunkpos242= ctx->thunkpos; + { int yypos244= ctx->pos, yythunkpos244= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l244; goto l243; + l244:; ctx->pos= yypos244; ctx->thunkpos= yythunkpos244; + } if (!yy_Inline(ctx)) goto l243; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_EmphStar, ctx->begin, ctx->end); goto l242; + l243:; ctx->pos= yypos242; ctx->thunkpos= yythunkpos242; if (!yy_StrongStar(ctx)) goto l238; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_2_EmphStar, ctx->begin, ctx->end); + } + l242:; + l240:; + { int yypos241= ctx->pos, yythunkpos241= ctx->thunkpos; + { int yypos245= ctx->pos, yythunkpos245= ctx->thunkpos; + { int yypos247= ctx->pos, yythunkpos247= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l247; goto l246; + l247:; ctx->pos= yypos247; ctx->thunkpos= yythunkpos247; + } if (!yy_Inline(ctx)) goto l246; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_EmphStar, ctx->begin, ctx->end); goto l245; + l246:; ctx->pos= yypos245; ctx->thunkpos= yythunkpos245; if (!yy_StrongStar(ctx)) goto l241; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_2_EmphStar, ctx->begin, ctx->end); + } + l245:; goto l240; + l241:; ctx->pos= yypos241; ctx->thunkpos= yythunkpos241; + } if (!yymatchChar(ctx, '*')) goto l238; yyDo(ctx, yy_3_EmphStar, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "EmphStar", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l238:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EmphStar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StarLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StarLine")); + { int yypos249= ctx->pos, yythunkpos249= ctx->thunkpos; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l250; if (!yymatchString(ctx, "****")) goto l250; + l251:; + { int yypos252= ctx->pos, yythunkpos252= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l252; goto l251; + l252:; ctx->pos= yypos252; ctx->thunkpos= yythunkpos252; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l250; goto l249; + l250:; ctx->pos= yypos249; ctx->thunkpos= yythunkpos249; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l248; if (!yy_Spacechar(ctx)) goto l248; if (!yymatchChar(ctx, '*')) goto l248; + l253:; + { int yypos254= ctx->pos, yythunkpos254= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l254; goto l253; + l254:; ctx->pos= yypos254; ctx->thunkpos= yythunkpos254; + } + { int yypos255= ctx->pos, yythunkpos255= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l248; ctx->pos= yypos255; ctx->thunkpos= yythunkpos255; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l248; + } + l249:; + yyprintf((stderr, " ok %s @ %s\n", "StarLine", ctx->buf+ctx->pos)); + return 1; + l248:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StarLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_UlLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "UlLine")); + { int yypos257= ctx->pos, yythunkpos257= ctx->thunkpos; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l258; if (!yymatchString(ctx, "____")) goto l258; + l259:; + { int yypos260= ctx->pos, yythunkpos260= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l260; goto l259; + l260:; ctx->pos= yypos260; ctx->thunkpos= yythunkpos260; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l258; goto l257; + l258:; ctx->pos= yypos257; ctx->thunkpos= yythunkpos257; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l256; if (!yy_Spacechar(ctx)) goto l256; if (!yymatchChar(ctx, '_')) goto l256; + l261:; + { int yypos262= ctx->pos, yythunkpos262= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l262; goto l261; + l262:; ctx->pos= yypos262; ctx->thunkpos= yythunkpos262; + } + { int yypos263= ctx->pos, yythunkpos263= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l256; ctx->pos= yypos263; ctx->thunkpos= yythunkpos263; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l256; + } + l257:; + yyprintf((stderr, " ok %s @ %s\n", "UlLine", ctx->buf+ctx->pos)); + return 1; + l256:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "UlLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SpecialChar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SpecialChar")); + { int yypos265= ctx->pos, yythunkpos265= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l266; goto l265; + l266:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '_')) goto l267; goto l265; + l267:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '`')) goto l268; goto l265; + l268:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '&')) goto l269; goto l265; + l269:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '[')) goto l270; goto l265; + l270:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, ']')) goto l271; goto l265; + l271:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '(')) goto l272; goto l265; + l272:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, ')')) goto l273; goto l265; + l273:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '<')) goto l274; goto l265; + l274:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '!')) goto l275; goto l265; + l275:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '#')) goto l276; goto l265; + l276:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '\\')) goto l277; goto l265; + l277:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '\'')) goto l278; goto l265; + l278:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yymatchChar(ctx, '"')) goto l279; goto l265; + l279:; ctx->pos= yypos265; ctx->thunkpos= yythunkpos265; if (!yy_ExtendedSpecialChar(ctx)) goto l264; + } + l265:; + yyprintf((stderr, " ok %s @ %s\n", "SpecialChar", ctx->buf+ctx->pos)); + return 1; + l264:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SpecialChar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Eof(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Eof")); + { int yypos281= ctx->pos, yythunkpos281= ctx->thunkpos; if (!yymatchDot(ctx)) goto l281; goto l280; + l281:; ctx->pos= yypos281; ctx->thunkpos= yythunkpos281; + } + yyprintf((stderr, " ok %s @ %s\n", "Eof", ctx->buf+ctx->pos)); + return 1; + l280:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Eof", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_NormalEndline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "NormalEndline")); if (!yy_Sp(ctx)) goto l282; if (!yy_Newline(ctx)) goto l282; + { int yypos283= ctx->pos, yythunkpos283= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l283; goto l282; + l283:; ctx->pos= yypos283; ctx->thunkpos= yythunkpos283; + } + { int yypos284= ctx->pos, yythunkpos284= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l284; goto l282; + l284:; ctx->pos= yypos284; ctx->thunkpos= yythunkpos284; + } + { int yypos285= ctx->pos, yythunkpos285= ctx->thunkpos; if (!yy_AtxStart(ctx)) goto l285; goto l282; + l285:; ctx->pos= yypos285; ctx->thunkpos= yythunkpos285; + } + { int yypos286= ctx->pos, yythunkpos286= ctx->thunkpos; if (!yy_Line(ctx)) goto l286; + { int yypos287= ctx->pos, yythunkpos287= ctx->thunkpos; if (!yymatchChar(ctx, '=')) goto l288; + l289:; + { int yypos290= ctx->pos, yythunkpos290= ctx->thunkpos; if (!yymatchChar(ctx, '=')) goto l290; goto l289; + l290:; ctx->pos= yypos290; ctx->thunkpos= yythunkpos290; + } goto l287; + l288:; ctx->pos= yypos287; ctx->thunkpos= yythunkpos287; if (!yymatchChar(ctx, '-')) goto l286; + l291:; + { int yypos292= ctx->pos, yythunkpos292= ctx->thunkpos; if (!yymatchChar(ctx, '-')) goto l292; goto l291; + l292:; ctx->pos= yypos292; ctx->thunkpos= yythunkpos292; + } + } + l287:; if (!yy_Newline(ctx)) goto l286; goto l282; + l286:; ctx->pos= yypos286; ctx->thunkpos= yythunkpos286; + } yyDo(ctx, yy_1_NormalEndline, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "NormalEndline", ctx->buf+ctx->pos)); + return 1; + l282:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "NormalEndline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_TerminalEndline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "TerminalEndline")); if (!yy_Sp(ctx)) goto l293; if (!yy_Newline(ctx)) goto l293; if (!yy_Eof(ctx)) goto l293; yyDo(ctx, yy_1_TerminalEndline, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "TerminalEndline", ctx->buf+ctx->pos)); + return 1; + l293:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "TerminalEndline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_LineBreak(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "LineBreak")); if (!yymatchString(ctx, " ")) goto l294; if (!yy_NormalEndline(ctx)) goto l294; yyDo(ctx, yy_1_LineBreak, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "LineBreak", ctx->buf+ctx->pos)); + return 1; + l294:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "LineBreak", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_CharEntity(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "CharEntity")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l295; if (!yymatchChar(ctx, '&')) goto l295; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l295; + l296:; + { int yypos297= ctx->pos, yythunkpos297= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l297; goto l296; + l297:; ctx->pos= yypos297; ctx->thunkpos= yythunkpos297; + } if (!yymatchChar(ctx, ';')) goto l295; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l295; + yyprintf((stderr, " ok %s @ %s\n", "CharEntity", ctx->buf+ctx->pos)); + return 1; + l295:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "CharEntity", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_DecEntity(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "DecEntity")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l298; if (!yymatchChar(ctx, '&')) goto l298; if (!yymatchChar(ctx, '#')) goto l298; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l298; + l299:; + { int yypos300= ctx->pos, yythunkpos300= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l300; goto l299; + l300:; ctx->pos= yypos300; ctx->thunkpos= yythunkpos300; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l298; if (!yymatchChar(ctx, ';')) goto l298; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l298; + yyprintf((stderr, " ok %s @ %s\n", "DecEntity", ctx->buf+ctx->pos)); + return 1; + l298:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "DecEntity", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HexEntity(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HexEntity")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l301; if (!yymatchChar(ctx, '&')) goto l301; if (!yymatchChar(ctx, '#')) goto l301; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\000\000\000\001\000\000\000\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l301; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l301; + l302:; + { int yypos303= ctx->pos, yythunkpos303= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l303; goto l302; + l303:; ctx->pos= yypos303; ctx->thunkpos= yythunkpos303; + } if (!yymatchChar(ctx, ';')) goto l301; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l301; + yyprintf((stderr, " ok %s @ %s\n", "HexEntity", ctx->buf+ctx->pos)); + return 1; + l301:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HexEntity", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AposChunk(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AposChunk")); yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_SMART) )) goto l304; if (!yymatchChar(ctx, '\'')) goto l304; + { int yypos305= ctx->pos, yythunkpos305= ctx->thunkpos; if (!yy_Alphanumeric(ctx)) goto l304; ctx->pos= yypos305; ctx->thunkpos= yythunkpos305; + } yyDo(ctx, yy_1_AposChunk, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "AposChunk", ctx->buf+ctx->pos)); + return 1; + l304:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AposChunk", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Alphanumeric(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Alphanumeric")); + { int yypos307= ctx->pos, yythunkpos307= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l308; goto l307; + l308:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\200")) goto l309; goto l307; + l309:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\201")) goto l310; goto l307; + l310:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\202")) goto l311; goto l307; + l311:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\203")) goto l312; goto l307; + l312:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\204")) goto l313; goto l307; + l313:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\205")) goto l314; goto l307; + l314:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\206")) goto l315; goto l307; + l315:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\207")) goto l316; goto l307; + l316:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\210")) goto l317; goto l307; + l317:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\211")) goto l318; goto l307; + l318:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\212")) goto l319; goto l307; + l319:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\213")) goto l320; goto l307; + l320:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\214")) goto l321; goto l307; + l321:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\215")) goto l322; goto l307; + l322:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\216")) goto l323; goto l307; + l323:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\217")) goto l324; goto l307; + l324:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\220")) goto l325; goto l307; + l325:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\221")) goto l326; goto l307; + l326:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\222")) goto l327; goto l307; + l327:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\223")) goto l328; goto l307; + l328:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\224")) goto l329; goto l307; + l329:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\225")) goto l330; goto l307; + l330:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\226")) goto l331; goto l307; + l331:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\227")) goto l332; goto l307; + l332:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\230")) goto l333; goto l307; + l333:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\231")) goto l334; goto l307; + l334:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\232")) goto l335; goto l307; + l335:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\233")) goto l336; goto l307; + l336:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\234")) goto l337; goto l307; + l337:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\235")) goto l338; goto l307; + l338:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\236")) goto l339; goto l307; + l339:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\237")) goto l340; goto l307; + l340:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\240")) goto l341; goto l307; + l341:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\241")) goto l342; goto l307; + l342:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\242")) goto l343; goto l307; + l343:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\243")) goto l344; goto l307; + l344:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\244")) goto l345; goto l307; + l345:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\245")) goto l346; goto l307; + l346:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\246")) goto l347; goto l307; + l347:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\247")) goto l348; goto l307; + l348:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\250")) goto l349; goto l307; + l349:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\251")) goto l350; goto l307; + l350:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\252")) goto l351; goto l307; + l351:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\253")) goto l352; goto l307; + l352:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\254")) goto l353; goto l307; + l353:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\255")) goto l354; goto l307; + l354:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\256")) goto l355; goto l307; + l355:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\257")) goto l356; goto l307; + l356:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\260")) goto l357; goto l307; + l357:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\261")) goto l358; goto l307; + l358:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\262")) goto l359; goto l307; + l359:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\263")) goto l360; goto l307; + l360:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\264")) goto l361; goto l307; + l361:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\265")) goto l362; goto l307; + l362:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\266")) goto l363; goto l307; + l363:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\267")) goto l364; goto l307; + l364:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\270")) goto l365; goto l307; + l365:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\271")) goto l366; goto l307; + l366:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\272")) goto l367; goto l307; + l367:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\273")) goto l368; goto l307; + l368:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\274")) goto l369; goto l307; + l369:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\275")) goto l370; goto l307; + l370:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\276")) goto l371; goto l307; + l371:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\277")) goto l372; goto l307; + l372:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\300")) goto l373; goto l307; + l373:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\301")) goto l374; goto l307; + l374:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\302")) goto l375; goto l307; + l375:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\303")) goto l376; goto l307; + l376:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\304")) goto l377; goto l307; + l377:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\305")) goto l378; goto l307; + l378:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\306")) goto l379; goto l307; + l379:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\307")) goto l380; goto l307; + l380:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\310")) goto l381; goto l307; + l381:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\311")) goto l382; goto l307; + l382:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\312")) goto l383; goto l307; + l383:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\313")) goto l384; goto l307; + l384:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\314")) goto l385; goto l307; + l385:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\315")) goto l386; goto l307; + l386:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\316")) goto l387; goto l307; + l387:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\317")) goto l388; goto l307; + l388:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\320")) goto l389; goto l307; + l389:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\321")) goto l390; goto l307; + l390:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\322")) goto l391; goto l307; + l391:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\323")) goto l392; goto l307; + l392:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\324")) goto l393; goto l307; + l393:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\325")) goto l394; goto l307; + l394:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\326")) goto l395; goto l307; + l395:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\327")) goto l396; goto l307; + l396:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\330")) goto l397; goto l307; + l397:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\331")) goto l398; goto l307; + l398:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\332")) goto l399; goto l307; + l399:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\333")) goto l400; goto l307; + l400:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\334")) goto l401; goto l307; + l401:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\335")) goto l402; goto l307; + l402:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\336")) goto l403; goto l307; + l403:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\337")) goto l404; goto l307; + l404:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\340")) goto l405; goto l307; + l405:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\341")) goto l406; goto l307; + l406:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\342")) goto l407; goto l307; + l407:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\343")) goto l408; goto l307; + l408:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\344")) goto l409; goto l307; + l409:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\345")) goto l410; goto l307; + l410:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\346")) goto l411; goto l307; + l411:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\347")) goto l412; goto l307; + l412:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\350")) goto l413; goto l307; + l413:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\351")) goto l414; goto l307; + l414:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\352")) goto l415; goto l307; + l415:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\353")) goto l416; goto l307; + l416:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\354")) goto l417; goto l307; + l417:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\355")) goto l418; goto l307; + l418:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\356")) goto l419; goto l307; + l419:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\357")) goto l420; goto l307; + l420:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\360")) goto l421; goto l307; + l421:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\361")) goto l422; goto l307; + l422:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\362")) goto l423; goto l307; + l423:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\363")) goto l424; goto l307; + l424:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\364")) goto l425; goto l307; + l425:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\365")) goto l426; goto l307; + l426:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\366")) goto l427; goto l307; + l427:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\367")) goto l428; goto l307; + l428:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\370")) goto l429; goto l307; + l429:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\371")) goto l430; goto l307; + l430:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\372")) goto l431; goto l307; + l431:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\373")) goto l432; goto l307; + l432:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\374")) goto l433; goto l307; + l433:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\375")) goto l434; goto l307; + l434:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\376")) goto l435; goto l307; + l435:; ctx->pos= yypos307; ctx->thunkpos= yythunkpos307; if (!yymatchString(ctx, "\377")) goto l306; + } + l307:; + yyprintf((stderr, " ok %s @ %s\n", "Alphanumeric", ctx->buf+ctx->pos)); + return 1; + l306:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Alphanumeric", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StrChunk(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StrChunk")); + { int yypos437= ctx->pos, yythunkpos437= ctx->thunkpos; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l438; + { int yypos441= ctx->pos, yythunkpos441= ctx->thunkpos; if (!yy_NormalChar(ctx)) goto l442; goto l441; + l442:; ctx->pos= yypos441; ctx->thunkpos= yythunkpos441; if (!yymatchChar(ctx, '_')) goto l438; + l443:; + { int yypos444= ctx->pos, yythunkpos444= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l444; goto l443; + l444:; ctx->pos= yypos444; ctx->thunkpos= yythunkpos444; + } + { int yypos445= ctx->pos, yythunkpos445= ctx->thunkpos; if (!yy_Alphanumeric(ctx)) goto l438; ctx->pos= yypos445; ctx->thunkpos= yythunkpos445; + } + } + l441:; + l439:; + { int yypos440= ctx->pos, yythunkpos440= ctx->thunkpos; + { int yypos446= ctx->pos, yythunkpos446= ctx->thunkpos; if (!yy_NormalChar(ctx)) goto l447; goto l446; + l447:; ctx->pos= yypos446; ctx->thunkpos= yythunkpos446; if (!yymatchChar(ctx, '_')) goto l440; + l448:; + { int yypos449= ctx->pos, yythunkpos449= ctx->thunkpos; if (!yymatchChar(ctx, '_')) goto l449; goto l448; + l449:; ctx->pos= yypos449; ctx->thunkpos= yythunkpos449; + } + { int yypos450= ctx->pos, yythunkpos450= ctx->thunkpos; if (!yy_Alphanumeric(ctx)) goto l440; ctx->pos= yypos450; ctx->thunkpos= yythunkpos450; + } + } + l446:; goto l439; + l440:; ctx->pos= yypos440; ctx->thunkpos= yythunkpos440; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l438; yyDo(ctx, yy_1_StrChunk, ctx->begin, ctx->end); goto l437; + l438:; ctx->pos= yypos437; ctx->thunkpos= yythunkpos437; if (!yy_AposChunk(ctx)) goto l436; + } + l437:; + yyprintf((stderr, " ok %s @ %s\n", "StrChunk", ctx->buf+ctx->pos)); + return 1; + l436:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StrChunk", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_NormalChar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "NormalChar")); + { int yypos452= ctx->pos, yythunkpos452= ctx->thunkpos; + { int yypos453= ctx->pos, yythunkpos453= ctx->thunkpos; if (!yy_SpecialChar(ctx)) goto l454; goto l453; + l454:; ctx->pos= yypos453; ctx->thunkpos= yythunkpos453; if (!yy_Spacechar(ctx)) goto l455; goto l453; + l455:; ctx->pos= yypos453; ctx->thunkpos= yythunkpos453; if (!yy_Newline(ctx)) goto l452; + } + l453:; goto l451; + l452:; ctx->pos= yypos452; ctx->thunkpos= yythunkpos452; + } if (!yymatchDot(ctx)) goto l451; + yyprintf((stderr, " ok %s @ %s\n", "NormalChar", ctx->buf+ctx->pos)); + return 1; + l451:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "NormalChar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Symbol(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Symbol")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l456; if (!yy_SpecialChar(ctx)) goto l456; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l456; yyDo(ctx, yy_1_Symbol, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Symbol", ctx->buf+ctx->pos)); + return 1; + l456:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Symbol", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Smart(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Smart")); yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_SMART) )) goto l457; + { int yypos458= ctx->pos, yythunkpos458= ctx->thunkpos; if (!yy_Ellipsis(ctx)) goto l459; goto l458; + l459:; ctx->pos= yypos458; ctx->thunkpos= yythunkpos458; if (!yy_Dash(ctx)) goto l460; goto l458; + l460:; ctx->pos= yypos458; ctx->thunkpos= yythunkpos458; if (!yy_SingleQuoted(ctx)) goto l461; goto l458; + l461:; ctx->pos= yypos458; ctx->thunkpos= yythunkpos458; if (!yy_DoubleQuoted(ctx)) goto l462; goto l458; + l462:; ctx->pos= yypos458; ctx->thunkpos= yythunkpos458; if (!yy_Apostrophe(ctx)) goto l457; + } + l458:; + yyprintf((stderr, " ok %s @ %s\n", "Smart", ctx->buf+ctx->pos)); + return 1; + l457:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Smart", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_EscapedChar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "EscapedChar")); if (!yymatchChar(ctx, '\\')) goto l463; + { int yypos464= ctx->pos, yythunkpos464= ctx->thunkpos; if (!yy_Newline(ctx)) goto l464; goto l463; + l464:; ctx->pos= yypos464; ctx->thunkpos= yythunkpos464; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l463; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\012\157\000\120\000\000\000\270\001\000\000\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l463; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l463; yyDo(ctx, yy_1_EscapedChar, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "EscapedChar", ctx->buf+ctx->pos)); + return 1; + l463:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "EscapedChar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Entity(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Entity")); + { int yypos466= ctx->pos, yythunkpos466= ctx->thunkpos; if (!yy_HexEntity(ctx)) goto l467; goto l466; + l467:; ctx->pos= yypos466; ctx->thunkpos= yythunkpos466; if (!yy_DecEntity(ctx)) goto l468; goto l466; + l468:; ctx->pos= yypos466; ctx->thunkpos= yythunkpos466; if (!yy_CharEntity(ctx)) goto l465; + } + l466:; yyDo(ctx, yy_1_Entity, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Entity", ctx->buf+ctx->pos)); + return 1; + l465:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Entity", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RawHtml(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RawHtml")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l469; + { int yypos470= ctx->pos, yythunkpos470= ctx->thunkpos; if (!yy_HtmlComment(ctx)) goto l471; goto l470; + l471:; ctx->pos= yypos470; ctx->thunkpos= yythunkpos470; if (!yy_HtmlBlockScript(ctx)) goto l472; goto l470; + l472:; ctx->pos= yypos470; ctx->thunkpos= yythunkpos470; if (!yy_HtmlTag(ctx)) goto l469; + } + l470:; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l469; yyDo(ctx, yy_1_RawHtml, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "RawHtml", ctx->buf+ctx->pos)); + return 1; + l469:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RawHtml", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Code(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Code")); + { int yypos474= ctx->pos, yythunkpos474= ctx->thunkpos; if (!yy_Ticks1(ctx)) goto l475; if (!yy_Sp(ctx)) goto l475; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l475; + { int yypos478= ctx->pos, yythunkpos478= ctx->thunkpos; + { int yypos482= ctx->pos, yythunkpos482= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l482; goto l479; + l482:; ctx->pos= yypos482; ctx->thunkpos= yythunkpos482; + } if (!yy_Nonspacechar(ctx)) goto l479; + l480:; + { int yypos481= ctx->pos, yythunkpos481= ctx->thunkpos; + { int yypos483= ctx->pos, yythunkpos483= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l483; goto l481; + l483:; ctx->pos= yypos483; ctx->thunkpos= yythunkpos483; + } if (!yy_Nonspacechar(ctx)) goto l481; goto l480; + l481:; ctx->pos= yypos481; ctx->thunkpos= yythunkpos481; + } goto l478; + l479:; ctx->pos= yypos478; ctx->thunkpos= yythunkpos478; + { int yypos485= ctx->pos, yythunkpos485= ctx->thunkpos; if (!yy_Ticks1(ctx)) goto l485; goto l484; + l485:; ctx->pos= yypos485; ctx->thunkpos= yythunkpos485; + } if (!yymatchChar(ctx, '`')) goto l484; + l486:; + { int yypos487= ctx->pos, yythunkpos487= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l487; goto l486; + l487:; ctx->pos= yypos487; ctx->thunkpos= yythunkpos487; + } goto l478; + l484:; ctx->pos= yypos478; ctx->thunkpos= yythunkpos478; + { int yypos488= ctx->pos, yythunkpos488= ctx->thunkpos; if (!yy_Sp(ctx)) goto l488; if (!yy_Ticks1(ctx)) goto l488; goto l475; + l488:; ctx->pos= yypos488; ctx->thunkpos= yythunkpos488; + } + { int yypos489= ctx->pos, yythunkpos489= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l490; goto l489; + l490:; ctx->pos= yypos489; ctx->thunkpos= yythunkpos489; if (!yy_Newline(ctx)) goto l475; + { int yypos491= ctx->pos, yythunkpos491= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l491; goto l475; + l491:; ctx->pos= yypos491; ctx->thunkpos= yythunkpos491; + } + } + l489:; + } + l478:; + l476:; + { int yypos477= ctx->pos, yythunkpos477= ctx->thunkpos; + { int yypos492= ctx->pos, yythunkpos492= ctx->thunkpos; + { int yypos496= ctx->pos, yythunkpos496= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l496; goto l493; + l496:; ctx->pos= yypos496; ctx->thunkpos= yythunkpos496; + } if (!yy_Nonspacechar(ctx)) goto l493; + l494:; + { int yypos495= ctx->pos, yythunkpos495= ctx->thunkpos; + { int yypos497= ctx->pos, yythunkpos497= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l497; goto l495; + l497:; ctx->pos= yypos497; ctx->thunkpos= yythunkpos497; + } if (!yy_Nonspacechar(ctx)) goto l495; goto l494; + l495:; ctx->pos= yypos495; ctx->thunkpos= yythunkpos495; + } goto l492; + l493:; ctx->pos= yypos492; ctx->thunkpos= yythunkpos492; + { int yypos499= ctx->pos, yythunkpos499= ctx->thunkpos; if (!yy_Ticks1(ctx)) goto l499; goto l498; + l499:; ctx->pos= yypos499; ctx->thunkpos= yythunkpos499; + } if (!yymatchChar(ctx, '`')) goto l498; + l500:; + { int yypos501= ctx->pos, yythunkpos501= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l501; goto l500; + l501:; ctx->pos= yypos501; ctx->thunkpos= yythunkpos501; + } goto l492; + l498:; ctx->pos= yypos492; ctx->thunkpos= yythunkpos492; + { int yypos502= ctx->pos, yythunkpos502= ctx->thunkpos; if (!yy_Sp(ctx)) goto l502; if (!yy_Ticks1(ctx)) goto l502; goto l477; + l502:; ctx->pos= yypos502; ctx->thunkpos= yythunkpos502; + } + { int yypos503= ctx->pos, yythunkpos503= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l504; goto l503; + l504:; ctx->pos= yypos503; ctx->thunkpos= yythunkpos503; if (!yy_Newline(ctx)) goto l477; + { int yypos505= ctx->pos, yythunkpos505= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l505; goto l477; + l505:; ctx->pos= yypos505; ctx->thunkpos= yythunkpos505; + } + } + l503:; + } + l492:; goto l476; + l477:; ctx->pos= yypos477; ctx->thunkpos= yythunkpos477; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l475; if (!yy_Sp(ctx)) goto l475; if (!yy_Ticks1(ctx)) goto l475; goto l474; + l475:; ctx->pos= yypos474; ctx->thunkpos= yythunkpos474; if (!yy_Ticks2(ctx)) goto l506; if (!yy_Sp(ctx)) goto l506; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l506; + { int yypos509= ctx->pos, yythunkpos509= ctx->thunkpos; + { int yypos513= ctx->pos, yythunkpos513= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l513; goto l510; + l513:; ctx->pos= yypos513; ctx->thunkpos= yythunkpos513; + } if (!yy_Nonspacechar(ctx)) goto l510; + l511:; + { int yypos512= ctx->pos, yythunkpos512= ctx->thunkpos; + { int yypos514= ctx->pos, yythunkpos514= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l514; goto l512; + l514:; ctx->pos= yypos514; ctx->thunkpos= yythunkpos514; + } if (!yy_Nonspacechar(ctx)) goto l512; goto l511; + l512:; ctx->pos= yypos512; ctx->thunkpos= yythunkpos512; + } goto l509; + l510:; ctx->pos= yypos509; ctx->thunkpos= yythunkpos509; + { int yypos516= ctx->pos, yythunkpos516= ctx->thunkpos; if (!yy_Ticks2(ctx)) goto l516; goto l515; + l516:; ctx->pos= yypos516; ctx->thunkpos= yythunkpos516; + } if (!yymatchChar(ctx, '`')) goto l515; + l517:; + { int yypos518= ctx->pos, yythunkpos518= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l518; goto l517; + l518:; ctx->pos= yypos518; ctx->thunkpos= yythunkpos518; + } goto l509; + l515:; ctx->pos= yypos509; ctx->thunkpos= yythunkpos509; + { int yypos519= ctx->pos, yythunkpos519= ctx->thunkpos; if (!yy_Sp(ctx)) goto l519; if (!yy_Ticks2(ctx)) goto l519; goto l506; + l519:; ctx->pos= yypos519; ctx->thunkpos= yythunkpos519; + } + { int yypos520= ctx->pos, yythunkpos520= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l521; goto l520; + l521:; ctx->pos= yypos520; ctx->thunkpos= yythunkpos520; if (!yy_Newline(ctx)) goto l506; + { int yypos522= ctx->pos, yythunkpos522= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l522; goto l506; + l522:; ctx->pos= yypos522; ctx->thunkpos= yythunkpos522; + } + } + l520:; + } + l509:; + l507:; + { int yypos508= ctx->pos, yythunkpos508= ctx->thunkpos; + { int yypos523= ctx->pos, yythunkpos523= ctx->thunkpos; + { int yypos527= ctx->pos, yythunkpos527= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l527; goto l524; + l527:; ctx->pos= yypos527; ctx->thunkpos= yythunkpos527; + } if (!yy_Nonspacechar(ctx)) goto l524; + l525:; + { int yypos526= ctx->pos, yythunkpos526= ctx->thunkpos; + { int yypos528= ctx->pos, yythunkpos528= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l528; goto l526; + l528:; ctx->pos= yypos528; ctx->thunkpos= yythunkpos528; + } if (!yy_Nonspacechar(ctx)) goto l526; goto l525; + l526:; ctx->pos= yypos526; ctx->thunkpos= yythunkpos526; + } goto l523; + l524:; ctx->pos= yypos523; ctx->thunkpos= yythunkpos523; + { int yypos530= ctx->pos, yythunkpos530= ctx->thunkpos; if (!yy_Ticks2(ctx)) goto l530; goto l529; + l530:; ctx->pos= yypos530; ctx->thunkpos= yythunkpos530; + } if (!yymatchChar(ctx, '`')) goto l529; + l531:; + { int yypos532= ctx->pos, yythunkpos532= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l532; goto l531; + l532:; ctx->pos= yypos532; ctx->thunkpos= yythunkpos532; + } goto l523; + l529:; ctx->pos= yypos523; ctx->thunkpos= yythunkpos523; + { int yypos533= ctx->pos, yythunkpos533= ctx->thunkpos; if (!yy_Sp(ctx)) goto l533; if (!yy_Ticks2(ctx)) goto l533; goto l508; + l533:; ctx->pos= yypos533; ctx->thunkpos= yythunkpos533; + } + { int yypos534= ctx->pos, yythunkpos534= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l535; goto l534; + l535:; ctx->pos= yypos534; ctx->thunkpos= yythunkpos534; if (!yy_Newline(ctx)) goto l508; + { int yypos536= ctx->pos, yythunkpos536= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l536; goto l508; + l536:; ctx->pos= yypos536; ctx->thunkpos= yythunkpos536; + } + } + l534:; + } + l523:; goto l507; + l508:; ctx->pos= yypos508; ctx->thunkpos= yythunkpos508; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l506; if (!yy_Sp(ctx)) goto l506; if (!yy_Ticks2(ctx)) goto l506; goto l474; + l506:; ctx->pos= yypos474; ctx->thunkpos= yythunkpos474; if (!yy_Ticks3(ctx)) goto l537; if (!yy_Sp(ctx)) goto l537; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l537; + { int yypos540= ctx->pos, yythunkpos540= ctx->thunkpos; + { int yypos544= ctx->pos, yythunkpos544= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l544; goto l541; + l544:; ctx->pos= yypos544; ctx->thunkpos= yythunkpos544; + } if (!yy_Nonspacechar(ctx)) goto l541; + l542:; + { int yypos543= ctx->pos, yythunkpos543= ctx->thunkpos; + { int yypos545= ctx->pos, yythunkpos545= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l545; goto l543; + l545:; ctx->pos= yypos545; ctx->thunkpos= yythunkpos545; + } if (!yy_Nonspacechar(ctx)) goto l543; goto l542; + l543:; ctx->pos= yypos543; ctx->thunkpos= yythunkpos543; + } goto l540; + l541:; ctx->pos= yypos540; ctx->thunkpos= yythunkpos540; + { int yypos547= ctx->pos, yythunkpos547= ctx->thunkpos; if (!yy_Ticks3(ctx)) goto l547; goto l546; + l547:; ctx->pos= yypos547; ctx->thunkpos= yythunkpos547; + } if (!yymatchChar(ctx, '`')) goto l546; + l548:; + { int yypos549= ctx->pos, yythunkpos549= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l549; goto l548; + l549:; ctx->pos= yypos549; ctx->thunkpos= yythunkpos549; + } goto l540; + l546:; ctx->pos= yypos540; ctx->thunkpos= yythunkpos540; + { int yypos550= ctx->pos, yythunkpos550= ctx->thunkpos; if (!yy_Sp(ctx)) goto l550; if (!yy_Ticks3(ctx)) goto l550; goto l537; + l550:; ctx->pos= yypos550; ctx->thunkpos= yythunkpos550; + } + { int yypos551= ctx->pos, yythunkpos551= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l552; goto l551; + l552:; ctx->pos= yypos551; ctx->thunkpos= yythunkpos551; if (!yy_Newline(ctx)) goto l537; + { int yypos553= ctx->pos, yythunkpos553= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l553; goto l537; + l553:; ctx->pos= yypos553; ctx->thunkpos= yythunkpos553; + } + } + l551:; + } + l540:; + l538:; + { int yypos539= ctx->pos, yythunkpos539= ctx->thunkpos; + { int yypos554= ctx->pos, yythunkpos554= ctx->thunkpos; + { int yypos558= ctx->pos, yythunkpos558= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l558; goto l555; + l558:; ctx->pos= yypos558; ctx->thunkpos= yythunkpos558; + } if (!yy_Nonspacechar(ctx)) goto l555; + l556:; + { int yypos557= ctx->pos, yythunkpos557= ctx->thunkpos; + { int yypos559= ctx->pos, yythunkpos559= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l559; goto l557; + l559:; ctx->pos= yypos559; ctx->thunkpos= yythunkpos559; + } if (!yy_Nonspacechar(ctx)) goto l557; goto l556; + l557:; ctx->pos= yypos557; ctx->thunkpos= yythunkpos557; + } goto l554; + l555:; ctx->pos= yypos554; ctx->thunkpos= yythunkpos554; + { int yypos561= ctx->pos, yythunkpos561= ctx->thunkpos; if (!yy_Ticks3(ctx)) goto l561; goto l560; + l561:; ctx->pos= yypos561; ctx->thunkpos= yythunkpos561; + } if (!yymatchChar(ctx, '`')) goto l560; + l562:; + { int yypos563= ctx->pos, yythunkpos563= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l563; goto l562; + l563:; ctx->pos= yypos563; ctx->thunkpos= yythunkpos563; + } goto l554; + l560:; ctx->pos= yypos554; ctx->thunkpos= yythunkpos554; + { int yypos564= ctx->pos, yythunkpos564= ctx->thunkpos; if (!yy_Sp(ctx)) goto l564; if (!yy_Ticks3(ctx)) goto l564; goto l539; + l564:; ctx->pos= yypos564; ctx->thunkpos= yythunkpos564; + } + { int yypos565= ctx->pos, yythunkpos565= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l566; goto l565; + l566:; ctx->pos= yypos565; ctx->thunkpos= yythunkpos565; if (!yy_Newline(ctx)) goto l539; + { int yypos567= ctx->pos, yythunkpos567= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l567; goto l539; + l567:; ctx->pos= yypos567; ctx->thunkpos= yythunkpos567; + } + } + l565:; + } + l554:; goto l538; + l539:; ctx->pos= yypos539; ctx->thunkpos= yythunkpos539; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l537; if (!yy_Sp(ctx)) goto l537; if (!yy_Ticks3(ctx)) goto l537; goto l474; + l537:; ctx->pos= yypos474; ctx->thunkpos= yythunkpos474; if (!yy_Ticks4(ctx)) goto l568; if (!yy_Sp(ctx)) goto l568; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l568; + { int yypos571= ctx->pos, yythunkpos571= ctx->thunkpos; + { int yypos575= ctx->pos, yythunkpos575= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l575; goto l572; + l575:; ctx->pos= yypos575; ctx->thunkpos= yythunkpos575; + } if (!yy_Nonspacechar(ctx)) goto l572; + l573:; + { int yypos574= ctx->pos, yythunkpos574= ctx->thunkpos; + { int yypos576= ctx->pos, yythunkpos576= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l576; goto l574; + l576:; ctx->pos= yypos576; ctx->thunkpos= yythunkpos576; + } if (!yy_Nonspacechar(ctx)) goto l574; goto l573; + l574:; ctx->pos= yypos574; ctx->thunkpos= yythunkpos574; + } goto l571; + l572:; ctx->pos= yypos571; ctx->thunkpos= yythunkpos571; + { int yypos578= ctx->pos, yythunkpos578= ctx->thunkpos; if (!yy_Ticks4(ctx)) goto l578; goto l577; + l578:; ctx->pos= yypos578; ctx->thunkpos= yythunkpos578; + } if (!yymatchChar(ctx, '`')) goto l577; + l579:; + { int yypos580= ctx->pos, yythunkpos580= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l580; goto l579; + l580:; ctx->pos= yypos580; ctx->thunkpos= yythunkpos580; + } goto l571; + l577:; ctx->pos= yypos571; ctx->thunkpos= yythunkpos571; + { int yypos581= ctx->pos, yythunkpos581= ctx->thunkpos; if (!yy_Sp(ctx)) goto l581; if (!yy_Ticks4(ctx)) goto l581; goto l568; + l581:; ctx->pos= yypos581; ctx->thunkpos= yythunkpos581; + } + { int yypos582= ctx->pos, yythunkpos582= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l583; goto l582; + l583:; ctx->pos= yypos582; ctx->thunkpos= yythunkpos582; if (!yy_Newline(ctx)) goto l568; + { int yypos584= ctx->pos, yythunkpos584= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l584; goto l568; + l584:; ctx->pos= yypos584; ctx->thunkpos= yythunkpos584; + } + } + l582:; + } + l571:; + l569:; + { int yypos570= ctx->pos, yythunkpos570= ctx->thunkpos; + { int yypos585= ctx->pos, yythunkpos585= ctx->thunkpos; + { int yypos589= ctx->pos, yythunkpos589= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l589; goto l586; + l589:; ctx->pos= yypos589; ctx->thunkpos= yythunkpos589; + } if (!yy_Nonspacechar(ctx)) goto l586; + l587:; + { int yypos588= ctx->pos, yythunkpos588= ctx->thunkpos; + { int yypos590= ctx->pos, yythunkpos590= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l590; goto l588; + l590:; ctx->pos= yypos590; ctx->thunkpos= yythunkpos590; + } if (!yy_Nonspacechar(ctx)) goto l588; goto l587; + l588:; ctx->pos= yypos588; ctx->thunkpos= yythunkpos588; + } goto l585; + l586:; ctx->pos= yypos585; ctx->thunkpos= yythunkpos585; + { int yypos592= ctx->pos, yythunkpos592= ctx->thunkpos; if (!yy_Ticks4(ctx)) goto l592; goto l591; + l592:; ctx->pos= yypos592; ctx->thunkpos= yythunkpos592; + } if (!yymatchChar(ctx, '`')) goto l591; + l593:; + { int yypos594= ctx->pos, yythunkpos594= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l594; goto l593; + l594:; ctx->pos= yypos594; ctx->thunkpos= yythunkpos594; + } goto l585; + l591:; ctx->pos= yypos585; ctx->thunkpos= yythunkpos585; + { int yypos595= ctx->pos, yythunkpos595= ctx->thunkpos; if (!yy_Sp(ctx)) goto l595; if (!yy_Ticks4(ctx)) goto l595; goto l570; + l595:; ctx->pos= yypos595; ctx->thunkpos= yythunkpos595; + } + { int yypos596= ctx->pos, yythunkpos596= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l597; goto l596; + l597:; ctx->pos= yypos596; ctx->thunkpos= yythunkpos596; if (!yy_Newline(ctx)) goto l570; + { int yypos598= ctx->pos, yythunkpos598= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l598; goto l570; + l598:; ctx->pos= yypos598; ctx->thunkpos= yythunkpos598; + } + } + l596:; + } + l585:; goto l569; + l570:; ctx->pos= yypos570; ctx->thunkpos= yythunkpos570; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l568; if (!yy_Sp(ctx)) goto l568; if (!yy_Ticks4(ctx)) goto l568; goto l474; + l568:; ctx->pos= yypos474; ctx->thunkpos= yythunkpos474; if (!yy_Ticks5(ctx)) goto l473; if (!yy_Sp(ctx)) goto l473; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l473; + { int yypos601= ctx->pos, yythunkpos601= ctx->thunkpos; + { int yypos605= ctx->pos, yythunkpos605= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l605; goto l602; + l605:; ctx->pos= yypos605; ctx->thunkpos= yythunkpos605; + } if (!yy_Nonspacechar(ctx)) goto l602; + l603:; + { int yypos604= ctx->pos, yythunkpos604= ctx->thunkpos; + { int yypos606= ctx->pos, yythunkpos606= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l606; goto l604; + l606:; ctx->pos= yypos606; ctx->thunkpos= yythunkpos606; + } if (!yy_Nonspacechar(ctx)) goto l604; goto l603; + l604:; ctx->pos= yypos604; ctx->thunkpos= yythunkpos604; + } goto l601; + l602:; ctx->pos= yypos601; ctx->thunkpos= yythunkpos601; + { int yypos608= ctx->pos, yythunkpos608= ctx->thunkpos; if (!yy_Ticks5(ctx)) goto l608; goto l607; + l608:; ctx->pos= yypos608; ctx->thunkpos= yythunkpos608; + } if (!yymatchChar(ctx, '`')) goto l607; + l609:; + { int yypos610= ctx->pos, yythunkpos610= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l610; goto l609; + l610:; ctx->pos= yypos610; ctx->thunkpos= yythunkpos610; + } goto l601; + l607:; ctx->pos= yypos601; ctx->thunkpos= yythunkpos601; + { int yypos611= ctx->pos, yythunkpos611= ctx->thunkpos; if (!yy_Sp(ctx)) goto l611; if (!yy_Ticks5(ctx)) goto l611; goto l473; + l611:; ctx->pos= yypos611; ctx->thunkpos= yythunkpos611; + } + { int yypos612= ctx->pos, yythunkpos612= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l613; goto l612; + l613:; ctx->pos= yypos612; ctx->thunkpos= yythunkpos612; if (!yy_Newline(ctx)) goto l473; + { int yypos614= ctx->pos, yythunkpos614= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l614; goto l473; + l614:; ctx->pos= yypos614; ctx->thunkpos= yythunkpos614; + } + } + l612:; + } + l601:; + l599:; + { int yypos600= ctx->pos, yythunkpos600= ctx->thunkpos; + { int yypos615= ctx->pos, yythunkpos615= ctx->thunkpos; + { int yypos619= ctx->pos, yythunkpos619= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l619; goto l616; + l619:; ctx->pos= yypos619; ctx->thunkpos= yythunkpos619; + } if (!yy_Nonspacechar(ctx)) goto l616; + l617:; + { int yypos618= ctx->pos, yythunkpos618= ctx->thunkpos; + { int yypos620= ctx->pos, yythunkpos620= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l620; goto l618; + l620:; ctx->pos= yypos620; ctx->thunkpos= yythunkpos620; + } if (!yy_Nonspacechar(ctx)) goto l618; goto l617; + l618:; ctx->pos= yypos618; ctx->thunkpos= yythunkpos618; + } goto l615; + l616:; ctx->pos= yypos615; ctx->thunkpos= yythunkpos615; + { int yypos622= ctx->pos, yythunkpos622= ctx->thunkpos; if (!yy_Ticks5(ctx)) goto l622; goto l621; + l622:; ctx->pos= yypos622; ctx->thunkpos= yythunkpos622; + } if (!yymatchChar(ctx, '`')) goto l621; + l623:; + { int yypos624= ctx->pos, yythunkpos624= ctx->thunkpos; if (!yymatchChar(ctx, '`')) goto l624; goto l623; + l624:; ctx->pos= yypos624; ctx->thunkpos= yythunkpos624; + } goto l615; + l621:; ctx->pos= yypos615; ctx->thunkpos= yythunkpos615; + { int yypos625= ctx->pos, yythunkpos625= ctx->thunkpos; if (!yy_Sp(ctx)) goto l625; if (!yy_Ticks5(ctx)) goto l625; goto l600; + l625:; ctx->pos= yypos625; ctx->thunkpos= yythunkpos625; + } + { int yypos626= ctx->pos, yythunkpos626= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l627; goto l626; + l627:; ctx->pos= yypos626; ctx->thunkpos= yythunkpos626; if (!yy_Newline(ctx)) goto l600; + { int yypos628= ctx->pos, yythunkpos628= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l628; goto l600; + l628:; ctx->pos= yypos628; ctx->thunkpos= yythunkpos628; + } + } + l626:; + } + l615:; goto l599; + l600:; ctx->pos= yypos600; ctx->thunkpos= yythunkpos600; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l473; if (!yy_Sp(ctx)) goto l473; if (!yy_Ticks5(ctx)) goto l473; + } + l474:; yyDo(ctx, yy_1_Code, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Code", ctx->buf+ctx->pos)); + return 1; + l473:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Code", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_InlineNote(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "InlineNote")); yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_NOTES) )) goto l629; if (!yymatchString(ctx, "^[")) goto l629; if (!yy_StartList(ctx)) goto l629; yyDo(ctx, yySet, -1, 0); + { int yypos632= ctx->pos, yythunkpos632= ctx->thunkpos; if (!yymatchChar(ctx, ']')) goto l632; goto l629; + l632:; ctx->pos= yypos632; ctx->thunkpos= yythunkpos632; + } if (!yy_Inline(ctx)) goto l629; yyDo(ctx, yy_1_InlineNote, ctx->begin, ctx->end); + l630:; + { int yypos631= ctx->pos, yythunkpos631= ctx->thunkpos; + { int yypos633= ctx->pos, yythunkpos633= ctx->thunkpos; if (!yymatchChar(ctx, ']')) goto l633; goto l631; + l633:; ctx->pos= yypos633; ctx->thunkpos= yythunkpos633; + } if (!yy_Inline(ctx)) goto l631; yyDo(ctx, yy_1_InlineNote, ctx->begin, ctx->end); goto l630; + l631:; ctx->pos= yypos631; ctx->thunkpos= yythunkpos631; + } if (!yymatchChar(ctx, ']')) goto l629; yyDo(ctx, yy_2_InlineNote, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "InlineNote", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l629:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "InlineNote", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_NoteReference(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "NoteReference")); yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_NOTES) )) goto l634; if (!yy_RawNoteReference(ctx)) goto l634; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_NoteReference, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "NoteReference", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l634:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "NoteReference", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Link(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Link")); + { int yypos636= ctx->pos, yythunkpos636= ctx->thunkpos; if (!yy_ExplicitLink(ctx)) goto l637; goto l636; + l637:; ctx->pos= yypos636; ctx->thunkpos= yythunkpos636; if (!yy_ReferenceLink(ctx)) goto l638; goto l636; + l638:; ctx->pos= yypos636; ctx->thunkpos= yythunkpos636; if (!yy_AutoLink(ctx)) goto l635; + } + l636:; + yyprintf((stderr, " ok %s @ %s\n", "Link", ctx->buf+ctx->pos)); + return 1; + l635:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Link", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Image(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Image")); if (!yymatchChar(ctx, '!')) goto l639; + { int yypos640= ctx->pos, yythunkpos640= ctx->thunkpos; if (!yy_ExplicitLink(ctx)) goto l641; goto l640; + l641:; ctx->pos= yypos640; ctx->thunkpos= yythunkpos640; if (!yy_ReferenceLink(ctx)) goto l639; + } + l640:; yyDo(ctx, yy_1_Image, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Image", ctx->buf+ctx->pos)); + return 1; + l639:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Image", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Emph(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Emph")); + { int yypos643= ctx->pos, yythunkpos643= ctx->thunkpos; if (!yy_EmphStar(ctx)) goto l644; goto l643; + l644:; ctx->pos= yypos643; ctx->thunkpos= yythunkpos643; if (!yy_EmphUl(ctx)) goto l642; + } + l643:; + yyprintf((stderr, " ok %s @ %s\n", "Emph", ctx->buf+ctx->pos)); + return 1; + l642:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Emph", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Strong(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Strong")); + { int yypos646= ctx->pos, yythunkpos646= ctx->thunkpos; if (!yy_StrongStar(ctx)) goto l647; goto l646; + l647:; ctx->pos= yypos646; ctx->thunkpos= yythunkpos646; if (!yy_StrongUl(ctx)) goto l645; + } + l646:; + yyprintf((stderr, " ok %s @ %s\n", "Strong", ctx->buf+ctx->pos)); + return 1; + l645:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Strong", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Space(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Space")); if (!yy_Spacechar(ctx)) goto l648; + l649:; + { int yypos650= ctx->pos, yythunkpos650= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l650; goto l649; + l650:; ctx->pos= yypos650; ctx->thunkpos= yythunkpos650; + } yyDo(ctx, yy_1_Space, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Space", ctx->buf+ctx->pos)); + return 1; + l648:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Space", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_UlOrStarLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "UlOrStarLine")); + { int yypos652= ctx->pos, yythunkpos652= ctx->thunkpos; if (!yy_UlLine(ctx)) goto l653; goto l652; + l653:; ctx->pos= yypos652; ctx->thunkpos= yythunkpos652; if (!yy_StarLine(ctx)) goto l651; + } + l652:; yyDo(ctx, yy_1_UlOrStarLine, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "UlOrStarLine", ctx->buf+ctx->pos)); + return 1; + l651:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "UlOrStarLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Str(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Str")); if (!yy_StartList(ctx)) goto l654; yyDo(ctx, yySet, -1, 0); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l654; if (!yy_NormalChar(ctx)) goto l654; + l655:; + { int yypos656= ctx->pos, yythunkpos656= ctx->thunkpos; if (!yy_NormalChar(ctx)) goto l656; goto l655; + l656:; ctx->pos= yypos656; ctx->thunkpos= yythunkpos656; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l654; yyDo(ctx, yy_1_Str, ctx->begin, ctx->end); + l657:; + { int yypos658= ctx->pos, yythunkpos658= ctx->thunkpos; if (!yy_StrChunk(ctx)) goto l658; yyDo(ctx, yy_2_Str, ctx->begin, ctx->end); goto l657; + l658:; ctx->pos= yypos658; ctx->thunkpos= yythunkpos658; + } yyDo(ctx, yy_3_Str, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Str", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l654:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Str", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_InStyleTags(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "InStyleTags")); if (!yy_StyleOpen(ctx)) goto l659; + l660:; + { int yypos661= ctx->pos, yythunkpos661= ctx->thunkpos; + { int yypos662= ctx->pos, yythunkpos662= ctx->thunkpos; if (!yy_StyleClose(ctx)) goto l662; goto l661; + l662:; ctx->pos= yypos662; ctx->thunkpos= yythunkpos662; + } if (!yymatchDot(ctx)) goto l661; goto l660; + l661:; ctx->pos= yypos661; ctx->thunkpos= yythunkpos661; + } if (!yy_StyleClose(ctx)) goto l659; + yyprintf((stderr, " ok %s @ %s\n", "InStyleTags", ctx->buf+ctx->pos)); + return 1; + l659:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "InStyleTags", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StyleClose(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StyleClose")); if (!yymatchChar(ctx, '<')) goto l663; if (!yy_Spnl(ctx)) goto l663; if (!yymatchChar(ctx, '/')) goto l663; + { int yypos664= ctx->pos, yythunkpos664= ctx->thunkpos; if (!yymatchString(ctx, "style")) goto l665; goto l664; + l665:; ctx->pos= yypos664; ctx->thunkpos= yythunkpos664; if (!yymatchString(ctx, "STYLE")) goto l663; + } + l664:; if (!yy_Spnl(ctx)) goto l663; if (!yymatchChar(ctx, '>')) goto l663; + yyprintf((stderr, " ok %s @ %s\n", "StyleClose", ctx->buf+ctx->pos)); + return 1; + l663:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StyleClose", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StyleOpen(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StyleOpen")); if (!yymatchChar(ctx, '<')) goto l666; if (!yy_Spnl(ctx)) goto l666; + { int yypos667= ctx->pos, yythunkpos667= ctx->thunkpos; if (!yymatchString(ctx, "style")) goto l668; goto l667; + l668:; ctx->pos= yypos667; ctx->thunkpos= yythunkpos667; if (!yymatchString(ctx, "STYLE")) goto l666; + } + l667:; if (!yy_Spnl(ctx)) goto l666; + l669:; + { int yypos670= ctx->pos, yythunkpos670= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l670; goto l669; + l670:; ctx->pos= yypos670; ctx->thunkpos= yythunkpos670; + } if (!yymatchChar(ctx, '>')) goto l666; + yyprintf((stderr, " ok %s @ %s\n", "StyleOpen", ctx->buf+ctx->pos)); + return 1; + l666:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StyleOpen", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockType(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockType")); + { int yypos672= ctx->pos, yythunkpos672= ctx->thunkpos; if (!yymatchString(ctx, "address")) goto l673; goto l672; + l673:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "blockquote")) goto l674; goto l672; + l674:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "center")) goto l675; goto l672; + l675:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "dir")) goto l676; goto l672; + l676:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "div")) goto l677; goto l672; + l677:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "dl")) goto l678; goto l672; + l678:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "fieldset")) goto l679; goto l672; + l679:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "form")) goto l680; goto l672; + l680:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h1")) goto l681; goto l672; + l681:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h2")) goto l682; goto l672; + l682:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h3")) goto l683; goto l672; + l683:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h4")) goto l684; goto l672; + l684:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h5")) goto l685; goto l672; + l685:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "h6")) goto l686; goto l672; + l686:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "hr")) goto l687; goto l672; + l687:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "isindex")) goto l688; goto l672; + l688:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "menu")) goto l689; goto l672; + l689:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "noframes")) goto l690; goto l672; + l690:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "noscript")) goto l691; goto l672; + l691:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "ol")) goto l692; goto l672; + l692:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchChar(ctx, 'p')) goto l693; goto l672; + l693:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "pre")) goto l694; goto l672; + l694:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "table")) goto l695; goto l672; + l695:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "ul")) goto l696; goto l672; + l696:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "dd")) goto l697; goto l672; + l697:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "dt")) goto l698; goto l672; + l698:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "frameset")) goto l699; goto l672; + l699:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "li")) goto l700; goto l672; + l700:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "tbody")) goto l701; goto l672; + l701:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "td")) goto l702; goto l672; + l702:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "tfoot")) goto l703; goto l672; + l703:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "th")) goto l704; goto l672; + l704:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "thead")) goto l705; goto l672; + l705:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "tr")) goto l706; goto l672; + l706:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "script")) goto l707; goto l672; + l707:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "ADDRESS")) goto l708; goto l672; + l708:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "BLOCKQUOTE")) goto l709; goto l672; + l709:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "CENTER")) goto l710; goto l672; + l710:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "DIR")) goto l711; goto l672; + l711:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "DIV")) goto l712; goto l672; + l712:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "DL")) goto l713; goto l672; + l713:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "FIELDSET")) goto l714; goto l672; + l714:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "FORM")) goto l715; goto l672; + l715:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H1")) goto l716; goto l672; + l716:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H2")) goto l717; goto l672; + l717:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H3")) goto l718; goto l672; + l718:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H4")) goto l719; goto l672; + l719:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H5")) goto l720; goto l672; + l720:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "H6")) goto l721; goto l672; + l721:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "HR")) goto l722; goto l672; + l722:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "ISINDEX")) goto l723; goto l672; + l723:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "MENU")) goto l724; goto l672; + l724:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "NOFRAMES")) goto l725; goto l672; + l725:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "NOSCRIPT")) goto l726; goto l672; + l726:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "OL")) goto l727; goto l672; + l727:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchChar(ctx, 'P')) goto l728; goto l672; + l728:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "PRE")) goto l729; goto l672; + l729:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TABLE")) goto l730; goto l672; + l730:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "UL")) goto l731; goto l672; + l731:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "DD")) goto l732; goto l672; + l732:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "DT")) goto l733; goto l672; + l733:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "FRAMESET")) goto l734; goto l672; + l734:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "LI")) goto l735; goto l672; + l735:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TBODY")) goto l736; goto l672; + l736:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TD")) goto l737; goto l672; + l737:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TFOOT")) goto l738; goto l672; + l738:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TH")) goto l739; goto l672; + l739:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "THEAD")) goto l740; goto l672; + l740:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "TR")) goto l741; goto l672; + l741:; ctx->pos= yypos672; ctx->thunkpos= yythunkpos672; if (!yymatchString(ctx, "SCRIPT")) goto l671; + } + l672:; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockType", ctx->buf+ctx->pos)); + return 1; + l671:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockType", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockSelfClosing(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockSelfClosing")); if (!yymatchChar(ctx, '<')) goto l742; if (!yy_Spnl(ctx)) goto l742; if (!yy_HtmlBlockType(ctx)) goto l742; if (!yy_Spnl(ctx)) goto l742; + l743:; + { int yypos744= ctx->pos, yythunkpos744= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l744; goto l743; + l744:; ctx->pos= yypos744; ctx->thunkpos= yythunkpos744; + } if (!yymatchChar(ctx, '/')) goto l742; if (!yy_Spnl(ctx)) goto l742; if (!yymatchChar(ctx, '>')) goto l742; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockSelfClosing", ctx->buf+ctx->pos)); + return 1; + l742:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockSelfClosing", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlComment(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlComment")); if (!yymatchString(ctx, "")) goto l748; goto l747; + l748:; ctx->pos= yypos748; ctx->thunkpos= yythunkpos748; + } if (!yymatchDot(ctx)) goto l747; goto l746; + l747:; ctx->pos= yypos747; ctx->thunkpos= yythunkpos747; + } if (!yymatchString(ctx, "-->")) goto l745; + yyprintf((stderr, " ok %s @ %s\n", "HtmlComment", ctx->buf+ctx->pos)); + return 1; + l745:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlComment", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockInTags(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockInTags")); + { int yypos750= ctx->pos, yythunkpos750= ctx->thunkpos; if (!yy_HtmlBlockAddress(ctx)) goto l751; goto l750; + l751:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockBlockquote(ctx)) goto l752; goto l750; + l752:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockCenter(ctx)) goto l753; goto l750; + l753:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockDir(ctx)) goto l754; goto l750; + l754:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockDiv(ctx)) goto l755; goto l750; + l755:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockDl(ctx)) goto l756; goto l750; + l756:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockFieldset(ctx)) goto l757; goto l750; + l757:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockForm(ctx)) goto l758; goto l750; + l758:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH1(ctx)) goto l759; goto l750; + l759:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH2(ctx)) goto l760; goto l750; + l760:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH3(ctx)) goto l761; goto l750; + l761:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH4(ctx)) goto l762; goto l750; + l762:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH5(ctx)) goto l763; goto l750; + l763:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockH6(ctx)) goto l764; goto l750; + l764:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockMenu(ctx)) goto l765; goto l750; + l765:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockNoframes(ctx)) goto l766; goto l750; + l766:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockNoscript(ctx)) goto l767; goto l750; + l767:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockOl(ctx)) goto l768; goto l750; + l768:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockP(ctx)) goto l769; goto l750; + l769:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockPre(ctx)) goto l770; goto l750; + l770:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTable(ctx)) goto l771; goto l750; + l771:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockUl(ctx)) goto l772; goto l750; + l772:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockDd(ctx)) goto l773; goto l750; + l773:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockDt(ctx)) goto l774; goto l750; + l774:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockFrameset(ctx)) goto l775; goto l750; + l775:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockLi(ctx)) goto l776; goto l750; + l776:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTbody(ctx)) goto l777; goto l750; + l777:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTd(ctx)) goto l778; goto l750; + l778:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTfoot(ctx)) goto l779; goto l750; + l779:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTh(ctx)) goto l780; goto l750; + l780:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockThead(ctx)) goto l781; goto l750; + l781:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockTr(ctx)) goto l782; goto l750; + l782:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockScript(ctx)) goto l783; goto l750; + l783:; ctx->pos= yypos750; ctx->thunkpos= yythunkpos750; if (!yy_HtmlBlockHead(ctx)) goto l749; + } + l750:; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockInTags", ctx->buf+ctx->pos)); + return 1; + l749:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockInTags", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockHead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockHead")); if (!yy_HtmlBlockOpenHead(ctx)) goto l784; + l785:; + { int yypos786= ctx->pos, yythunkpos786= ctx->thunkpos; + { int yypos787= ctx->pos, yythunkpos787= ctx->thunkpos; if (!yy_HtmlBlockCloseHead(ctx)) goto l787; goto l786; + l787:; ctx->pos= yypos787; ctx->thunkpos= yythunkpos787; + } if (!yymatchDot(ctx)) goto l786; goto l785; + l786:; ctx->pos= yypos786; ctx->thunkpos= yythunkpos786; + } if (!yy_HtmlBlockCloseHead(ctx)) goto l784; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockHead", ctx->buf+ctx->pos)); + return 1; + l784:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockHead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseHead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseHead")); if (!yymatchChar(ctx, '<')) goto l788; if (!yy_Spnl(ctx)) goto l788; if (!yymatchChar(ctx, '/')) goto l788; + { int yypos789= ctx->pos, yythunkpos789= ctx->thunkpos; if (!yymatchString(ctx, "head")) goto l790; goto l789; + l790:; ctx->pos= yypos789; ctx->thunkpos= yythunkpos789; if (!yymatchString(ctx, "HEAD")) goto l788; + } + l789:; if (!yy_Spnl(ctx)) goto l788; if (!yymatchChar(ctx, '>')) goto l788; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseHead", ctx->buf+ctx->pos)); + return 1; + l788:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseHead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenHead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenHead")); if (!yymatchChar(ctx, '<')) goto l791; if (!yy_Spnl(ctx)) goto l791; + { int yypos792= ctx->pos, yythunkpos792= ctx->thunkpos; if (!yymatchString(ctx, "head")) goto l793; goto l792; + l793:; ctx->pos= yypos792; ctx->thunkpos= yythunkpos792; if (!yymatchString(ctx, "HEAD")) goto l791; + } + l792:; if (!yy_Spnl(ctx)) goto l791; + l794:; + { int yypos795= ctx->pos, yythunkpos795= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l795; goto l794; + l795:; ctx->pos= yypos795; ctx->thunkpos= yythunkpos795; + } if (!yymatchChar(ctx, '>')) goto l791; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenHead", ctx->buf+ctx->pos)); + return 1; + l791:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenHead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockScript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockScript")); if (!yy_HtmlBlockOpenScript(ctx)) goto l796; + l797:; + { int yypos798= ctx->pos, yythunkpos798= ctx->thunkpos; + { int yypos799= ctx->pos, yythunkpos799= ctx->thunkpos; if (!yy_HtmlBlockCloseScript(ctx)) goto l799; goto l798; + l799:; ctx->pos= yypos799; ctx->thunkpos= yythunkpos799; + } if (!yymatchDot(ctx)) goto l798; goto l797; + l798:; ctx->pos= yypos798; ctx->thunkpos= yythunkpos798; + } if (!yy_HtmlBlockCloseScript(ctx)) goto l796; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockScript", ctx->buf+ctx->pos)); + return 1; + l796:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockScript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseScript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseScript")); if (!yymatchChar(ctx, '<')) goto l800; if (!yy_Spnl(ctx)) goto l800; if (!yymatchChar(ctx, '/')) goto l800; + { int yypos801= ctx->pos, yythunkpos801= ctx->thunkpos; if (!yymatchString(ctx, "script")) goto l802; goto l801; + l802:; ctx->pos= yypos801; ctx->thunkpos= yythunkpos801; if (!yymatchString(ctx, "SCRIPT")) goto l800; + } + l801:; if (!yy_Spnl(ctx)) goto l800; if (!yymatchChar(ctx, '>')) goto l800; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseScript", ctx->buf+ctx->pos)); + return 1; + l800:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseScript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenScript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenScript")); if (!yymatchChar(ctx, '<')) goto l803; if (!yy_Spnl(ctx)) goto l803; + { int yypos804= ctx->pos, yythunkpos804= ctx->thunkpos; if (!yymatchString(ctx, "script")) goto l805; goto l804; + l805:; ctx->pos= yypos804; ctx->thunkpos= yythunkpos804; if (!yymatchString(ctx, "SCRIPT")) goto l803; + } + l804:; if (!yy_Spnl(ctx)) goto l803; + l806:; + { int yypos807= ctx->pos, yythunkpos807= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l807; goto l806; + l807:; ctx->pos= yypos807; ctx->thunkpos= yythunkpos807; + } if (!yymatchChar(ctx, '>')) goto l803; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenScript", ctx->buf+ctx->pos)); + return 1; + l803:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenScript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTr(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTr")); if (!yy_HtmlBlockOpenTr(ctx)) goto l808; + l809:; + { int yypos810= ctx->pos, yythunkpos810= ctx->thunkpos; + { int yypos811= ctx->pos, yythunkpos811= ctx->thunkpos; if (!yy_HtmlBlockTr(ctx)) goto l812; goto l811; + l812:; ctx->pos= yypos811; ctx->thunkpos= yythunkpos811; + { int yypos813= ctx->pos, yythunkpos813= ctx->thunkpos; if (!yy_HtmlBlockCloseTr(ctx)) goto l813; goto l810; + l813:; ctx->pos= yypos813; ctx->thunkpos= yythunkpos813; + } if (!yymatchDot(ctx)) goto l810; + } + l811:; goto l809; + l810:; ctx->pos= yypos810; ctx->thunkpos= yythunkpos810; + } if (!yy_HtmlBlockCloseTr(ctx)) goto l808; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTr", ctx->buf+ctx->pos)); + return 1; + l808:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTr", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTr(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTr")); if (!yymatchChar(ctx, '<')) goto l814; if (!yy_Spnl(ctx)) goto l814; if (!yymatchChar(ctx, '/')) goto l814; + { int yypos815= ctx->pos, yythunkpos815= ctx->thunkpos; if (!yymatchString(ctx, "tr")) goto l816; goto l815; + l816:; ctx->pos= yypos815; ctx->thunkpos= yythunkpos815; if (!yymatchString(ctx, "TR")) goto l814; + } + l815:; if (!yy_Spnl(ctx)) goto l814; if (!yymatchChar(ctx, '>')) goto l814; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTr", ctx->buf+ctx->pos)); + return 1; + l814:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTr", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTr(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTr")); if (!yymatchChar(ctx, '<')) goto l817; if (!yy_Spnl(ctx)) goto l817; + { int yypos818= ctx->pos, yythunkpos818= ctx->thunkpos; if (!yymatchString(ctx, "tr")) goto l819; goto l818; + l819:; ctx->pos= yypos818; ctx->thunkpos= yythunkpos818; if (!yymatchString(ctx, "TR")) goto l817; + } + l818:; if (!yy_Spnl(ctx)) goto l817; + l820:; + { int yypos821= ctx->pos, yythunkpos821= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l821; goto l820; + l821:; ctx->pos= yypos821; ctx->thunkpos= yythunkpos821; + } if (!yymatchChar(ctx, '>')) goto l817; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTr", ctx->buf+ctx->pos)); + return 1; + l817:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTr", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockThead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockThead")); if (!yy_HtmlBlockOpenThead(ctx)) goto l822; + l823:; + { int yypos824= ctx->pos, yythunkpos824= ctx->thunkpos; + { int yypos825= ctx->pos, yythunkpos825= ctx->thunkpos; if (!yy_HtmlBlockThead(ctx)) goto l826; goto l825; + l826:; ctx->pos= yypos825; ctx->thunkpos= yythunkpos825; + { int yypos827= ctx->pos, yythunkpos827= ctx->thunkpos; if (!yy_HtmlBlockCloseThead(ctx)) goto l827; goto l824; + l827:; ctx->pos= yypos827; ctx->thunkpos= yythunkpos827; + } if (!yymatchDot(ctx)) goto l824; + } + l825:; goto l823; + l824:; ctx->pos= yypos824; ctx->thunkpos= yythunkpos824; + } if (!yy_HtmlBlockCloseThead(ctx)) goto l822; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockThead", ctx->buf+ctx->pos)); + return 1; + l822:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockThead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseThead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseThead")); if (!yymatchChar(ctx, '<')) goto l828; if (!yy_Spnl(ctx)) goto l828; if (!yymatchChar(ctx, '/')) goto l828; + { int yypos829= ctx->pos, yythunkpos829= ctx->thunkpos; if (!yymatchString(ctx, "thead")) goto l830; goto l829; + l830:; ctx->pos= yypos829; ctx->thunkpos= yythunkpos829; if (!yymatchString(ctx, "THEAD")) goto l828; + } + l829:; if (!yy_Spnl(ctx)) goto l828; if (!yymatchChar(ctx, '>')) goto l828; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseThead", ctx->buf+ctx->pos)); + return 1; + l828:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseThead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenThead(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenThead")); if (!yymatchChar(ctx, '<')) goto l831; if (!yy_Spnl(ctx)) goto l831; + { int yypos832= ctx->pos, yythunkpos832= ctx->thunkpos; if (!yymatchString(ctx, "thead")) goto l833; goto l832; + l833:; ctx->pos= yypos832; ctx->thunkpos= yythunkpos832; if (!yymatchString(ctx, "THEAD")) goto l831; + } + l832:; if (!yy_Spnl(ctx)) goto l831; + l834:; + { int yypos835= ctx->pos, yythunkpos835= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l835; goto l834; + l835:; ctx->pos= yypos835; ctx->thunkpos= yythunkpos835; + } if (!yymatchChar(ctx, '>')) goto l831; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenThead", ctx->buf+ctx->pos)); + return 1; + l831:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenThead", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTh(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTh")); if (!yy_HtmlBlockOpenTh(ctx)) goto l836; + l837:; + { int yypos838= ctx->pos, yythunkpos838= ctx->thunkpos; + { int yypos839= ctx->pos, yythunkpos839= ctx->thunkpos; if (!yy_HtmlBlockTh(ctx)) goto l840; goto l839; + l840:; ctx->pos= yypos839; ctx->thunkpos= yythunkpos839; + { int yypos841= ctx->pos, yythunkpos841= ctx->thunkpos; if (!yy_HtmlBlockCloseTh(ctx)) goto l841; goto l838; + l841:; ctx->pos= yypos841; ctx->thunkpos= yythunkpos841; + } if (!yymatchDot(ctx)) goto l838; + } + l839:; goto l837; + l838:; ctx->pos= yypos838; ctx->thunkpos= yythunkpos838; + } if (!yy_HtmlBlockCloseTh(ctx)) goto l836; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTh", ctx->buf+ctx->pos)); + return 1; + l836:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTh", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTh(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTh")); if (!yymatchChar(ctx, '<')) goto l842; if (!yy_Spnl(ctx)) goto l842; if (!yymatchChar(ctx, '/')) goto l842; + { int yypos843= ctx->pos, yythunkpos843= ctx->thunkpos; if (!yymatchString(ctx, "th")) goto l844; goto l843; + l844:; ctx->pos= yypos843; ctx->thunkpos= yythunkpos843; if (!yymatchString(ctx, "TH")) goto l842; + } + l843:; if (!yy_Spnl(ctx)) goto l842; if (!yymatchChar(ctx, '>')) goto l842; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTh", ctx->buf+ctx->pos)); + return 1; + l842:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTh", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTh(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTh")); if (!yymatchChar(ctx, '<')) goto l845; if (!yy_Spnl(ctx)) goto l845; + { int yypos846= ctx->pos, yythunkpos846= ctx->thunkpos; if (!yymatchString(ctx, "th")) goto l847; goto l846; + l847:; ctx->pos= yypos846; ctx->thunkpos= yythunkpos846; if (!yymatchString(ctx, "TH")) goto l845; + } + l846:; if (!yy_Spnl(ctx)) goto l845; + l848:; + { int yypos849= ctx->pos, yythunkpos849= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l849; goto l848; + l849:; ctx->pos= yypos849; ctx->thunkpos= yythunkpos849; + } if (!yymatchChar(ctx, '>')) goto l845; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTh", ctx->buf+ctx->pos)); + return 1; + l845:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTh", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTfoot(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTfoot")); if (!yy_HtmlBlockOpenTfoot(ctx)) goto l850; + l851:; + { int yypos852= ctx->pos, yythunkpos852= ctx->thunkpos; + { int yypos853= ctx->pos, yythunkpos853= ctx->thunkpos; if (!yy_HtmlBlockTfoot(ctx)) goto l854; goto l853; + l854:; ctx->pos= yypos853; ctx->thunkpos= yythunkpos853; + { int yypos855= ctx->pos, yythunkpos855= ctx->thunkpos; if (!yy_HtmlBlockCloseTfoot(ctx)) goto l855; goto l852; + l855:; ctx->pos= yypos855; ctx->thunkpos= yythunkpos855; + } if (!yymatchDot(ctx)) goto l852; + } + l853:; goto l851; + l852:; ctx->pos= yypos852; ctx->thunkpos= yythunkpos852; + } if (!yy_HtmlBlockCloseTfoot(ctx)) goto l850; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTfoot", ctx->buf+ctx->pos)); + return 1; + l850:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTfoot", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTfoot(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTfoot")); if (!yymatchChar(ctx, '<')) goto l856; if (!yy_Spnl(ctx)) goto l856; if (!yymatchChar(ctx, '/')) goto l856; + { int yypos857= ctx->pos, yythunkpos857= ctx->thunkpos; if (!yymatchString(ctx, "tfoot")) goto l858; goto l857; + l858:; ctx->pos= yypos857; ctx->thunkpos= yythunkpos857; if (!yymatchString(ctx, "TFOOT")) goto l856; + } + l857:; if (!yy_Spnl(ctx)) goto l856; if (!yymatchChar(ctx, '>')) goto l856; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTfoot", ctx->buf+ctx->pos)); + return 1; + l856:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTfoot", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTfoot(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTfoot")); if (!yymatchChar(ctx, '<')) goto l859; if (!yy_Spnl(ctx)) goto l859; + { int yypos860= ctx->pos, yythunkpos860= ctx->thunkpos; if (!yymatchString(ctx, "tfoot")) goto l861; goto l860; + l861:; ctx->pos= yypos860; ctx->thunkpos= yythunkpos860; if (!yymatchString(ctx, "TFOOT")) goto l859; + } + l860:; if (!yy_Spnl(ctx)) goto l859; + l862:; + { int yypos863= ctx->pos, yythunkpos863= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l863; goto l862; + l863:; ctx->pos= yypos863; ctx->thunkpos= yythunkpos863; + } if (!yymatchChar(ctx, '>')) goto l859; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTfoot", ctx->buf+ctx->pos)); + return 1; + l859:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTfoot", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTd")); if (!yy_HtmlBlockOpenTd(ctx)) goto l864; + l865:; + { int yypos866= ctx->pos, yythunkpos866= ctx->thunkpos; + { int yypos867= ctx->pos, yythunkpos867= ctx->thunkpos; if (!yy_HtmlBlockTd(ctx)) goto l868; goto l867; + l868:; ctx->pos= yypos867; ctx->thunkpos= yythunkpos867; + { int yypos869= ctx->pos, yythunkpos869= ctx->thunkpos; if (!yy_HtmlBlockCloseTd(ctx)) goto l869; goto l866; + l869:; ctx->pos= yypos869; ctx->thunkpos= yythunkpos869; + } if (!yymatchDot(ctx)) goto l866; + } + l867:; goto l865; + l866:; ctx->pos= yypos866; ctx->thunkpos= yythunkpos866; + } if (!yy_HtmlBlockCloseTd(ctx)) goto l864; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTd", ctx->buf+ctx->pos)); + return 1; + l864:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTd")); if (!yymatchChar(ctx, '<')) goto l870; if (!yy_Spnl(ctx)) goto l870; if (!yymatchChar(ctx, '/')) goto l870; + { int yypos871= ctx->pos, yythunkpos871= ctx->thunkpos; if (!yymatchString(ctx, "td")) goto l872; goto l871; + l872:; ctx->pos= yypos871; ctx->thunkpos= yythunkpos871; if (!yymatchString(ctx, "TD")) goto l870; + } + l871:; if (!yy_Spnl(ctx)) goto l870; if (!yymatchChar(ctx, '>')) goto l870; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTd", ctx->buf+ctx->pos)); + return 1; + l870:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTd")); if (!yymatchChar(ctx, '<')) goto l873; if (!yy_Spnl(ctx)) goto l873; + { int yypos874= ctx->pos, yythunkpos874= ctx->thunkpos; if (!yymatchString(ctx, "td")) goto l875; goto l874; + l875:; ctx->pos= yypos874; ctx->thunkpos= yythunkpos874; if (!yymatchString(ctx, "TD")) goto l873; + } + l874:; if (!yy_Spnl(ctx)) goto l873; + l876:; + { int yypos877= ctx->pos, yythunkpos877= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l877; goto l876; + l877:; ctx->pos= yypos877; ctx->thunkpos= yythunkpos877; + } if (!yymatchChar(ctx, '>')) goto l873; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTd", ctx->buf+ctx->pos)); + return 1; + l873:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTbody(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTbody")); if (!yy_HtmlBlockOpenTbody(ctx)) goto l878; + l879:; + { int yypos880= ctx->pos, yythunkpos880= ctx->thunkpos; + { int yypos881= ctx->pos, yythunkpos881= ctx->thunkpos; if (!yy_HtmlBlockTbody(ctx)) goto l882; goto l881; + l882:; ctx->pos= yypos881; ctx->thunkpos= yythunkpos881; + { int yypos883= ctx->pos, yythunkpos883= ctx->thunkpos; if (!yy_HtmlBlockCloseTbody(ctx)) goto l883; goto l880; + l883:; ctx->pos= yypos883; ctx->thunkpos= yythunkpos883; + } if (!yymatchDot(ctx)) goto l880; + } + l881:; goto l879; + l880:; ctx->pos= yypos880; ctx->thunkpos= yythunkpos880; + } if (!yy_HtmlBlockCloseTbody(ctx)) goto l878; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTbody", ctx->buf+ctx->pos)); + return 1; + l878:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTbody", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTbody(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTbody")); if (!yymatchChar(ctx, '<')) goto l884; if (!yy_Spnl(ctx)) goto l884; if (!yymatchChar(ctx, '/')) goto l884; + { int yypos885= ctx->pos, yythunkpos885= ctx->thunkpos; if (!yymatchString(ctx, "tbody")) goto l886; goto l885; + l886:; ctx->pos= yypos885; ctx->thunkpos= yythunkpos885; if (!yymatchString(ctx, "TBODY")) goto l884; + } + l885:; if (!yy_Spnl(ctx)) goto l884; if (!yymatchChar(ctx, '>')) goto l884; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTbody", ctx->buf+ctx->pos)); + return 1; + l884:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTbody", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTbody(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTbody")); if (!yymatchChar(ctx, '<')) goto l887; if (!yy_Spnl(ctx)) goto l887; + { int yypos888= ctx->pos, yythunkpos888= ctx->thunkpos; if (!yymatchString(ctx, "tbody")) goto l889; goto l888; + l889:; ctx->pos= yypos888; ctx->thunkpos= yythunkpos888; if (!yymatchString(ctx, "TBODY")) goto l887; + } + l888:; if (!yy_Spnl(ctx)) goto l887; + l890:; + { int yypos891= ctx->pos, yythunkpos891= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l891; goto l890; + l891:; ctx->pos= yypos891; ctx->thunkpos= yythunkpos891; + } if (!yymatchChar(ctx, '>')) goto l887; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTbody", ctx->buf+ctx->pos)); + return 1; + l887:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTbody", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockLi(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockLi")); if (!yy_HtmlBlockOpenLi(ctx)) goto l892; + l893:; + { int yypos894= ctx->pos, yythunkpos894= ctx->thunkpos; + { int yypos895= ctx->pos, yythunkpos895= ctx->thunkpos; if (!yy_HtmlBlockLi(ctx)) goto l896; goto l895; + l896:; ctx->pos= yypos895; ctx->thunkpos= yythunkpos895; + { int yypos897= ctx->pos, yythunkpos897= ctx->thunkpos; if (!yy_HtmlBlockCloseLi(ctx)) goto l897; goto l894; + l897:; ctx->pos= yypos897; ctx->thunkpos= yythunkpos897; + } if (!yymatchDot(ctx)) goto l894; + } + l895:; goto l893; + l894:; ctx->pos= yypos894; ctx->thunkpos= yythunkpos894; + } if (!yy_HtmlBlockCloseLi(ctx)) goto l892; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockLi", ctx->buf+ctx->pos)); + return 1; + l892:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockLi", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseLi(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseLi")); if (!yymatchChar(ctx, '<')) goto l898; if (!yy_Spnl(ctx)) goto l898; if (!yymatchChar(ctx, '/')) goto l898; + { int yypos899= ctx->pos, yythunkpos899= ctx->thunkpos; if (!yymatchString(ctx, "li")) goto l900; goto l899; + l900:; ctx->pos= yypos899; ctx->thunkpos= yythunkpos899; if (!yymatchString(ctx, "LI")) goto l898; + } + l899:; if (!yy_Spnl(ctx)) goto l898; if (!yymatchChar(ctx, '>')) goto l898; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseLi", ctx->buf+ctx->pos)); + return 1; + l898:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseLi", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenLi(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenLi")); if (!yymatchChar(ctx, '<')) goto l901; if (!yy_Spnl(ctx)) goto l901; + { int yypos902= ctx->pos, yythunkpos902= ctx->thunkpos; if (!yymatchString(ctx, "li")) goto l903; goto l902; + l903:; ctx->pos= yypos902; ctx->thunkpos= yythunkpos902; if (!yymatchString(ctx, "LI")) goto l901; + } + l902:; if (!yy_Spnl(ctx)) goto l901; + l904:; + { int yypos905= ctx->pos, yythunkpos905= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l905; goto l904; + l905:; ctx->pos= yypos905; ctx->thunkpos= yythunkpos905; + } if (!yymatchChar(ctx, '>')) goto l901; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenLi", ctx->buf+ctx->pos)); + return 1; + l901:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenLi", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockFrameset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockFrameset")); if (!yy_HtmlBlockOpenFrameset(ctx)) goto l906; + l907:; + { int yypos908= ctx->pos, yythunkpos908= ctx->thunkpos; + { int yypos909= ctx->pos, yythunkpos909= ctx->thunkpos; if (!yy_HtmlBlockFrameset(ctx)) goto l910; goto l909; + l910:; ctx->pos= yypos909; ctx->thunkpos= yythunkpos909; + { int yypos911= ctx->pos, yythunkpos911= ctx->thunkpos; if (!yy_HtmlBlockCloseFrameset(ctx)) goto l911; goto l908; + l911:; ctx->pos= yypos911; ctx->thunkpos= yythunkpos911; + } if (!yymatchDot(ctx)) goto l908; + } + l909:; goto l907; + l908:; ctx->pos= yypos908; ctx->thunkpos= yythunkpos908; + } if (!yy_HtmlBlockCloseFrameset(ctx)) goto l906; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockFrameset", ctx->buf+ctx->pos)); + return 1; + l906:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockFrameset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseFrameset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseFrameset")); if (!yymatchChar(ctx, '<')) goto l912; if (!yy_Spnl(ctx)) goto l912; if (!yymatchChar(ctx, '/')) goto l912; + { int yypos913= ctx->pos, yythunkpos913= ctx->thunkpos; if (!yymatchString(ctx, "frameset")) goto l914; goto l913; + l914:; ctx->pos= yypos913; ctx->thunkpos= yythunkpos913; if (!yymatchString(ctx, "FRAMESET")) goto l912; + } + l913:; if (!yy_Spnl(ctx)) goto l912; if (!yymatchChar(ctx, '>')) goto l912; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFrameset", ctx->buf+ctx->pos)); + return 1; + l912:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFrameset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenFrameset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenFrameset")); if (!yymatchChar(ctx, '<')) goto l915; if (!yy_Spnl(ctx)) goto l915; + { int yypos916= ctx->pos, yythunkpos916= ctx->thunkpos; if (!yymatchString(ctx, "frameset")) goto l917; goto l916; + l917:; ctx->pos= yypos916; ctx->thunkpos= yythunkpos916; if (!yymatchString(ctx, "FRAMESET")) goto l915; + } + l916:; if (!yy_Spnl(ctx)) goto l915; + l918:; + { int yypos919= ctx->pos, yythunkpos919= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l919; goto l918; + l919:; ctx->pos= yypos919; ctx->thunkpos= yythunkpos919; + } if (!yymatchChar(ctx, '>')) goto l915; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFrameset", ctx->buf+ctx->pos)); + return 1; + l915:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFrameset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockDt(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockDt")); if (!yy_HtmlBlockOpenDt(ctx)) goto l920; + l921:; + { int yypos922= ctx->pos, yythunkpos922= ctx->thunkpos; + { int yypos923= ctx->pos, yythunkpos923= ctx->thunkpos; if (!yy_HtmlBlockDt(ctx)) goto l924; goto l923; + l924:; ctx->pos= yypos923; ctx->thunkpos= yythunkpos923; + { int yypos925= ctx->pos, yythunkpos925= ctx->thunkpos; if (!yy_HtmlBlockCloseDt(ctx)) goto l925; goto l922; + l925:; ctx->pos= yypos925; ctx->thunkpos= yythunkpos925; + } if (!yymatchDot(ctx)) goto l922; + } + l923:; goto l921; + l922:; ctx->pos= yypos922; ctx->thunkpos= yythunkpos922; + } if (!yy_HtmlBlockCloseDt(ctx)) goto l920; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockDt", ctx->buf+ctx->pos)); + return 1; + l920:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockDt", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseDt(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseDt")); if (!yymatchChar(ctx, '<')) goto l926; if (!yy_Spnl(ctx)) goto l926; if (!yymatchChar(ctx, '/')) goto l926; + { int yypos927= ctx->pos, yythunkpos927= ctx->thunkpos; if (!yymatchString(ctx, "dt")) goto l928; goto l927; + l928:; ctx->pos= yypos927; ctx->thunkpos= yythunkpos927; if (!yymatchString(ctx, "DT")) goto l926; + } + l927:; if (!yy_Spnl(ctx)) goto l926; if (!yymatchChar(ctx, '>')) goto l926; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDt", ctx->buf+ctx->pos)); + return 1; + l926:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDt", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenDt(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenDt")); if (!yymatchChar(ctx, '<')) goto l929; if (!yy_Spnl(ctx)) goto l929; + { int yypos930= ctx->pos, yythunkpos930= ctx->thunkpos; if (!yymatchString(ctx, "dt")) goto l931; goto l930; + l931:; ctx->pos= yypos930; ctx->thunkpos= yythunkpos930; if (!yymatchString(ctx, "DT")) goto l929; + } + l930:; if (!yy_Spnl(ctx)) goto l929; + l932:; + { int yypos933= ctx->pos, yythunkpos933= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l933; goto l932; + l933:; ctx->pos= yypos933; ctx->thunkpos= yythunkpos933; + } if (!yymatchChar(ctx, '>')) goto l929; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDt", ctx->buf+ctx->pos)); + return 1; + l929:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDt", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockDd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockDd")); if (!yy_HtmlBlockOpenDd(ctx)) goto l934; + l935:; + { int yypos936= ctx->pos, yythunkpos936= ctx->thunkpos; + { int yypos937= ctx->pos, yythunkpos937= ctx->thunkpos; if (!yy_HtmlBlockDd(ctx)) goto l938; goto l937; + l938:; ctx->pos= yypos937; ctx->thunkpos= yythunkpos937; + { int yypos939= ctx->pos, yythunkpos939= ctx->thunkpos; if (!yy_HtmlBlockCloseDd(ctx)) goto l939; goto l936; + l939:; ctx->pos= yypos939; ctx->thunkpos= yythunkpos939; + } if (!yymatchDot(ctx)) goto l936; + } + l937:; goto l935; + l936:; ctx->pos= yypos936; ctx->thunkpos= yythunkpos936; + } if (!yy_HtmlBlockCloseDd(ctx)) goto l934; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockDd", ctx->buf+ctx->pos)); + return 1; + l934:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockDd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseDd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseDd")); if (!yymatchChar(ctx, '<')) goto l940; if (!yy_Spnl(ctx)) goto l940; if (!yymatchChar(ctx, '/')) goto l940; + { int yypos941= ctx->pos, yythunkpos941= ctx->thunkpos; if (!yymatchString(ctx, "dd")) goto l942; goto l941; + l942:; ctx->pos= yypos941; ctx->thunkpos= yythunkpos941; if (!yymatchString(ctx, "DD")) goto l940; + } + l941:; if (!yy_Spnl(ctx)) goto l940; if (!yymatchChar(ctx, '>')) goto l940; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDd", ctx->buf+ctx->pos)); + return 1; + l940:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenDd(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenDd")); if (!yymatchChar(ctx, '<')) goto l943; if (!yy_Spnl(ctx)) goto l943; + { int yypos944= ctx->pos, yythunkpos944= ctx->thunkpos; if (!yymatchString(ctx, "dd")) goto l945; goto l944; + l945:; ctx->pos= yypos944; ctx->thunkpos= yythunkpos944; if (!yymatchString(ctx, "DD")) goto l943; + } + l944:; if (!yy_Spnl(ctx)) goto l943; + l946:; + { int yypos947= ctx->pos, yythunkpos947= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l947; goto l946; + l947:; ctx->pos= yypos947; ctx->thunkpos= yythunkpos947; + } if (!yymatchChar(ctx, '>')) goto l943; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDd", ctx->buf+ctx->pos)); + return 1; + l943:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDd", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockUl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockUl")); if (!yy_HtmlBlockOpenUl(ctx)) goto l948; + l949:; + { int yypos950= ctx->pos, yythunkpos950= ctx->thunkpos; + { int yypos951= ctx->pos, yythunkpos951= ctx->thunkpos; if (!yy_HtmlBlockUl(ctx)) goto l952; goto l951; + l952:; ctx->pos= yypos951; ctx->thunkpos= yythunkpos951; + { int yypos953= ctx->pos, yythunkpos953= ctx->thunkpos; if (!yy_HtmlBlockCloseUl(ctx)) goto l953; goto l950; + l953:; ctx->pos= yypos953; ctx->thunkpos= yythunkpos953; + } if (!yymatchDot(ctx)) goto l950; + } + l951:; goto l949; + l950:; ctx->pos= yypos950; ctx->thunkpos= yythunkpos950; + } if (!yy_HtmlBlockCloseUl(ctx)) goto l948; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockUl", ctx->buf+ctx->pos)); + return 1; + l948:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockUl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseUl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseUl")); if (!yymatchChar(ctx, '<')) goto l954; if (!yy_Spnl(ctx)) goto l954; if (!yymatchChar(ctx, '/')) goto l954; + { int yypos955= ctx->pos, yythunkpos955= ctx->thunkpos; if (!yymatchString(ctx, "ul")) goto l956; goto l955; + l956:; ctx->pos= yypos955; ctx->thunkpos= yythunkpos955; if (!yymatchString(ctx, "UL")) goto l954; + } + l955:; if (!yy_Spnl(ctx)) goto l954; if (!yymatchChar(ctx, '>')) goto l954; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseUl", ctx->buf+ctx->pos)); + return 1; + l954:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseUl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenUl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenUl")); if (!yymatchChar(ctx, '<')) goto l957; if (!yy_Spnl(ctx)) goto l957; + { int yypos958= ctx->pos, yythunkpos958= ctx->thunkpos; if (!yymatchString(ctx, "ul")) goto l959; goto l958; + l959:; ctx->pos= yypos958; ctx->thunkpos= yythunkpos958; if (!yymatchString(ctx, "UL")) goto l957; + } + l958:; if (!yy_Spnl(ctx)) goto l957; + l960:; + { int yypos961= ctx->pos, yythunkpos961= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l961; goto l960; + l961:; ctx->pos= yypos961; ctx->thunkpos= yythunkpos961; + } if (!yymatchChar(ctx, '>')) goto l957; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenUl", ctx->buf+ctx->pos)); + return 1; + l957:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenUl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockTable(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockTable")); if (!yy_HtmlBlockOpenTable(ctx)) goto l962; + l963:; + { int yypos964= ctx->pos, yythunkpos964= ctx->thunkpos; + { int yypos965= ctx->pos, yythunkpos965= ctx->thunkpos; if (!yy_HtmlBlockTable(ctx)) goto l966; goto l965; + l966:; ctx->pos= yypos965; ctx->thunkpos= yythunkpos965; + { int yypos967= ctx->pos, yythunkpos967= ctx->thunkpos; if (!yy_HtmlBlockCloseTable(ctx)) goto l967; goto l964; + l967:; ctx->pos= yypos967; ctx->thunkpos= yythunkpos967; + } if (!yymatchDot(ctx)) goto l964; + } + l965:; goto l963; + l964:; ctx->pos= yypos964; ctx->thunkpos= yythunkpos964; + } if (!yy_HtmlBlockCloseTable(ctx)) goto l962; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockTable", ctx->buf+ctx->pos)); + return 1; + l962:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockTable", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseTable(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseTable")); if (!yymatchChar(ctx, '<')) goto l968; if (!yy_Spnl(ctx)) goto l968; if (!yymatchChar(ctx, '/')) goto l968; + { int yypos969= ctx->pos, yythunkpos969= ctx->thunkpos; if (!yymatchString(ctx, "table")) goto l970; goto l969; + l970:; ctx->pos= yypos969; ctx->thunkpos= yythunkpos969; if (!yymatchString(ctx, "TABLE")) goto l968; + } + l969:; if (!yy_Spnl(ctx)) goto l968; if (!yymatchChar(ctx, '>')) goto l968; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseTable", ctx->buf+ctx->pos)); + return 1; + l968:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseTable", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenTable(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenTable")); if (!yymatchChar(ctx, '<')) goto l971; if (!yy_Spnl(ctx)) goto l971; + { int yypos972= ctx->pos, yythunkpos972= ctx->thunkpos; if (!yymatchString(ctx, "table")) goto l973; goto l972; + l973:; ctx->pos= yypos972; ctx->thunkpos= yythunkpos972; if (!yymatchString(ctx, "TABLE")) goto l971; + } + l972:; if (!yy_Spnl(ctx)) goto l971; + l974:; + { int yypos975= ctx->pos, yythunkpos975= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l975; goto l974; + l975:; ctx->pos= yypos975; ctx->thunkpos= yythunkpos975; + } if (!yymatchChar(ctx, '>')) goto l971; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenTable", ctx->buf+ctx->pos)); + return 1; + l971:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenTable", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockPre(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockPre")); if (!yy_HtmlBlockOpenPre(ctx)) goto l976; + l977:; + { int yypos978= ctx->pos, yythunkpos978= ctx->thunkpos; + { int yypos979= ctx->pos, yythunkpos979= ctx->thunkpos; if (!yy_HtmlBlockPre(ctx)) goto l980; goto l979; + l980:; ctx->pos= yypos979; ctx->thunkpos= yythunkpos979; + { int yypos981= ctx->pos, yythunkpos981= ctx->thunkpos; if (!yy_HtmlBlockClosePre(ctx)) goto l981; goto l978; + l981:; ctx->pos= yypos981; ctx->thunkpos= yythunkpos981; + } if (!yymatchDot(ctx)) goto l978; + } + l979:; goto l977; + l978:; ctx->pos= yypos978; ctx->thunkpos= yythunkpos978; + } if (!yy_HtmlBlockClosePre(ctx)) goto l976; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockPre", ctx->buf+ctx->pos)); + return 1; + l976:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockPre", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockClosePre(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockClosePre")); if (!yymatchChar(ctx, '<')) goto l982; if (!yy_Spnl(ctx)) goto l982; if (!yymatchChar(ctx, '/')) goto l982; + { int yypos983= ctx->pos, yythunkpos983= ctx->thunkpos; if (!yymatchString(ctx, "pre")) goto l984; goto l983; + l984:; ctx->pos= yypos983; ctx->thunkpos= yythunkpos983; if (!yymatchString(ctx, "PRE")) goto l982; + } + l983:; if (!yy_Spnl(ctx)) goto l982; if (!yymatchChar(ctx, '>')) goto l982; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockClosePre", ctx->buf+ctx->pos)); + return 1; + l982:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockClosePre", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenPre(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenPre")); if (!yymatchChar(ctx, '<')) goto l985; if (!yy_Spnl(ctx)) goto l985; + { int yypos986= ctx->pos, yythunkpos986= ctx->thunkpos; if (!yymatchString(ctx, "pre")) goto l987; goto l986; + l987:; ctx->pos= yypos986; ctx->thunkpos= yythunkpos986; if (!yymatchString(ctx, "PRE")) goto l985; + } + l986:; if (!yy_Spnl(ctx)) goto l985; + l988:; + { int yypos989= ctx->pos, yythunkpos989= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l989; goto l988; + l989:; ctx->pos= yypos989; ctx->thunkpos= yythunkpos989; + } if (!yymatchChar(ctx, '>')) goto l985; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenPre", ctx->buf+ctx->pos)); + return 1; + l985:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenPre", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockP(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockP")); if (!yy_HtmlBlockOpenP(ctx)) goto l990; + l991:; + { int yypos992= ctx->pos, yythunkpos992= ctx->thunkpos; + { int yypos993= ctx->pos, yythunkpos993= ctx->thunkpos; if (!yy_HtmlBlockP(ctx)) goto l994; goto l993; + l994:; ctx->pos= yypos993; ctx->thunkpos= yythunkpos993; + { int yypos995= ctx->pos, yythunkpos995= ctx->thunkpos; if (!yy_HtmlBlockCloseP(ctx)) goto l995; goto l992; + l995:; ctx->pos= yypos995; ctx->thunkpos= yythunkpos995; + } if (!yymatchDot(ctx)) goto l992; + } + l993:; goto l991; + l992:; ctx->pos= yypos992; ctx->thunkpos= yythunkpos992; + } if (!yy_HtmlBlockCloseP(ctx)) goto l990; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockP", ctx->buf+ctx->pos)); + return 1; + l990:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockP", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseP(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseP")); if (!yymatchChar(ctx, '<')) goto l996; if (!yy_Spnl(ctx)) goto l996; if (!yymatchChar(ctx, '/')) goto l996; + { int yypos997= ctx->pos, yythunkpos997= ctx->thunkpos; if (!yymatchChar(ctx, 'p')) goto l998; goto l997; + l998:; ctx->pos= yypos997; ctx->thunkpos= yythunkpos997; if (!yymatchChar(ctx, 'P')) goto l996; + } + l997:; if (!yy_Spnl(ctx)) goto l996; if (!yymatchChar(ctx, '>')) goto l996; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseP", ctx->buf+ctx->pos)); + return 1; + l996:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseP", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenP(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenP")); if (!yymatchChar(ctx, '<')) goto l999; if (!yy_Spnl(ctx)) goto l999; + { int yypos1000= ctx->pos, yythunkpos1000= ctx->thunkpos; if (!yymatchChar(ctx, 'p')) goto l1001; goto l1000; + l1001:; ctx->pos= yypos1000; ctx->thunkpos= yythunkpos1000; if (!yymatchChar(ctx, 'P')) goto l999; + } + l1000:; if (!yy_Spnl(ctx)) goto l999; + l1002:; + { int yypos1003= ctx->pos, yythunkpos1003= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1003; goto l1002; + l1003:; ctx->pos= yypos1003; ctx->thunkpos= yythunkpos1003; + } if (!yymatchChar(ctx, '>')) goto l999; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenP", ctx->buf+ctx->pos)); + return 1; + l999:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenP", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOl")); if (!yy_HtmlBlockOpenOl(ctx)) goto l1004; + l1005:; + { int yypos1006= ctx->pos, yythunkpos1006= ctx->thunkpos; + { int yypos1007= ctx->pos, yythunkpos1007= ctx->thunkpos; if (!yy_HtmlBlockOl(ctx)) goto l1008; goto l1007; + l1008:; ctx->pos= yypos1007; ctx->thunkpos= yythunkpos1007; + { int yypos1009= ctx->pos, yythunkpos1009= ctx->thunkpos; if (!yy_HtmlBlockCloseOl(ctx)) goto l1009; goto l1006; + l1009:; ctx->pos= yypos1009; ctx->thunkpos= yythunkpos1009; + } if (!yymatchDot(ctx)) goto l1006; + } + l1007:; goto l1005; + l1006:; ctx->pos= yypos1006; ctx->thunkpos= yythunkpos1006; + } if (!yy_HtmlBlockCloseOl(ctx)) goto l1004; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOl", ctx->buf+ctx->pos)); + return 1; + l1004:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseOl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseOl")); if (!yymatchChar(ctx, '<')) goto l1010; if (!yy_Spnl(ctx)) goto l1010; if (!yymatchChar(ctx, '/')) goto l1010; + { int yypos1011= ctx->pos, yythunkpos1011= ctx->thunkpos; if (!yymatchString(ctx, "ol")) goto l1012; goto l1011; + l1012:; ctx->pos= yypos1011; ctx->thunkpos= yythunkpos1011; if (!yymatchString(ctx, "OL")) goto l1010; + } + l1011:; if (!yy_Spnl(ctx)) goto l1010; if (!yymatchChar(ctx, '>')) goto l1010; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseOl", ctx->buf+ctx->pos)); + return 1; + l1010:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseOl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenOl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenOl")); if (!yymatchChar(ctx, '<')) goto l1013; if (!yy_Spnl(ctx)) goto l1013; + { int yypos1014= ctx->pos, yythunkpos1014= ctx->thunkpos; if (!yymatchString(ctx, "ol")) goto l1015; goto l1014; + l1015:; ctx->pos= yypos1014; ctx->thunkpos= yythunkpos1014; if (!yymatchString(ctx, "OL")) goto l1013; + } + l1014:; if (!yy_Spnl(ctx)) goto l1013; + l1016:; + { int yypos1017= ctx->pos, yythunkpos1017= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1017; goto l1016; + l1017:; ctx->pos= yypos1017; ctx->thunkpos= yythunkpos1017; + } if (!yymatchChar(ctx, '>')) goto l1013; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenOl", ctx->buf+ctx->pos)); + return 1; + l1013:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenOl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockNoscript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockNoscript")); if (!yy_HtmlBlockOpenNoscript(ctx)) goto l1018; + l1019:; + { int yypos1020= ctx->pos, yythunkpos1020= ctx->thunkpos; + { int yypos1021= ctx->pos, yythunkpos1021= ctx->thunkpos; if (!yy_HtmlBlockNoscript(ctx)) goto l1022; goto l1021; + l1022:; ctx->pos= yypos1021; ctx->thunkpos= yythunkpos1021; + { int yypos1023= ctx->pos, yythunkpos1023= ctx->thunkpos; if (!yy_HtmlBlockCloseNoscript(ctx)) goto l1023; goto l1020; + l1023:; ctx->pos= yypos1023; ctx->thunkpos= yythunkpos1023; + } if (!yymatchDot(ctx)) goto l1020; + } + l1021:; goto l1019; + l1020:; ctx->pos= yypos1020; ctx->thunkpos= yythunkpos1020; + } if (!yy_HtmlBlockCloseNoscript(ctx)) goto l1018; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockNoscript", ctx->buf+ctx->pos)); + return 1; + l1018:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockNoscript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseNoscript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseNoscript")); if (!yymatchChar(ctx, '<')) goto l1024; if (!yy_Spnl(ctx)) goto l1024; if (!yymatchChar(ctx, '/')) goto l1024; + { int yypos1025= ctx->pos, yythunkpos1025= ctx->thunkpos; if (!yymatchString(ctx, "noscript")) goto l1026; goto l1025; + l1026:; ctx->pos= yypos1025; ctx->thunkpos= yythunkpos1025; if (!yymatchString(ctx, "NOSCRIPT")) goto l1024; + } + l1025:; if (!yy_Spnl(ctx)) goto l1024; if (!yymatchChar(ctx, '>')) goto l1024; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoscript", ctx->buf+ctx->pos)); + return 1; + l1024:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoscript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenNoscript(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenNoscript")); if (!yymatchChar(ctx, '<')) goto l1027; if (!yy_Spnl(ctx)) goto l1027; + { int yypos1028= ctx->pos, yythunkpos1028= ctx->thunkpos; if (!yymatchString(ctx, "noscript")) goto l1029; goto l1028; + l1029:; ctx->pos= yypos1028; ctx->thunkpos= yythunkpos1028; if (!yymatchString(ctx, "NOSCRIPT")) goto l1027; + } + l1028:; if (!yy_Spnl(ctx)) goto l1027; + l1030:; + { int yypos1031= ctx->pos, yythunkpos1031= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1031; goto l1030; + l1031:; ctx->pos= yypos1031; ctx->thunkpos= yythunkpos1031; + } if (!yymatchChar(ctx, '>')) goto l1027; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoscript", ctx->buf+ctx->pos)); + return 1; + l1027:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoscript", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockNoframes(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockNoframes")); if (!yy_HtmlBlockOpenNoframes(ctx)) goto l1032; + l1033:; + { int yypos1034= ctx->pos, yythunkpos1034= ctx->thunkpos; + { int yypos1035= ctx->pos, yythunkpos1035= ctx->thunkpos; if (!yy_HtmlBlockNoframes(ctx)) goto l1036; goto l1035; + l1036:; ctx->pos= yypos1035; ctx->thunkpos= yythunkpos1035; + { int yypos1037= ctx->pos, yythunkpos1037= ctx->thunkpos; if (!yy_HtmlBlockCloseNoframes(ctx)) goto l1037; goto l1034; + l1037:; ctx->pos= yypos1037; ctx->thunkpos= yythunkpos1037; + } if (!yymatchDot(ctx)) goto l1034; + } + l1035:; goto l1033; + l1034:; ctx->pos= yypos1034; ctx->thunkpos= yythunkpos1034; + } if (!yy_HtmlBlockCloseNoframes(ctx)) goto l1032; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockNoframes", ctx->buf+ctx->pos)); + return 1; + l1032:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockNoframes", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseNoframes(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseNoframes")); if (!yymatchChar(ctx, '<')) goto l1038; if (!yy_Spnl(ctx)) goto l1038; if (!yymatchChar(ctx, '/')) goto l1038; + { int yypos1039= ctx->pos, yythunkpos1039= ctx->thunkpos; if (!yymatchString(ctx, "noframes")) goto l1040; goto l1039; + l1040:; ctx->pos= yypos1039; ctx->thunkpos= yythunkpos1039; if (!yymatchString(ctx, "NOFRAMES")) goto l1038; + } + l1039:; if (!yy_Spnl(ctx)) goto l1038; if (!yymatchChar(ctx, '>')) goto l1038; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseNoframes", ctx->buf+ctx->pos)); + return 1; + l1038:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseNoframes", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenNoframes(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenNoframes")); if (!yymatchChar(ctx, '<')) goto l1041; if (!yy_Spnl(ctx)) goto l1041; + { int yypos1042= ctx->pos, yythunkpos1042= ctx->thunkpos; if (!yymatchString(ctx, "noframes")) goto l1043; goto l1042; + l1043:; ctx->pos= yypos1042; ctx->thunkpos= yythunkpos1042; if (!yymatchString(ctx, "NOFRAMES")) goto l1041; + } + l1042:; if (!yy_Spnl(ctx)) goto l1041; + l1044:; + { int yypos1045= ctx->pos, yythunkpos1045= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1045; goto l1044; + l1045:; ctx->pos= yypos1045; ctx->thunkpos= yythunkpos1045; + } if (!yymatchChar(ctx, '>')) goto l1041; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenNoframes", ctx->buf+ctx->pos)); + return 1; + l1041:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenNoframes", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockMenu(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockMenu")); if (!yy_HtmlBlockOpenMenu(ctx)) goto l1046; + l1047:; + { int yypos1048= ctx->pos, yythunkpos1048= ctx->thunkpos; + { int yypos1049= ctx->pos, yythunkpos1049= ctx->thunkpos; if (!yy_HtmlBlockMenu(ctx)) goto l1050; goto l1049; + l1050:; ctx->pos= yypos1049; ctx->thunkpos= yythunkpos1049; + { int yypos1051= ctx->pos, yythunkpos1051= ctx->thunkpos; if (!yy_HtmlBlockCloseMenu(ctx)) goto l1051; goto l1048; + l1051:; ctx->pos= yypos1051; ctx->thunkpos= yythunkpos1051; + } if (!yymatchDot(ctx)) goto l1048; + } + l1049:; goto l1047; + l1048:; ctx->pos= yypos1048; ctx->thunkpos= yythunkpos1048; + } if (!yy_HtmlBlockCloseMenu(ctx)) goto l1046; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockMenu", ctx->buf+ctx->pos)); + return 1; + l1046:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockMenu", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseMenu(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseMenu")); if (!yymatchChar(ctx, '<')) goto l1052; if (!yy_Spnl(ctx)) goto l1052; if (!yymatchChar(ctx, '/')) goto l1052; + { int yypos1053= ctx->pos, yythunkpos1053= ctx->thunkpos; if (!yymatchString(ctx, "menu")) goto l1054; goto l1053; + l1054:; ctx->pos= yypos1053; ctx->thunkpos= yythunkpos1053; if (!yymatchString(ctx, "MENU")) goto l1052; + } + l1053:; if (!yy_Spnl(ctx)) goto l1052; if (!yymatchChar(ctx, '>')) goto l1052; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseMenu", ctx->buf+ctx->pos)); + return 1; + l1052:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseMenu", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenMenu(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenMenu")); if (!yymatchChar(ctx, '<')) goto l1055; if (!yy_Spnl(ctx)) goto l1055; + { int yypos1056= ctx->pos, yythunkpos1056= ctx->thunkpos; if (!yymatchString(ctx, "menu")) goto l1057; goto l1056; + l1057:; ctx->pos= yypos1056; ctx->thunkpos= yythunkpos1056; if (!yymatchString(ctx, "MENU")) goto l1055; + } + l1056:; if (!yy_Spnl(ctx)) goto l1055; + l1058:; + { int yypos1059= ctx->pos, yythunkpos1059= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1059; goto l1058; + l1059:; ctx->pos= yypos1059; ctx->thunkpos= yythunkpos1059; + } if (!yymatchChar(ctx, '>')) goto l1055; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenMenu", ctx->buf+ctx->pos)); + return 1; + l1055:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenMenu", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH6(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH6")); if (!yy_HtmlBlockOpenH6(ctx)) goto l1060; + l1061:; + { int yypos1062= ctx->pos, yythunkpos1062= ctx->thunkpos; + { int yypos1063= ctx->pos, yythunkpos1063= ctx->thunkpos; if (!yy_HtmlBlockH6(ctx)) goto l1064; goto l1063; + l1064:; ctx->pos= yypos1063; ctx->thunkpos= yythunkpos1063; + { int yypos1065= ctx->pos, yythunkpos1065= ctx->thunkpos; if (!yy_HtmlBlockCloseH6(ctx)) goto l1065; goto l1062; + l1065:; ctx->pos= yypos1065; ctx->thunkpos= yythunkpos1065; + } if (!yymatchDot(ctx)) goto l1062; + } + l1063:; goto l1061; + l1062:; ctx->pos= yypos1062; ctx->thunkpos= yythunkpos1062; + } if (!yy_HtmlBlockCloseH6(ctx)) goto l1060; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH6", ctx->buf+ctx->pos)); + return 1; + l1060:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH6", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH6(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH6")); if (!yymatchChar(ctx, '<')) goto l1066; if (!yy_Spnl(ctx)) goto l1066; if (!yymatchChar(ctx, '/')) goto l1066; + { int yypos1067= ctx->pos, yythunkpos1067= ctx->thunkpos; if (!yymatchString(ctx, "h6")) goto l1068; goto l1067; + l1068:; ctx->pos= yypos1067; ctx->thunkpos= yythunkpos1067; if (!yymatchString(ctx, "H6")) goto l1066; + } + l1067:; if (!yy_Spnl(ctx)) goto l1066; if (!yymatchChar(ctx, '>')) goto l1066; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH6", ctx->buf+ctx->pos)); + return 1; + l1066:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH6", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH6(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH6")); if (!yymatchChar(ctx, '<')) goto l1069; if (!yy_Spnl(ctx)) goto l1069; + { int yypos1070= ctx->pos, yythunkpos1070= ctx->thunkpos; if (!yymatchString(ctx, "h6")) goto l1071; goto l1070; + l1071:; ctx->pos= yypos1070; ctx->thunkpos= yythunkpos1070; if (!yymatchString(ctx, "H6")) goto l1069; + } + l1070:; if (!yy_Spnl(ctx)) goto l1069; + l1072:; + { int yypos1073= ctx->pos, yythunkpos1073= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1073; goto l1072; + l1073:; ctx->pos= yypos1073; ctx->thunkpos= yythunkpos1073; + } if (!yymatchChar(ctx, '>')) goto l1069; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH6", ctx->buf+ctx->pos)); + return 1; + l1069:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH6", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH5(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH5")); if (!yy_HtmlBlockOpenH5(ctx)) goto l1074; + l1075:; + { int yypos1076= ctx->pos, yythunkpos1076= ctx->thunkpos; + { int yypos1077= ctx->pos, yythunkpos1077= ctx->thunkpos; if (!yy_HtmlBlockH5(ctx)) goto l1078; goto l1077; + l1078:; ctx->pos= yypos1077; ctx->thunkpos= yythunkpos1077; + { int yypos1079= ctx->pos, yythunkpos1079= ctx->thunkpos; if (!yy_HtmlBlockCloseH5(ctx)) goto l1079; goto l1076; + l1079:; ctx->pos= yypos1079; ctx->thunkpos= yythunkpos1079; + } if (!yymatchDot(ctx)) goto l1076; + } + l1077:; goto l1075; + l1076:; ctx->pos= yypos1076; ctx->thunkpos= yythunkpos1076; + } if (!yy_HtmlBlockCloseH5(ctx)) goto l1074; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH5", ctx->buf+ctx->pos)); + return 1; + l1074:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH5", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH5(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH5")); if (!yymatchChar(ctx, '<')) goto l1080; if (!yy_Spnl(ctx)) goto l1080; if (!yymatchChar(ctx, '/')) goto l1080; + { int yypos1081= ctx->pos, yythunkpos1081= ctx->thunkpos; if (!yymatchString(ctx, "h5")) goto l1082; goto l1081; + l1082:; ctx->pos= yypos1081; ctx->thunkpos= yythunkpos1081; if (!yymatchString(ctx, "H5")) goto l1080; + } + l1081:; if (!yy_Spnl(ctx)) goto l1080; if (!yymatchChar(ctx, '>')) goto l1080; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH5", ctx->buf+ctx->pos)); + return 1; + l1080:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH5", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH5(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH5")); if (!yymatchChar(ctx, '<')) goto l1083; if (!yy_Spnl(ctx)) goto l1083; + { int yypos1084= ctx->pos, yythunkpos1084= ctx->thunkpos; if (!yymatchString(ctx, "h5")) goto l1085; goto l1084; + l1085:; ctx->pos= yypos1084; ctx->thunkpos= yythunkpos1084; if (!yymatchString(ctx, "H5")) goto l1083; + } + l1084:; if (!yy_Spnl(ctx)) goto l1083; + l1086:; + { int yypos1087= ctx->pos, yythunkpos1087= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1087; goto l1086; + l1087:; ctx->pos= yypos1087; ctx->thunkpos= yythunkpos1087; + } if (!yymatchChar(ctx, '>')) goto l1083; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH5", ctx->buf+ctx->pos)); + return 1; + l1083:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH5", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH4(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH4")); if (!yy_HtmlBlockOpenH4(ctx)) goto l1088; + l1089:; + { int yypos1090= ctx->pos, yythunkpos1090= ctx->thunkpos; + { int yypos1091= ctx->pos, yythunkpos1091= ctx->thunkpos; if (!yy_HtmlBlockH4(ctx)) goto l1092; goto l1091; + l1092:; ctx->pos= yypos1091; ctx->thunkpos= yythunkpos1091; + { int yypos1093= ctx->pos, yythunkpos1093= ctx->thunkpos; if (!yy_HtmlBlockCloseH4(ctx)) goto l1093; goto l1090; + l1093:; ctx->pos= yypos1093; ctx->thunkpos= yythunkpos1093; + } if (!yymatchDot(ctx)) goto l1090; + } + l1091:; goto l1089; + l1090:; ctx->pos= yypos1090; ctx->thunkpos= yythunkpos1090; + } if (!yy_HtmlBlockCloseH4(ctx)) goto l1088; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH4", ctx->buf+ctx->pos)); + return 1; + l1088:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH4", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH4(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH4")); if (!yymatchChar(ctx, '<')) goto l1094; if (!yy_Spnl(ctx)) goto l1094; if (!yymatchChar(ctx, '/')) goto l1094; + { int yypos1095= ctx->pos, yythunkpos1095= ctx->thunkpos; if (!yymatchString(ctx, "h4")) goto l1096; goto l1095; + l1096:; ctx->pos= yypos1095; ctx->thunkpos= yythunkpos1095; if (!yymatchString(ctx, "H4")) goto l1094; + } + l1095:; if (!yy_Spnl(ctx)) goto l1094; if (!yymatchChar(ctx, '>')) goto l1094; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH4", ctx->buf+ctx->pos)); + return 1; + l1094:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH4", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH4(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH4")); if (!yymatchChar(ctx, '<')) goto l1097; if (!yy_Spnl(ctx)) goto l1097; + { int yypos1098= ctx->pos, yythunkpos1098= ctx->thunkpos; if (!yymatchString(ctx, "h4")) goto l1099; goto l1098; + l1099:; ctx->pos= yypos1098; ctx->thunkpos= yythunkpos1098; if (!yymatchString(ctx, "H4")) goto l1097; + } + l1098:; if (!yy_Spnl(ctx)) goto l1097; + l1100:; + { int yypos1101= ctx->pos, yythunkpos1101= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1101; goto l1100; + l1101:; ctx->pos= yypos1101; ctx->thunkpos= yythunkpos1101; + } if (!yymatchChar(ctx, '>')) goto l1097; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH4", ctx->buf+ctx->pos)); + return 1; + l1097:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH4", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH3(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH3")); if (!yy_HtmlBlockOpenH3(ctx)) goto l1102; + l1103:; + { int yypos1104= ctx->pos, yythunkpos1104= ctx->thunkpos; + { int yypos1105= ctx->pos, yythunkpos1105= ctx->thunkpos; if (!yy_HtmlBlockH3(ctx)) goto l1106; goto l1105; + l1106:; ctx->pos= yypos1105; ctx->thunkpos= yythunkpos1105; + { int yypos1107= ctx->pos, yythunkpos1107= ctx->thunkpos; if (!yy_HtmlBlockCloseH3(ctx)) goto l1107; goto l1104; + l1107:; ctx->pos= yypos1107; ctx->thunkpos= yythunkpos1107; + } if (!yymatchDot(ctx)) goto l1104; + } + l1105:; goto l1103; + l1104:; ctx->pos= yypos1104; ctx->thunkpos= yythunkpos1104; + } if (!yy_HtmlBlockCloseH3(ctx)) goto l1102; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH3", ctx->buf+ctx->pos)); + return 1; + l1102:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH3", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH3(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH3")); if (!yymatchChar(ctx, '<')) goto l1108; if (!yy_Spnl(ctx)) goto l1108; if (!yymatchChar(ctx, '/')) goto l1108; + { int yypos1109= ctx->pos, yythunkpos1109= ctx->thunkpos; if (!yymatchString(ctx, "h3")) goto l1110; goto l1109; + l1110:; ctx->pos= yypos1109; ctx->thunkpos= yythunkpos1109; if (!yymatchString(ctx, "H3")) goto l1108; + } + l1109:; if (!yy_Spnl(ctx)) goto l1108; if (!yymatchChar(ctx, '>')) goto l1108; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH3", ctx->buf+ctx->pos)); + return 1; + l1108:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH3", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH3(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH3")); if (!yymatchChar(ctx, '<')) goto l1111; if (!yy_Spnl(ctx)) goto l1111; + { int yypos1112= ctx->pos, yythunkpos1112= ctx->thunkpos; if (!yymatchString(ctx, "h3")) goto l1113; goto l1112; + l1113:; ctx->pos= yypos1112; ctx->thunkpos= yythunkpos1112; if (!yymatchString(ctx, "H3")) goto l1111; + } + l1112:; if (!yy_Spnl(ctx)) goto l1111; + l1114:; + { int yypos1115= ctx->pos, yythunkpos1115= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1115; goto l1114; + l1115:; ctx->pos= yypos1115; ctx->thunkpos= yythunkpos1115; + } if (!yymatchChar(ctx, '>')) goto l1111; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH3", ctx->buf+ctx->pos)); + return 1; + l1111:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH3", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH2")); if (!yy_HtmlBlockOpenH2(ctx)) goto l1116; + l1117:; + { int yypos1118= ctx->pos, yythunkpos1118= ctx->thunkpos; + { int yypos1119= ctx->pos, yythunkpos1119= ctx->thunkpos; if (!yy_HtmlBlockH2(ctx)) goto l1120; goto l1119; + l1120:; ctx->pos= yypos1119; ctx->thunkpos= yythunkpos1119; + { int yypos1121= ctx->pos, yythunkpos1121= ctx->thunkpos; if (!yy_HtmlBlockCloseH2(ctx)) goto l1121; goto l1118; + l1121:; ctx->pos= yypos1121; ctx->thunkpos= yythunkpos1121; + } if (!yymatchDot(ctx)) goto l1118; + } + l1119:; goto l1117; + l1118:; ctx->pos= yypos1118; ctx->thunkpos= yythunkpos1118; + } if (!yy_HtmlBlockCloseH2(ctx)) goto l1116; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH2", ctx->buf+ctx->pos)); + return 1; + l1116:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH2")); if (!yymatchChar(ctx, '<')) goto l1122; if (!yy_Spnl(ctx)) goto l1122; if (!yymatchChar(ctx, '/')) goto l1122; + { int yypos1123= ctx->pos, yythunkpos1123= ctx->thunkpos; if (!yymatchString(ctx, "h2")) goto l1124; goto l1123; + l1124:; ctx->pos= yypos1123; ctx->thunkpos= yythunkpos1123; if (!yymatchString(ctx, "H2")) goto l1122; + } + l1123:; if (!yy_Spnl(ctx)) goto l1122; if (!yymatchChar(ctx, '>')) goto l1122; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH2", ctx->buf+ctx->pos)); + return 1; + l1122:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH2")); if (!yymatchChar(ctx, '<')) goto l1125; if (!yy_Spnl(ctx)) goto l1125; + { int yypos1126= ctx->pos, yythunkpos1126= ctx->thunkpos; if (!yymatchString(ctx, "h2")) goto l1127; goto l1126; + l1127:; ctx->pos= yypos1126; ctx->thunkpos= yythunkpos1126; if (!yymatchString(ctx, "H2")) goto l1125; + } + l1126:; if (!yy_Spnl(ctx)) goto l1125; + l1128:; + { int yypos1129= ctx->pos, yythunkpos1129= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1129; goto l1128; + l1129:; ctx->pos= yypos1129; ctx->thunkpos= yythunkpos1129; + } if (!yymatchChar(ctx, '>')) goto l1125; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH2", ctx->buf+ctx->pos)); + return 1; + l1125:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockH1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockH1")); if (!yy_HtmlBlockOpenH1(ctx)) goto l1130; + l1131:; + { int yypos1132= ctx->pos, yythunkpos1132= ctx->thunkpos; + { int yypos1133= ctx->pos, yythunkpos1133= ctx->thunkpos; if (!yy_HtmlBlockH1(ctx)) goto l1134; goto l1133; + l1134:; ctx->pos= yypos1133; ctx->thunkpos= yythunkpos1133; + { int yypos1135= ctx->pos, yythunkpos1135= ctx->thunkpos; if (!yy_HtmlBlockCloseH1(ctx)) goto l1135; goto l1132; + l1135:; ctx->pos= yypos1135; ctx->thunkpos= yythunkpos1135; + } if (!yymatchDot(ctx)) goto l1132; + } + l1133:; goto l1131; + l1132:; ctx->pos= yypos1132; ctx->thunkpos= yythunkpos1132; + } if (!yy_HtmlBlockCloseH1(ctx)) goto l1130; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockH1", ctx->buf+ctx->pos)); + return 1; + l1130:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockH1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseH1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseH1")); if (!yymatchChar(ctx, '<')) goto l1136; if (!yy_Spnl(ctx)) goto l1136; if (!yymatchChar(ctx, '/')) goto l1136; + { int yypos1137= ctx->pos, yythunkpos1137= ctx->thunkpos; if (!yymatchString(ctx, "h1")) goto l1138; goto l1137; + l1138:; ctx->pos= yypos1137; ctx->thunkpos= yythunkpos1137; if (!yymatchString(ctx, "H1")) goto l1136; + } + l1137:; if (!yy_Spnl(ctx)) goto l1136; if (!yymatchChar(ctx, '>')) goto l1136; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseH1", ctx->buf+ctx->pos)); + return 1; + l1136:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseH1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenH1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenH1")); if (!yymatchChar(ctx, '<')) goto l1139; if (!yy_Spnl(ctx)) goto l1139; + { int yypos1140= ctx->pos, yythunkpos1140= ctx->thunkpos; if (!yymatchString(ctx, "h1")) goto l1141; goto l1140; + l1141:; ctx->pos= yypos1140; ctx->thunkpos= yythunkpos1140; if (!yymatchString(ctx, "H1")) goto l1139; + } + l1140:; if (!yy_Spnl(ctx)) goto l1139; + l1142:; + { int yypos1143= ctx->pos, yythunkpos1143= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1143; goto l1142; + l1143:; ctx->pos= yypos1143; ctx->thunkpos= yythunkpos1143; + } if (!yymatchChar(ctx, '>')) goto l1139; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenH1", ctx->buf+ctx->pos)); + return 1; + l1139:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenH1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockForm(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockForm")); if (!yy_HtmlBlockOpenForm(ctx)) goto l1144; + l1145:; + { int yypos1146= ctx->pos, yythunkpos1146= ctx->thunkpos; + { int yypos1147= ctx->pos, yythunkpos1147= ctx->thunkpos; if (!yy_HtmlBlockForm(ctx)) goto l1148; goto l1147; + l1148:; ctx->pos= yypos1147; ctx->thunkpos= yythunkpos1147; + { int yypos1149= ctx->pos, yythunkpos1149= ctx->thunkpos; if (!yy_HtmlBlockCloseForm(ctx)) goto l1149; goto l1146; + l1149:; ctx->pos= yypos1149; ctx->thunkpos= yythunkpos1149; + } if (!yymatchDot(ctx)) goto l1146; + } + l1147:; goto l1145; + l1146:; ctx->pos= yypos1146; ctx->thunkpos= yythunkpos1146; + } if (!yy_HtmlBlockCloseForm(ctx)) goto l1144; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockForm", ctx->buf+ctx->pos)); + return 1; + l1144:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockForm", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseForm(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseForm")); if (!yymatchChar(ctx, '<')) goto l1150; if (!yy_Spnl(ctx)) goto l1150; if (!yymatchChar(ctx, '/')) goto l1150; + { int yypos1151= ctx->pos, yythunkpos1151= ctx->thunkpos; if (!yymatchString(ctx, "form")) goto l1152; goto l1151; + l1152:; ctx->pos= yypos1151; ctx->thunkpos= yythunkpos1151; if (!yymatchString(ctx, "FORM")) goto l1150; + } + l1151:; if (!yy_Spnl(ctx)) goto l1150; if (!yymatchChar(ctx, '>')) goto l1150; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseForm", ctx->buf+ctx->pos)); + return 1; + l1150:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseForm", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenForm(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenForm")); if (!yymatchChar(ctx, '<')) goto l1153; if (!yy_Spnl(ctx)) goto l1153; + { int yypos1154= ctx->pos, yythunkpos1154= ctx->thunkpos; if (!yymatchString(ctx, "form")) goto l1155; goto l1154; + l1155:; ctx->pos= yypos1154; ctx->thunkpos= yythunkpos1154; if (!yymatchString(ctx, "FORM")) goto l1153; + } + l1154:; if (!yy_Spnl(ctx)) goto l1153; + l1156:; + { int yypos1157= ctx->pos, yythunkpos1157= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1157; goto l1156; + l1157:; ctx->pos= yypos1157; ctx->thunkpos= yythunkpos1157; + } if (!yymatchChar(ctx, '>')) goto l1153; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenForm", ctx->buf+ctx->pos)); + return 1; + l1153:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenForm", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockFieldset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockFieldset")); if (!yy_HtmlBlockOpenFieldset(ctx)) goto l1158; + l1159:; + { int yypos1160= ctx->pos, yythunkpos1160= ctx->thunkpos; + { int yypos1161= ctx->pos, yythunkpos1161= ctx->thunkpos; if (!yy_HtmlBlockFieldset(ctx)) goto l1162; goto l1161; + l1162:; ctx->pos= yypos1161; ctx->thunkpos= yythunkpos1161; + { int yypos1163= ctx->pos, yythunkpos1163= ctx->thunkpos; if (!yy_HtmlBlockCloseFieldset(ctx)) goto l1163; goto l1160; + l1163:; ctx->pos= yypos1163; ctx->thunkpos= yythunkpos1163; + } if (!yymatchDot(ctx)) goto l1160; + } + l1161:; goto l1159; + l1160:; ctx->pos= yypos1160; ctx->thunkpos= yythunkpos1160; + } if (!yy_HtmlBlockCloseFieldset(ctx)) goto l1158; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockFieldset", ctx->buf+ctx->pos)); + return 1; + l1158:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockFieldset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseFieldset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseFieldset")); if (!yymatchChar(ctx, '<')) goto l1164; if (!yy_Spnl(ctx)) goto l1164; if (!yymatchChar(ctx, '/')) goto l1164; + { int yypos1165= ctx->pos, yythunkpos1165= ctx->thunkpos; if (!yymatchString(ctx, "fieldset")) goto l1166; goto l1165; + l1166:; ctx->pos= yypos1165; ctx->thunkpos= yythunkpos1165; if (!yymatchString(ctx, "FIELDSET")) goto l1164; + } + l1165:; if (!yy_Spnl(ctx)) goto l1164; if (!yymatchChar(ctx, '>')) goto l1164; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseFieldset", ctx->buf+ctx->pos)); + return 1; + l1164:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseFieldset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenFieldset(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenFieldset")); if (!yymatchChar(ctx, '<')) goto l1167; if (!yy_Spnl(ctx)) goto l1167; + { int yypos1168= ctx->pos, yythunkpos1168= ctx->thunkpos; if (!yymatchString(ctx, "fieldset")) goto l1169; goto l1168; + l1169:; ctx->pos= yypos1168; ctx->thunkpos= yythunkpos1168; if (!yymatchString(ctx, "FIELDSET")) goto l1167; + } + l1168:; if (!yy_Spnl(ctx)) goto l1167; + l1170:; + { int yypos1171= ctx->pos, yythunkpos1171= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1171; goto l1170; + l1171:; ctx->pos= yypos1171; ctx->thunkpos= yythunkpos1171; + } if (!yymatchChar(ctx, '>')) goto l1167; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenFieldset", ctx->buf+ctx->pos)); + return 1; + l1167:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenFieldset", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockDl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockDl")); if (!yy_HtmlBlockOpenDl(ctx)) goto l1172; + l1173:; + { int yypos1174= ctx->pos, yythunkpos1174= ctx->thunkpos; + { int yypos1175= ctx->pos, yythunkpos1175= ctx->thunkpos; if (!yy_HtmlBlockDl(ctx)) goto l1176; goto l1175; + l1176:; ctx->pos= yypos1175; ctx->thunkpos= yythunkpos1175; + { int yypos1177= ctx->pos, yythunkpos1177= ctx->thunkpos; if (!yy_HtmlBlockCloseDl(ctx)) goto l1177; goto l1174; + l1177:; ctx->pos= yypos1177; ctx->thunkpos= yythunkpos1177; + } if (!yymatchDot(ctx)) goto l1174; + } + l1175:; goto l1173; + l1174:; ctx->pos= yypos1174; ctx->thunkpos= yythunkpos1174; + } if (!yy_HtmlBlockCloseDl(ctx)) goto l1172; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockDl", ctx->buf+ctx->pos)); + return 1; + l1172:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockDl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseDl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseDl")); if (!yymatchChar(ctx, '<')) goto l1178; if (!yy_Spnl(ctx)) goto l1178; if (!yymatchChar(ctx, '/')) goto l1178; + { int yypos1179= ctx->pos, yythunkpos1179= ctx->thunkpos; if (!yymatchString(ctx, "dl")) goto l1180; goto l1179; + l1180:; ctx->pos= yypos1179; ctx->thunkpos= yythunkpos1179; if (!yymatchString(ctx, "DL")) goto l1178; + } + l1179:; if (!yy_Spnl(ctx)) goto l1178; if (!yymatchChar(ctx, '>')) goto l1178; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDl", ctx->buf+ctx->pos)); + return 1; + l1178:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenDl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenDl")); if (!yymatchChar(ctx, '<')) goto l1181; if (!yy_Spnl(ctx)) goto l1181; + { int yypos1182= ctx->pos, yythunkpos1182= ctx->thunkpos; if (!yymatchString(ctx, "dl")) goto l1183; goto l1182; + l1183:; ctx->pos= yypos1182; ctx->thunkpos= yythunkpos1182; if (!yymatchString(ctx, "DL")) goto l1181; + } + l1182:; if (!yy_Spnl(ctx)) goto l1181; + l1184:; + { int yypos1185= ctx->pos, yythunkpos1185= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1185; goto l1184; + l1185:; ctx->pos= yypos1185; ctx->thunkpos= yythunkpos1185; + } if (!yymatchChar(ctx, '>')) goto l1181; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDl", ctx->buf+ctx->pos)); + return 1; + l1181:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockDiv(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockDiv")); if (!yy_HtmlBlockOpenDiv(ctx)) goto l1186; + l1187:; + { int yypos1188= ctx->pos, yythunkpos1188= ctx->thunkpos; + { int yypos1189= ctx->pos, yythunkpos1189= ctx->thunkpos; if (!yy_HtmlBlockDiv(ctx)) goto l1190; goto l1189; + l1190:; ctx->pos= yypos1189; ctx->thunkpos= yythunkpos1189; + { int yypos1191= ctx->pos, yythunkpos1191= ctx->thunkpos; if (!yy_HtmlBlockCloseDiv(ctx)) goto l1191; goto l1188; + l1191:; ctx->pos= yypos1191; ctx->thunkpos= yythunkpos1191; + } if (!yymatchDot(ctx)) goto l1188; + } + l1189:; goto l1187; + l1188:; ctx->pos= yypos1188; ctx->thunkpos= yythunkpos1188; + } if (!yy_HtmlBlockCloseDiv(ctx)) goto l1186; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockDiv", ctx->buf+ctx->pos)); + return 1; + l1186:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockDiv", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseDiv(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseDiv")); if (!yymatchChar(ctx, '<')) goto l1192; if (!yy_Spnl(ctx)) goto l1192; if (!yymatchChar(ctx, '/')) goto l1192; + { int yypos1193= ctx->pos, yythunkpos1193= ctx->thunkpos; if (!yymatchString(ctx, "div")) goto l1194; goto l1193; + l1194:; ctx->pos= yypos1193; ctx->thunkpos= yythunkpos1193; if (!yymatchString(ctx, "DIV")) goto l1192; + } + l1193:; if (!yy_Spnl(ctx)) goto l1192; if (!yymatchChar(ctx, '>')) goto l1192; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDiv", ctx->buf+ctx->pos)); + return 1; + l1192:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDiv", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenDiv(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenDiv")); if (!yymatchChar(ctx, '<')) goto l1195; if (!yy_Spnl(ctx)) goto l1195; + { int yypos1196= ctx->pos, yythunkpos1196= ctx->thunkpos; if (!yymatchString(ctx, "div")) goto l1197; goto l1196; + l1197:; ctx->pos= yypos1196; ctx->thunkpos= yythunkpos1196; if (!yymatchString(ctx, "DIV")) goto l1195; + } + l1196:; if (!yy_Spnl(ctx)) goto l1195; + l1198:; + { int yypos1199= ctx->pos, yythunkpos1199= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1199; goto l1198; + l1199:; ctx->pos= yypos1199; ctx->thunkpos= yythunkpos1199; + } if (!yymatchChar(ctx, '>')) goto l1195; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDiv", ctx->buf+ctx->pos)); + return 1; + l1195:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDiv", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockDir(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockDir")); if (!yy_HtmlBlockOpenDir(ctx)) goto l1200; + l1201:; + { int yypos1202= ctx->pos, yythunkpos1202= ctx->thunkpos; + { int yypos1203= ctx->pos, yythunkpos1203= ctx->thunkpos; if (!yy_HtmlBlockDir(ctx)) goto l1204; goto l1203; + l1204:; ctx->pos= yypos1203; ctx->thunkpos= yythunkpos1203; + { int yypos1205= ctx->pos, yythunkpos1205= ctx->thunkpos; if (!yy_HtmlBlockCloseDir(ctx)) goto l1205; goto l1202; + l1205:; ctx->pos= yypos1205; ctx->thunkpos= yythunkpos1205; + } if (!yymatchDot(ctx)) goto l1202; + } + l1203:; goto l1201; + l1202:; ctx->pos= yypos1202; ctx->thunkpos= yythunkpos1202; + } if (!yy_HtmlBlockCloseDir(ctx)) goto l1200; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockDir", ctx->buf+ctx->pos)); + return 1; + l1200:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockDir", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseDir(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseDir")); if (!yymatchChar(ctx, '<')) goto l1206; if (!yy_Spnl(ctx)) goto l1206; if (!yymatchChar(ctx, '/')) goto l1206; + { int yypos1207= ctx->pos, yythunkpos1207= ctx->thunkpos; if (!yymatchString(ctx, "dir")) goto l1208; goto l1207; + l1208:; ctx->pos= yypos1207; ctx->thunkpos= yythunkpos1207; if (!yymatchString(ctx, "DIR")) goto l1206; + } + l1207:; if (!yy_Spnl(ctx)) goto l1206; if (!yymatchChar(ctx, '>')) goto l1206; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseDir", ctx->buf+ctx->pos)); + return 1; + l1206:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseDir", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenDir(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenDir")); if (!yymatchChar(ctx, '<')) goto l1209; if (!yy_Spnl(ctx)) goto l1209; + { int yypos1210= ctx->pos, yythunkpos1210= ctx->thunkpos; if (!yymatchString(ctx, "dir")) goto l1211; goto l1210; + l1211:; ctx->pos= yypos1210; ctx->thunkpos= yythunkpos1210; if (!yymatchString(ctx, "DIR")) goto l1209; + } + l1210:; if (!yy_Spnl(ctx)) goto l1209; + l1212:; + { int yypos1213= ctx->pos, yythunkpos1213= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1213; goto l1212; + l1213:; ctx->pos= yypos1213; ctx->thunkpos= yythunkpos1213; + } if (!yymatchChar(ctx, '>')) goto l1209; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenDir", ctx->buf+ctx->pos)); + return 1; + l1209:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenDir", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCenter(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCenter")); if (!yy_HtmlBlockOpenCenter(ctx)) goto l1214; + l1215:; + { int yypos1216= ctx->pos, yythunkpos1216= ctx->thunkpos; + { int yypos1217= ctx->pos, yythunkpos1217= ctx->thunkpos; if (!yy_HtmlBlockCenter(ctx)) goto l1218; goto l1217; + l1218:; ctx->pos= yypos1217; ctx->thunkpos= yythunkpos1217; + { int yypos1219= ctx->pos, yythunkpos1219= ctx->thunkpos; if (!yy_HtmlBlockCloseCenter(ctx)) goto l1219; goto l1216; + l1219:; ctx->pos= yypos1219; ctx->thunkpos= yythunkpos1219; + } if (!yymatchDot(ctx)) goto l1216; + } + l1217:; goto l1215; + l1216:; ctx->pos= yypos1216; ctx->thunkpos= yythunkpos1216; + } if (!yy_HtmlBlockCloseCenter(ctx)) goto l1214; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCenter", ctx->buf+ctx->pos)); + return 1; + l1214:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCenter", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseCenter(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseCenter")); if (!yymatchChar(ctx, '<')) goto l1220; if (!yy_Spnl(ctx)) goto l1220; if (!yymatchChar(ctx, '/')) goto l1220; + { int yypos1221= ctx->pos, yythunkpos1221= ctx->thunkpos; if (!yymatchString(ctx, "center")) goto l1222; goto l1221; + l1222:; ctx->pos= yypos1221; ctx->thunkpos= yythunkpos1221; if (!yymatchString(ctx, "CENTER")) goto l1220; + } + l1221:; if (!yy_Spnl(ctx)) goto l1220; if (!yymatchChar(ctx, '>')) goto l1220; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseCenter", ctx->buf+ctx->pos)); + return 1; + l1220:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseCenter", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenCenter(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenCenter")); if (!yymatchChar(ctx, '<')) goto l1223; if (!yy_Spnl(ctx)) goto l1223; + { int yypos1224= ctx->pos, yythunkpos1224= ctx->thunkpos; if (!yymatchString(ctx, "center")) goto l1225; goto l1224; + l1225:; ctx->pos= yypos1224; ctx->thunkpos= yythunkpos1224; if (!yymatchString(ctx, "CENTER")) goto l1223; + } + l1224:; if (!yy_Spnl(ctx)) goto l1223; + l1226:; + { int yypos1227= ctx->pos, yythunkpos1227= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1227; goto l1226; + l1227:; ctx->pos= yypos1227; ctx->thunkpos= yythunkpos1227; + } if (!yymatchChar(ctx, '>')) goto l1223; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenCenter", ctx->buf+ctx->pos)); + return 1; + l1223:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenCenter", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockBlockquote(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockBlockquote")); if (!yy_HtmlBlockOpenBlockquote(ctx)) goto l1228; + l1229:; + { int yypos1230= ctx->pos, yythunkpos1230= ctx->thunkpos; + { int yypos1231= ctx->pos, yythunkpos1231= ctx->thunkpos; if (!yy_HtmlBlockBlockquote(ctx)) goto l1232; goto l1231; + l1232:; ctx->pos= yypos1231; ctx->thunkpos= yythunkpos1231; + { int yypos1233= ctx->pos, yythunkpos1233= ctx->thunkpos; if (!yy_HtmlBlockCloseBlockquote(ctx)) goto l1233; goto l1230; + l1233:; ctx->pos= yypos1233; ctx->thunkpos= yythunkpos1233; + } if (!yymatchDot(ctx)) goto l1230; + } + l1231:; goto l1229; + l1230:; ctx->pos= yypos1230; ctx->thunkpos= yythunkpos1230; + } if (!yy_HtmlBlockCloseBlockquote(ctx)) goto l1228; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockBlockquote", ctx->buf+ctx->pos)); + return 1; + l1228:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockBlockquote", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseBlockquote(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseBlockquote")); if (!yymatchChar(ctx, '<')) goto l1234; if (!yy_Spnl(ctx)) goto l1234; if (!yymatchChar(ctx, '/')) goto l1234; + { int yypos1235= ctx->pos, yythunkpos1235= ctx->thunkpos; if (!yymatchString(ctx, "blockquote")) goto l1236; goto l1235; + l1236:; ctx->pos= yypos1235; ctx->thunkpos= yythunkpos1235; if (!yymatchString(ctx, "BLOCKQUOTE")) goto l1234; + } + l1235:; if (!yy_Spnl(ctx)) goto l1234; if (!yymatchChar(ctx, '>')) goto l1234; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseBlockquote", ctx->buf+ctx->pos)); + return 1; + l1234:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseBlockquote", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenBlockquote(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenBlockquote")); if (!yymatchChar(ctx, '<')) goto l1237; if (!yy_Spnl(ctx)) goto l1237; + { int yypos1238= ctx->pos, yythunkpos1238= ctx->thunkpos; if (!yymatchString(ctx, "blockquote")) goto l1239; goto l1238; + l1239:; ctx->pos= yypos1238; ctx->thunkpos= yythunkpos1238; if (!yymatchString(ctx, "BLOCKQUOTE")) goto l1237; + } + l1238:; if (!yy_Spnl(ctx)) goto l1237; + l1240:; + { int yypos1241= ctx->pos, yythunkpos1241= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1241; goto l1240; + l1241:; ctx->pos= yypos1241; ctx->thunkpos= yythunkpos1241; + } if (!yymatchChar(ctx, '>')) goto l1237; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenBlockquote", ctx->buf+ctx->pos)); + return 1; + l1237:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenBlockquote", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockAddress(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockAddress")); if (!yy_HtmlBlockOpenAddress(ctx)) goto l1242; + l1243:; + { int yypos1244= ctx->pos, yythunkpos1244= ctx->thunkpos; + { int yypos1245= ctx->pos, yythunkpos1245= ctx->thunkpos; if (!yy_HtmlBlockAddress(ctx)) goto l1246; goto l1245; + l1246:; ctx->pos= yypos1245; ctx->thunkpos= yythunkpos1245; + { int yypos1247= ctx->pos, yythunkpos1247= ctx->thunkpos; if (!yy_HtmlBlockCloseAddress(ctx)) goto l1247; goto l1244; + l1247:; ctx->pos= yypos1247; ctx->thunkpos= yythunkpos1247; + } if (!yymatchDot(ctx)) goto l1244; + } + l1245:; goto l1243; + l1244:; ctx->pos= yypos1244; ctx->thunkpos= yythunkpos1244; + } if (!yy_HtmlBlockCloseAddress(ctx)) goto l1242; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockAddress", ctx->buf+ctx->pos)); + return 1; + l1242:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockAddress", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockCloseAddress(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockCloseAddress")); if (!yymatchChar(ctx, '<')) goto l1248; if (!yy_Spnl(ctx)) goto l1248; if (!yymatchChar(ctx, '/')) goto l1248; + { int yypos1249= ctx->pos, yythunkpos1249= ctx->thunkpos; if (!yymatchString(ctx, "address")) goto l1250; goto l1249; + l1250:; ctx->pos= yypos1249; ctx->thunkpos= yythunkpos1249; if (!yymatchString(ctx, "ADDRESS")) goto l1248; + } + l1249:; if (!yy_Spnl(ctx)) goto l1248; if (!yymatchChar(ctx, '>')) goto l1248; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockCloseAddress", ctx->buf+ctx->pos)); + return 1; + l1248:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockCloseAddress", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlAttribute(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlAttribute")); + { int yypos1254= ctx->pos, yythunkpos1254= ctx->thunkpos; if (!yy_AlphanumericAscii(ctx)) goto l1255; goto l1254; + l1255:; ctx->pos= yypos1254; ctx->thunkpos= yythunkpos1254; if (!yymatchChar(ctx, '-')) goto l1251; + } + l1254:; + l1252:; + { int yypos1253= ctx->pos, yythunkpos1253= ctx->thunkpos; + { int yypos1256= ctx->pos, yythunkpos1256= ctx->thunkpos; if (!yy_AlphanumericAscii(ctx)) goto l1257; goto l1256; + l1257:; ctx->pos= yypos1256; ctx->thunkpos= yythunkpos1256; if (!yymatchChar(ctx, '-')) goto l1253; + } + l1256:; goto l1252; + l1253:; ctx->pos= yypos1253; ctx->thunkpos= yythunkpos1253; + } if (!yy_Spnl(ctx)) goto l1251; + { int yypos1258= ctx->pos, yythunkpos1258= ctx->thunkpos; if (!yymatchChar(ctx, '=')) goto l1258; if (!yy_Spnl(ctx)) goto l1258; + { int yypos1260= ctx->pos, yythunkpos1260= ctx->thunkpos; if (!yy_Quoted(ctx)) goto l1261; goto l1260; + l1261:; ctx->pos= yypos1260; ctx->thunkpos= yythunkpos1260; + { int yypos1264= ctx->pos, yythunkpos1264= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l1264; goto l1258; + l1264:; ctx->pos= yypos1264; ctx->thunkpos= yythunkpos1264; + } if (!yy_Nonspacechar(ctx)) goto l1258; + l1262:; + { int yypos1263= ctx->pos, yythunkpos1263= ctx->thunkpos; + { int yypos1265= ctx->pos, yythunkpos1265= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l1265; goto l1263; + l1265:; ctx->pos= yypos1265; ctx->thunkpos= yythunkpos1265; + } if (!yy_Nonspacechar(ctx)) goto l1263; goto l1262; + l1263:; ctx->pos= yypos1263; ctx->thunkpos= yythunkpos1263; + } + } + l1260:; goto l1259; + l1258:; ctx->pos= yypos1258; ctx->thunkpos= yythunkpos1258; + } + l1259:; if (!yy_Spnl(ctx)) goto l1251; + yyprintf((stderr, " ok %s @ %s\n", "HtmlAttribute", ctx->buf+ctx->pos)); + return 1; + l1251:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlAttribute", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Spnl(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Spnl")); if (!yy_Sp(ctx)) goto l1266; + { int yypos1267= ctx->pos, yythunkpos1267= ctx->thunkpos; if (!yy_Newline(ctx)) goto l1267; if (!yy_Sp(ctx)) goto l1267; goto l1268; + l1267:; ctx->pos= yypos1267; ctx->thunkpos= yythunkpos1267; + } + l1268:; + yyprintf((stderr, " ok %s @ %s\n", "Spnl", ctx->buf+ctx->pos)); + return 1; + l1266:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Spnl", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlockOpenAddress(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlockOpenAddress")); if (!yymatchChar(ctx, '<')) goto l1269; if (!yy_Spnl(ctx)) goto l1269; + { int yypos1270= ctx->pos, yythunkpos1270= ctx->thunkpos; if (!yymatchString(ctx, "address")) goto l1271; goto l1270; + l1271:; ctx->pos= yypos1270; ctx->thunkpos= yythunkpos1270; if (!yymatchString(ctx, "ADDRESS")) goto l1269; + } + l1270:; if (!yy_Spnl(ctx)) goto l1269; + l1272:; + { int yypos1273= ctx->pos, yythunkpos1273= ctx->thunkpos; if (!yy_HtmlAttribute(ctx)) goto l1273; goto l1272; + l1273:; ctx->pos= yypos1273; ctx->thunkpos= yythunkpos1273; + } if (!yymatchChar(ctx, '>')) goto l1269; + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlockOpenAddress", ctx->buf+ctx->pos)); + return 1; + l1269:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlockOpenAddress", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_OptionallyIndentedLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "OptionallyIndentedLine")); + { int yypos1275= ctx->pos, yythunkpos1275= ctx->thunkpos; if (!yy_Indent(ctx)) goto l1275; goto l1276; + l1275:; ctx->pos= yypos1275; ctx->thunkpos= yythunkpos1275; + } + l1276:; if (!yy_Line(ctx)) goto l1274; + yyprintf((stderr, " ok %s @ %s\n", "OptionallyIndentedLine", ctx->buf+ctx->pos)); + return 1; + l1274:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "OptionallyIndentedLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Indent(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Indent")); + { int yypos1278= ctx->pos, yythunkpos1278= ctx->thunkpos; if (!yymatchChar(ctx, '\t')) goto l1279; goto l1278; + l1279:; ctx->pos= yypos1278; ctx->thunkpos= yythunkpos1278; if (!yymatchString(ctx, " ")) goto l1277; + } + l1278:; + yyprintf((stderr, " ok %s @ %s\n", "Indent", ctx->buf+ctx->pos)); + return 1; + l1277:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Indent", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListBlockLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "ListBlockLine")); + { int yypos1281= ctx->pos, yythunkpos1281= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1281; goto l1280; + l1281:; ctx->pos= yypos1281; ctx->thunkpos= yythunkpos1281; + } + { int yypos1282= ctx->pos, yythunkpos1282= ctx->thunkpos; + { int yypos1283= ctx->pos, yythunkpos1283= ctx->thunkpos; if (!yy_Indent(ctx)) goto l1283; goto l1284; + l1283:; ctx->pos= yypos1283; ctx->thunkpos= yythunkpos1283; + } + l1284:; + { int yypos1285= ctx->pos, yythunkpos1285= ctx->thunkpos; if (!yy_Bullet(ctx)) goto l1286; goto l1285; + l1286:; ctx->pos= yypos1285; ctx->thunkpos= yythunkpos1285; if (!yy_Enumerator(ctx)) goto l1282; + } + l1285:; goto l1280; + l1282:; ctx->pos= yypos1282; ctx->thunkpos= yythunkpos1282; + } + { int yypos1287= ctx->pos, yythunkpos1287= ctx->thunkpos; if (!yy_HorizontalRule(ctx)) goto l1287; goto l1280; + l1287:; ctx->pos= yypos1287; ctx->thunkpos= yythunkpos1287; + } if (!yy_OptionallyIndentedLine(ctx)) goto l1280; + yyprintf((stderr, " ok %s @ %s\n", "ListBlockLine", ctx->buf+ctx->pos)); + return 1; + l1280:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListBlockLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListContinuationBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ListContinuationBlock")); if (!yy_StartList(ctx)) goto l1288; yyDo(ctx, yySet, -1, 0); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1288; + l1289:; + { int yypos1290= ctx->pos, yythunkpos1290= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1290; goto l1289; + l1290:; ctx->pos= yypos1290; ctx->thunkpos= yythunkpos1290; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1288; yyDo(ctx, yy_1_ListContinuationBlock, ctx->begin, ctx->end); if (!yy_Indent(ctx)) goto l1288; if (!yy_ListBlock(ctx)) goto l1288; yyDo(ctx, yy_2_ListContinuationBlock, ctx->begin, ctx->end); + l1291:; + { int yypos1292= ctx->pos, yythunkpos1292= ctx->thunkpos; if (!yy_Indent(ctx)) goto l1292; if (!yy_ListBlock(ctx)) goto l1292; yyDo(ctx, yy_2_ListContinuationBlock, ctx->begin, ctx->end); goto l1291; + l1292:; ctx->pos= yypos1292; ctx->thunkpos= yythunkpos1292; + } yyDo(ctx, yy_3_ListContinuationBlock, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListContinuationBlock", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1288:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListContinuationBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ListBlock")); if (!yy_StartList(ctx)) goto l1293; yyDo(ctx, yySet, -1, 0); + { int yypos1294= ctx->pos, yythunkpos1294= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1294; goto l1293; + l1294:; ctx->pos= yypos1294; ctx->thunkpos= yythunkpos1294; + } if (!yy_Line(ctx)) goto l1293; yyDo(ctx, yy_1_ListBlock, ctx->begin, ctx->end); + l1295:; + { int yypos1296= ctx->pos, yythunkpos1296= ctx->thunkpos; if (!yy_ListBlockLine(ctx)) goto l1296; yyDo(ctx, yy_2_ListBlock, ctx->begin, ctx->end); goto l1295; + l1296:; ctx->pos= yypos1296; ctx->thunkpos= yythunkpos1296; + } yyDo(ctx, yy_3_ListBlock, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListBlock", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1293:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListItem(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ListItem")); + { int yypos1298= ctx->pos, yythunkpos1298= ctx->thunkpos; if (!yy_Bullet(ctx)) goto l1299; goto l1298; + l1299:; ctx->pos= yypos1298; ctx->thunkpos= yythunkpos1298; if (!yy_Enumerator(ctx)) goto l1297; + } + l1298:; if (!yy_StartList(ctx)) goto l1297; yyDo(ctx, yySet, -1, 0); if (!yy_ListBlock(ctx)) goto l1297; yyDo(ctx, yy_1_ListItem, ctx->begin, ctx->end); + l1300:; + { int yypos1301= ctx->pos, yythunkpos1301= ctx->thunkpos; if (!yy_ListContinuationBlock(ctx)) goto l1301; yyDo(ctx, yy_2_ListItem, ctx->begin, ctx->end); goto l1300; + l1301:; ctx->pos= yypos1301; ctx->thunkpos= yythunkpos1301; + } yyDo(ctx, yy_3_ListItem, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListItem", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1297:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListItem", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Enumerator(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Enumerator")); if (!yy_NonindentSpace(ctx)) goto l1302; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1302; + l1303:; + { int yypos1304= ctx->pos, yythunkpos1304= ctx->thunkpos; if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1304; goto l1303; + l1304:; ctx->pos= yypos1304; ctx->thunkpos= yythunkpos1304; + } if (!yymatchChar(ctx, '.')) goto l1302; if (!yy_Spacechar(ctx)) goto l1302; + l1305:; + { int yypos1306= ctx->pos, yythunkpos1306= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l1306; goto l1305; + l1306:; ctx->pos= yypos1306; ctx->thunkpos= yythunkpos1306; + } + yyprintf((stderr, " ok %s @ %s\n", "Enumerator", ctx->buf+ctx->pos)); + return 1; + l1302:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Enumerator", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListItemTight(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ListItemTight")); + { int yypos1308= ctx->pos, yythunkpos1308= ctx->thunkpos; if (!yy_Bullet(ctx)) goto l1309; goto l1308; + l1309:; ctx->pos= yypos1308; ctx->thunkpos= yythunkpos1308; if (!yy_Enumerator(ctx)) goto l1307; + } + l1308:; if (!yy_StartList(ctx)) goto l1307; yyDo(ctx, yySet, -1, 0); if (!yy_ListBlock(ctx)) goto l1307; yyDo(ctx, yy_1_ListItemTight, ctx->begin, ctx->end); + l1310:; + { int yypos1311= ctx->pos, yythunkpos1311= ctx->thunkpos; + { int yypos1312= ctx->pos, yythunkpos1312= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1312; goto l1311; + l1312:; ctx->pos= yypos1312; ctx->thunkpos= yythunkpos1312; + } if (!yy_ListContinuationBlock(ctx)) goto l1311; yyDo(ctx, yy_2_ListItemTight, ctx->begin, ctx->end); goto l1310; + l1311:; ctx->pos= yypos1311; ctx->thunkpos= yythunkpos1311; + } + { int yypos1313= ctx->pos, yythunkpos1313= ctx->thunkpos; if (!yy_ListContinuationBlock(ctx)) goto l1313; goto l1307; + l1313:; ctx->pos= yypos1313; ctx->thunkpos= yythunkpos1313; + } yyDo(ctx, yy_3_ListItemTight, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListItemTight", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1307:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListItemTight", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListLoose(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "ListLoose")); if (!yy_StartList(ctx)) goto l1314; yyDo(ctx, yySet, -2, 0); if (!yy_ListItem(ctx)) goto l1314; yyDo(ctx, yySet, -1, 0); + l1317:; + { int yypos1318= ctx->pos, yythunkpos1318= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1318; goto l1317; + l1318:; ctx->pos= yypos1318; ctx->thunkpos= yythunkpos1318; + } yyDo(ctx, yy_1_ListLoose, ctx->begin, ctx->end); + l1315:; + { int yypos1316= ctx->pos, yythunkpos1316= ctx->thunkpos; if (!yy_ListItem(ctx)) goto l1316; yyDo(ctx, yySet, -1, 0); + l1319:; + { int yypos1320= ctx->pos, yythunkpos1320= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1320; goto l1319; + l1320:; ctx->pos= yypos1320; ctx->thunkpos= yythunkpos1320; + } yyDo(ctx, yy_1_ListLoose, ctx->begin, ctx->end); goto l1315; + l1316:; ctx->pos= yypos1316; ctx->thunkpos= yythunkpos1316; + } yyDo(ctx, yy_2_ListLoose, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListLoose", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l1314:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListLoose", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_ListTight(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "ListTight")); if (!yy_StartList(ctx)) goto l1321; yyDo(ctx, yySet, -1, 0); if (!yy_ListItemTight(ctx)) goto l1321; yyDo(ctx, yy_1_ListTight, ctx->begin, ctx->end); + l1322:; + { int yypos1323= ctx->pos, yythunkpos1323= ctx->thunkpos; if (!yy_ListItemTight(ctx)) goto l1323; yyDo(ctx, yy_1_ListTight, ctx->begin, ctx->end); goto l1322; + l1323:; ctx->pos= yypos1323; ctx->thunkpos= yythunkpos1323; + } + l1324:; + { int yypos1325= ctx->pos, yythunkpos1325= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1325; goto l1324; + l1325:; ctx->pos= yypos1325; ctx->thunkpos= yythunkpos1325; + } + { int yypos1326= ctx->pos, yythunkpos1326= ctx->thunkpos; + { int yypos1327= ctx->pos, yythunkpos1327= ctx->thunkpos; if (!yy_Bullet(ctx)) goto l1328; goto l1327; + l1328:; ctx->pos= yypos1327; ctx->thunkpos= yythunkpos1327; if (!yy_Enumerator(ctx)) goto l1326; + } + l1327:; goto l1321; + l1326:; ctx->pos= yypos1326; ctx->thunkpos= yythunkpos1326; + } yyDo(ctx, yy_2_ListTight, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "ListTight", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1321:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "ListTight", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Spacechar(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Spacechar")); + { int yypos1330= ctx->pos, yythunkpos1330= ctx->thunkpos; if (!yymatchChar(ctx, ' ')) goto l1331; goto l1330; + l1331:; ctx->pos= yypos1330; ctx->thunkpos= yythunkpos1330; if (!yymatchChar(ctx, '\t')) goto l1329; + } + l1330:; + yyprintf((stderr, " ok %s @ %s\n", "Spacechar", ctx->buf+ctx->pos)); + return 1; + l1329:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Spacechar", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Bullet(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Bullet")); + { int yypos1333= ctx->pos, yythunkpos1333= ctx->thunkpos; if (!yy_HorizontalRule(ctx)) goto l1333; goto l1332; + l1333:; ctx->pos= yypos1333; ctx->thunkpos= yythunkpos1333; + } if (!yy_NonindentSpace(ctx)) goto l1332; + { int yypos1334= ctx->pos, yythunkpos1334= ctx->thunkpos; if (!yymatchChar(ctx, '+')) goto l1335; goto l1334; + l1335:; ctx->pos= yypos1334; ctx->thunkpos= yythunkpos1334; if (!yymatchChar(ctx, '*')) goto l1336; goto l1334; + l1336:; ctx->pos= yypos1334; ctx->thunkpos= yythunkpos1334; if (!yymatchChar(ctx, '-')) goto l1332; + } + l1334:; if (!yy_Spacechar(ctx)) goto l1332; + l1337:; + { int yypos1338= ctx->pos, yythunkpos1338= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l1338; goto l1337; + l1338:; ctx->pos= yypos1338; ctx->thunkpos= yythunkpos1338; + } + yyprintf((stderr, " ok %s @ %s\n", "Bullet", ctx->buf+ctx->pos)); + return 1; + l1332:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Bullet", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_VerbatimChunk(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "VerbatimChunk")); if (!yy_StartList(ctx)) goto l1339; yyDo(ctx, yySet, -1, 0); + l1340:; + { int yypos1341= ctx->pos, yythunkpos1341= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1341; yyDo(ctx, yy_1_VerbatimChunk, ctx->begin, ctx->end); goto l1340; + l1341:; ctx->pos= yypos1341; ctx->thunkpos= yythunkpos1341; + } if (!yy_NonblankIndentedLine(ctx)) goto l1339; yyDo(ctx, yy_2_VerbatimChunk, ctx->begin, ctx->end); + l1342:; + { int yypos1343= ctx->pos, yythunkpos1343= ctx->thunkpos; if (!yy_NonblankIndentedLine(ctx)) goto l1343; yyDo(ctx, yy_2_VerbatimChunk, ctx->begin, ctx->end); goto l1342; + l1343:; ctx->pos= yypos1343; ctx->thunkpos= yythunkpos1343; + } yyDo(ctx, yy_3_VerbatimChunk, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "VerbatimChunk", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1339:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "VerbatimChunk", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_IndentedLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "IndentedLine")); if (!yy_Indent(ctx)) goto l1344; if (!yy_Line(ctx)) goto l1344; + yyprintf((stderr, " ok %s @ %s\n", "IndentedLine", ctx->buf+ctx->pos)); + return 1; + l1344:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "IndentedLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_NonblankIndentedLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "NonblankIndentedLine")); + { int yypos1346= ctx->pos, yythunkpos1346= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1346; goto l1345; + l1346:; ctx->pos= yypos1346; ctx->thunkpos= yythunkpos1346; + } if (!yy_IndentedLine(ctx)) goto l1345; + yyprintf((stderr, " ok %s @ %s\n", "NonblankIndentedLine", ctx->buf+ctx->pos)); + return 1; + l1345:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "NonblankIndentedLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Line(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Line")); if (!yy_RawLine(ctx)) goto l1347; yyDo(ctx, yy_1_Line, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Line", ctx->buf+ctx->pos)); + return 1; + l1347:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Line", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_BlockQuoteRaw(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "BlockQuoteRaw")); if (!yy_StartList(ctx)) goto l1348; yyDo(ctx, yySet, -1, 0); if (!yymatchChar(ctx, '>')) goto l1348; + { int yypos1351= ctx->pos, yythunkpos1351= ctx->thunkpos; if (!yymatchChar(ctx, ' ')) goto l1351; goto l1352; + l1351:; ctx->pos= yypos1351; ctx->thunkpos= yythunkpos1351; + } + l1352:; if (!yy_Line(ctx)) goto l1348; yyDo(ctx, yy_1_BlockQuoteRaw, ctx->begin, ctx->end); + l1353:; + { int yypos1354= ctx->pos, yythunkpos1354= ctx->thunkpos; + { int yypos1355= ctx->pos, yythunkpos1355= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l1355; goto l1354; + l1355:; ctx->pos= yypos1355; ctx->thunkpos= yythunkpos1355; + } + { int yypos1356= ctx->pos, yythunkpos1356= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1356; goto l1354; + l1356:; ctx->pos= yypos1356; ctx->thunkpos= yythunkpos1356; + } if (!yy_Line(ctx)) goto l1354; yyDo(ctx, yy_2_BlockQuoteRaw, ctx->begin, ctx->end); goto l1353; + l1354:; ctx->pos= yypos1354; ctx->thunkpos= yythunkpos1354; + } + l1357:; + { int yypos1358= ctx->pos, yythunkpos1358= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1358; yyDo(ctx, yy_3_BlockQuoteRaw, ctx->begin, ctx->end); goto l1357; + l1358:; ctx->pos= yypos1358; ctx->thunkpos= yythunkpos1358; + } + l1349:; + { int yypos1350= ctx->pos, yythunkpos1350= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l1350; + { int yypos1359= ctx->pos, yythunkpos1359= ctx->thunkpos; if (!yymatchChar(ctx, ' ')) goto l1359; goto l1360; + l1359:; ctx->pos= yypos1359; ctx->thunkpos= yythunkpos1359; + } + l1360:; if (!yy_Line(ctx)) goto l1350; yyDo(ctx, yy_1_BlockQuoteRaw, ctx->begin, ctx->end); + l1361:; + { int yypos1362= ctx->pos, yythunkpos1362= ctx->thunkpos; + { int yypos1363= ctx->pos, yythunkpos1363= ctx->thunkpos; if (!yymatchChar(ctx, '>')) goto l1363; goto l1362; + l1363:; ctx->pos= yypos1363; ctx->thunkpos= yythunkpos1363; + } + { int yypos1364= ctx->pos, yythunkpos1364= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1364; goto l1362; + l1364:; ctx->pos= yypos1364; ctx->thunkpos= yythunkpos1364; + } if (!yy_Line(ctx)) goto l1362; yyDo(ctx, yy_2_BlockQuoteRaw, ctx->begin, ctx->end); goto l1361; + l1362:; ctx->pos= yypos1362; ctx->thunkpos= yythunkpos1362; + } + l1365:; + { int yypos1366= ctx->pos, yythunkpos1366= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1366; yyDo(ctx, yy_3_BlockQuoteRaw, ctx->begin, ctx->end); goto l1365; + l1366:; ctx->pos= yypos1366; ctx->thunkpos= yythunkpos1366; + } goto l1349; + l1350:; ctx->pos= yypos1350; ctx->thunkpos= yythunkpos1350; + } yyDo(ctx, yy_4_BlockQuoteRaw, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "BlockQuoteRaw", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1348:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "BlockQuoteRaw", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Endline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Endline")); + { int yypos1368= ctx->pos, yythunkpos1368= ctx->thunkpos; if (!yy_LineBreak(ctx)) goto l1369; goto l1368; + l1369:; ctx->pos= yypos1368; ctx->thunkpos= yythunkpos1368; if (!yy_TerminalEndline(ctx)) goto l1370; goto l1368; + l1370:; ctx->pos= yypos1368; ctx->thunkpos= yythunkpos1368; if (!yy_NormalEndline(ctx)) goto l1367; + } + l1368:; + yyprintf((stderr, " ok %s @ %s\n", "Endline", ctx->buf+ctx->pos)); + return 1; + l1367:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Endline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_RawLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "RawLine")); + { int yypos1372= ctx->pos, yythunkpos1372= ctx->thunkpos; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1373; + l1374:; + { int yypos1375= ctx->pos, yythunkpos1375= ctx->thunkpos; + { int yypos1376= ctx->pos, yythunkpos1376= ctx->thunkpos; if (!yymatchChar(ctx, '\r')) goto l1376; goto l1375; + l1376:; ctx->pos= yypos1376; ctx->thunkpos= yythunkpos1376; + } + { int yypos1377= ctx->pos, yythunkpos1377= ctx->thunkpos; if (!yymatchChar(ctx, '\n')) goto l1377; goto l1375; + l1377:; ctx->pos= yypos1377; ctx->thunkpos= yythunkpos1377; + } if (!yymatchDot(ctx)) goto l1375; goto l1374; + l1375:; ctx->pos= yypos1375; ctx->thunkpos= yythunkpos1375; + } if (!yy_Newline(ctx)) goto l1373; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1373; goto l1372; + l1373:; ctx->pos= yypos1372; ctx->thunkpos= yythunkpos1372; yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1371; if (!yymatchDot(ctx)) goto l1371; + l1378:; + { int yypos1379= ctx->pos, yythunkpos1379= ctx->thunkpos; if (!yymatchDot(ctx)) goto l1379; goto l1378; + l1379:; ctx->pos= yypos1379; ctx->thunkpos= yythunkpos1379; + } yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1371; if (!yy_Eof(ctx)) goto l1371; + } + l1372:; + yyprintf((stderr, " ok %s @ %s\n", "RawLine", ctx->buf+ctx->pos)); + return 1; + l1371:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "RawLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SetextBottom2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SetextBottom2")); if (!yymatchChar(ctx, '-')) goto l1380; + l1381:; + { int yypos1382= ctx->pos, yythunkpos1382= ctx->thunkpos; if (!yymatchChar(ctx, '-')) goto l1382; goto l1381; + l1382:; ctx->pos= yypos1382; ctx->thunkpos= yythunkpos1382; + } if (!yy_Newline(ctx)) goto l1380; + yyprintf((stderr, " ok %s @ %s\n", "SetextBottom2", ctx->buf+ctx->pos)); + return 1; + l1380:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SetextBottom2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SetextBottom1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SetextBottom1")); if (!yymatchChar(ctx, '=')) goto l1383; + l1384:; + { int yypos1385= ctx->pos, yythunkpos1385= ctx->thunkpos; if (!yymatchChar(ctx, '=')) goto l1385; goto l1384; + l1385:; ctx->pos= yypos1385; ctx->thunkpos= yythunkpos1385; + } if (!yy_Newline(ctx)) goto l1383; + yyprintf((stderr, " ok %s @ %s\n", "SetextBottom1", ctx->buf+ctx->pos)); + return 1; + l1383:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SetextBottom1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SetextHeading2(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "SetextHeading2")); + { int yypos1387= ctx->pos, yythunkpos1387= ctx->thunkpos; if (!yy_RawLine(ctx)) goto l1386; if (!yy_SetextBottom2(ctx)) goto l1386; ctx->pos= yypos1387; ctx->thunkpos= yythunkpos1387; + } if (!yy_StartList(ctx)) goto l1386; yyDo(ctx, yySet, -1, 0); + { int yypos1390= ctx->pos, yythunkpos1390= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1390; goto l1386; + l1390:; ctx->pos= yypos1390; ctx->thunkpos= yythunkpos1390; + } if (!yy_Inline(ctx)) goto l1386; yyDo(ctx, yy_1_SetextHeading2, ctx->begin, ctx->end); + l1388:; + { int yypos1389= ctx->pos, yythunkpos1389= ctx->thunkpos; + { int yypos1391= ctx->pos, yythunkpos1391= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1391; goto l1389; + l1391:; ctx->pos= yypos1391; ctx->thunkpos= yythunkpos1391; + } if (!yy_Inline(ctx)) goto l1389; yyDo(ctx, yy_1_SetextHeading2, ctx->begin, ctx->end); goto l1388; + l1389:; ctx->pos= yypos1389; ctx->thunkpos= yythunkpos1389; + } + { int yypos1392= ctx->pos, yythunkpos1392= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1392; goto l1393; + l1392:; ctx->pos= yypos1392; ctx->thunkpos= yythunkpos1392; + } + l1393:; if (!yy_Newline(ctx)) goto l1386; if (!yy_SetextBottom2(ctx)) goto l1386; yyDo(ctx, yy_2_SetextHeading2, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "SetextHeading2", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1386:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SetextHeading2", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SetextHeading1(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "SetextHeading1")); + { int yypos1395= ctx->pos, yythunkpos1395= ctx->thunkpos; if (!yy_RawLine(ctx)) goto l1394; if (!yy_SetextBottom1(ctx)) goto l1394; ctx->pos= yypos1395; ctx->thunkpos= yythunkpos1395; + } if (!yy_StartList(ctx)) goto l1394; yyDo(ctx, yySet, -1, 0); + { int yypos1398= ctx->pos, yythunkpos1398= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1398; goto l1394; + l1398:; ctx->pos= yypos1398; ctx->thunkpos= yythunkpos1398; + } if (!yy_Inline(ctx)) goto l1394; yyDo(ctx, yy_1_SetextHeading1, ctx->begin, ctx->end); + l1396:; + { int yypos1397= ctx->pos, yythunkpos1397= ctx->thunkpos; + { int yypos1399= ctx->pos, yythunkpos1399= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1399; goto l1397; + l1399:; ctx->pos= yypos1399; ctx->thunkpos= yythunkpos1399; + } if (!yy_Inline(ctx)) goto l1397; yyDo(ctx, yy_1_SetextHeading1, ctx->begin, ctx->end); goto l1396; + l1397:; ctx->pos= yypos1397; ctx->thunkpos= yythunkpos1397; + } + { int yypos1400= ctx->pos, yythunkpos1400= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1400; goto l1401; + l1400:; ctx->pos= yypos1400; ctx->thunkpos= yythunkpos1400; + } + l1401:; if (!yy_Newline(ctx)) goto l1394; if (!yy_SetextBottom1(ctx)) goto l1394; yyDo(ctx, yy_2_SetextHeading1, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "SetextHeading1", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1394:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SetextHeading1", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_SetextHeading(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "SetextHeading")); + { int yypos1403= ctx->pos, yythunkpos1403= ctx->thunkpos; if (!yy_SetextHeading1(ctx)) goto l1404; goto l1403; + l1404:; ctx->pos= yypos1403; ctx->thunkpos= yythunkpos1403; if (!yy_SetextHeading2(ctx)) goto l1402; + } + l1403:; + yyprintf((stderr, " ok %s @ %s\n", "SetextHeading", ctx->buf+ctx->pos)); + return 1; + l1402:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "SetextHeading", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AtxHeading(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "AtxHeading")); if (!yy_AtxStart(ctx)) goto l1405; yyDo(ctx, yySet, -2, 0); + { int yypos1406= ctx->pos, yythunkpos1406= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1406; goto l1407; + l1406:; ctx->pos= yypos1406; ctx->thunkpos= yythunkpos1406; + } + l1407:; if (!yy_StartList(ctx)) goto l1405; yyDo(ctx, yySet, -1, 0); if (!yy_AtxInline(ctx)) goto l1405; yyDo(ctx, yy_1_AtxHeading, ctx->begin, ctx->end); + l1408:; + { int yypos1409= ctx->pos, yythunkpos1409= ctx->thunkpos; if (!yy_AtxInline(ctx)) goto l1409; yyDo(ctx, yy_1_AtxHeading, ctx->begin, ctx->end); goto l1408; + l1409:; ctx->pos= yypos1409; ctx->thunkpos= yythunkpos1409; + } + { int yypos1410= ctx->pos, yythunkpos1410= ctx->thunkpos; + { int yypos1412= ctx->pos, yythunkpos1412= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1412; goto l1413; + l1412:; ctx->pos= yypos1412; ctx->thunkpos= yythunkpos1412; + } + l1413:; + l1414:; + { int yypos1415= ctx->pos, yythunkpos1415= ctx->thunkpos; if (!yymatchChar(ctx, '#')) goto l1415; goto l1414; + l1415:; ctx->pos= yypos1415; ctx->thunkpos= yythunkpos1415; + } if (!yy_Sp(ctx)) goto l1410; goto l1411; + l1410:; ctx->pos= yypos1410; ctx->thunkpos= yythunkpos1410; + } + l1411:; if (!yy_Newline(ctx)) goto l1405; yyDo(ctx, yy_2_AtxHeading, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "AtxHeading", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l1405:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AtxHeading", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AtxStart(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AtxStart")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1416; + { int yypos1417= ctx->pos, yythunkpos1417= ctx->thunkpos; if (!yymatchString(ctx, "######")) goto l1418; goto l1417; + l1418:; ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417; if (!yymatchString(ctx, "#####")) goto l1419; goto l1417; + l1419:; ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417; if (!yymatchString(ctx, "####")) goto l1420; goto l1417; + l1420:; ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417; if (!yymatchString(ctx, "###")) goto l1421; goto l1417; + l1421:; ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417; if (!yymatchString(ctx, "##")) goto l1422; goto l1417; + l1422:; ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417; if (!yymatchChar(ctx, '#')) goto l1416; + } + l1417:; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1416; yyDo(ctx, yy_1_AtxStart, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "AtxStart", ctx->buf+ctx->pos)); + return 1; + l1416:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AtxStart", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Inline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Inline")); + { int yypos1424= ctx->pos, yythunkpos1424= ctx->thunkpos; if (!yy_Str(ctx)) goto l1425; goto l1424; + l1425:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Endline(ctx)) goto l1426; goto l1424; + l1426:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_UlOrStarLine(ctx)) goto l1427; goto l1424; + l1427:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Space(ctx)) goto l1428; goto l1424; + l1428:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Strong(ctx)) goto l1429; goto l1424; + l1429:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Emph(ctx)) goto l1430; goto l1424; + l1430:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Image(ctx)) goto l1431; goto l1424; + l1431:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Link(ctx)) goto l1432; goto l1424; + l1432:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_NoteReference(ctx)) goto l1433; goto l1424; + l1433:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_InlineNote(ctx)) goto l1434; goto l1424; + l1434:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Code(ctx)) goto l1435; goto l1424; + l1435:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_RawHtml(ctx)) goto l1436; goto l1424; + l1436:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Entity(ctx)) goto l1437; goto l1424; + l1437:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_EscapedChar(ctx)) goto l1438; goto l1424; + l1438:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Smart(ctx)) goto l1439; goto l1424; + l1439:; ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424; if (!yy_Symbol(ctx)) goto l1423; + } + l1424:; + yyprintf((stderr, " ok %s @ %s\n", "Inline", ctx->buf+ctx->pos)); + return 1; + l1423:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Inline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Sp(yycontext *ctx) +{ + yyprintf((stderr, "%s\n", "Sp")); + l1441:; + { int yypos1442= ctx->pos, yythunkpos1442= ctx->thunkpos; if (!yy_Spacechar(ctx)) goto l1442; goto l1441; + l1442:; ctx->pos= yypos1442; ctx->thunkpos= yythunkpos1442; + } + yyprintf((stderr, " ok %s @ %s\n", "Sp", ctx->buf+ctx->pos)); + return 1; +} +YY_RULE(int) yy_Newline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Newline")); + { int yypos1444= ctx->pos, yythunkpos1444= ctx->thunkpos; if (!yymatchChar(ctx, '\n')) goto l1445; goto l1444; + l1445:; ctx->pos= yypos1444; ctx->thunkpos= yythunkpos1444; if (!yymatchChar(ctx, '\r')) goto l1443; + { int yypos1446= ctx->pos, yythunkpos1446= ctx->thunkpos; if (!yymatchChar(ctx, '\n')) goto l1446; goto l1447; + l1446:; ctx->pos= yypos1446; ctx->thunkpos= yythunkpos1446; + } + l1447:; + } + l1444:; + yyprintf((stderr, " ok %s @ %s\n", "Newline", ctx->buf+ctx->pos)); + return 1; + l1443:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Newline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_AtxInline(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "AtxInline")); + { int yypos1449= ctx->pos, yythunkpos1449= ctx->thunkpos; if (!yy_Newline(ctx)) goto l1449; goto l1448; + l1449:; ctx->pos= yypos1449; ctx->thunkpos= yythunkpos1449; + } + { int yypos1450= ctx->pos, yythunkpos1450= ctx->thunkpos; + { int yypos1451= ctx->pos, yythunkpos1451= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1451; goto l1452; + l1451:; ctx->pos= yypos1451; ctx->thunkpos= yythunkpos1451; + } + l1452:; + l1453:; + { int yypos1454= ctx->pos, yythunkpos1454= ctx->thunkpos; if (!yymatchChar(ctx, '#')) goto l1454; goto l1453; + l1454:; ctx->pos= yypos1454; ctx->thunkpos= yythunkpos1454; + } if (!yy_Sp(ctx)) goto l1450; if (!yy_Newline(ctx)) goto l1450; goto l1448; + l1450:; ctx->pos= yypos1450; ctx->thunkpos= yythunkpos1450; + } if (!yy_Inline(ctx)) goto l1448; + yyprintf((stderr, " ok %s @ %s\n", "AtxInline", ctx->buf+ctx->pos)); + return 1; + l1448:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "AtxInline", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Inlines(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "Inlines")); if (!yy_StartList(ctx)) goto l1455; yyDo(ctx, yySet, -2, 0); + { int yypos1458= ctx->pos, yythunkpos1458= ctx->thunkpos; + { int yypos1460= ctx->pos, yythunkpos1460= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1460; goto l1459; + l1460:; ctx->pos= yypos1460; ctx->thunkpos= yythunkpos1460; + } if (!yy_Inline(ctx)) goto l1459; yyDo(ctx, yy_1_Inlines, ctx->begin, ctx->end); goto l1458; + l1459:; ctx->pos= yypos1458; ctx->thunkpos= yythunkpos1458; if (!yy_Endline(ctx)) goto l1455; yyDo(ctx, yySet, -1, 0); + { int yypos1461= ctx->pos, yythunkpos1461= ctx->thunkpos; if (!yy_Inline(ctx)) goto l1455; ctx->pos= yypos1461; ctx->thunkpos= yythunkpos1461; + } yyDo(ctx, yy_2_Inlines, ctx->begin, ctx->end); + } + l1458:; + l1456:; + { int yypos1457= ctx->pos, yythunkpos1457= ctx->thunkpos; + { int yypos1462= ctx->pos, yythunkpos1462= ctx->thunkpos; + { int yypos1464= ctx->pos, yythunkpos1464= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1464; goto l1463; + l1464:; ctx->pos= yypos1464; ctx->thunkpos= yythunkpos1464; + } if (!yy_Inline(ctx)) goto l1463; yyDo(ctx, yy_1_Inlines, ctx->begin, ctx->end); goto l1462; + l1463:; ctx->pos= yypos1462; ctx->thunkpos= yythunkpos1462; if (!yy_Endline(ctx)) goto l1457; yyDo(ctx, yySet, -1, 0); + { int yypos1465= ctx->pos, yythunkpos1465= ctx->thunkpos; if (!yy_Inline(ctx)) goto l1457; ctx->pos= yypos1465; ctx->thunkpos= yythunkpos1465; + } yyDo(ctx, yy_2_Inlines, ctx->begin, ctx->end); + } + l1462:; goto l1456; + l1457:; ctx->pos= yypos1457; ctx->thunkpos= yythunkpos1457; + } + { int yypos1466= ctx->pos, yythunkpos1466= ctx->thunkpos; if (!yy_Endline(ctx)) goto l1466; goto l1467; + l1466:; ctx->pos= yypos1466; ctx->thunkpos= yythunkpos1466; + } + l1467:; yyDo(ctx, yy_3_Inlines, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Inlines", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l1455:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Inlines", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_NonindentSpace(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "NonindentSpace")); + { int yypos1469= ctx->pos, yythunkpos1469= ctx->thunkpos; if (!yymatchString(ctx, " ")) goto l1470; goto l1469; + l1470:; ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469; if (!yymatchString(ctx, " ")) goto l1471; goto l1469; + l1471:; ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469; if (!yymatchChar(ctx, ' ')) goto l1472; goto l1469; + l1472:; ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469; if (!yymatchString(ctx, "")) goto l1468; + } + l1469:; + yyprintf((stderr, " ok %s @ %s\n", "NonindentSpace", ctx->buf+ctx->pos)); + return 1; + l1468:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "NonindentSpace", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Plain(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Plain")); if (!yy_Inlines(ctx)) goto l1473; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_Plain, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Plain", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1473:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Plain", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Para(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Para")); if (!yy_NonindentSpace(ctx)) goto l1474; if (!yy_Inlines(ctx)) goto l1474; yyDo(ctx, yySet, -1, 0); if (!yy_BlankLine(ctx)) goto l1474; + l1475:; + { int yypos1476= ctx->pos, yythunkpos1476= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1476; goto l1475; + l1476:; ctx->pos= yypos1476; ctx->thunkpos= yythunkpos1476; + } yyDo(ctx, yy_1_Para, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Para", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1474:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Para", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StyleBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StyleBlock")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1477; if (!yy_InStyleTags(ctx)) goto l1477; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1477; + l1478:; + { int yypos1479= ctx->pos, yythunkpos1479= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1479; goto l1478; + l1479:; ctx->pos= yypos1479; ctx->thunkpos= yythunkpos1479; + } yyDo(ctx, yy_1_StyleBlock, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "StyleBlock", ctx->buf+ctx->pos)); + return 1; + l1477:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StyleBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HtmlBlock(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HtmlBlock")); yyText(ctx, ctx->begin, ctx->end); if (!(YY_BEGIN)) goto l1480; + { int yypos1481= ctx->pos, yythunkpos1481= ctx->thunkpos; if (!yy_HtmlBlockInTags(ctx)) goto l1482; goto l1481; + l1482:; ctx->pos= yypos1481; ctx->thunkpos= yythunkpos1481; if (!yy_HtmlComment(ctx)) goto l1483; goto l1481; + l1483:; ctx->pos= yypos1481; ctx->thunkpos= yythunkpos1481; if (!yy_HtmlBlockSelfClosing(ctx)) goto l1480; + } + l1481:; yyText(ctx, ctx->begin, ctx->end); if (!(YY_END)) goto l1480; if (!yy_BlankLine(ctx)) goto l1480; + l1484:; + { int yypos1485= ctx->pos, yythunkpos1485= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1485; goto l1484; + l1485:; ctx->pos= yypos1485; ctx->thunkpos= yythunkpos1485; + } yyDo(ctx, yy_1_HtmlBlock, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "HtmlBlock", ctx->buf+ctx->pos)); + return 1; + l1480:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HtmlBlock", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_BulletList(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "BulletList")); + { int yypos1487= ctx->pos, yythunkpos1487= ctx->thunkpos; if (!yy_Bullet(ctx)) goto l1486; ctx->pos= yypos1487; ctx->thunkpos= yythunkpos1487; + } + { int yypos1488= ctx->pos, yythunkpos1488= ctx->thunkpos; if (!yy_ListTight(ctx)) goto l1489; goto l1488; + l1489:; ctx->pos= yypos1488; ctx->thunkpos= yythunkpos1488; if (!yy_ListLoose(ctx)) goto l1486; + } + l1488:; yyDo(ctx, yy_1_BulletList, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "BulletList", ctx->buf+ctx->pos)); + return 1; + l1486:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "BulletList", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_OrderedList(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "OrderedList")); + { int yypos1491= ctx->pos, yythunkpos1491= ctx->thunkpos; if (!yy_Enumerator(ctx)) goto l1490; ctx->pos= yypos1491; ctx->thunkpos= yythunkpos1491; + } + { int yypos1492= ctx->pos, yythunkpos1492= ctx->thunkpos; if (!yy_ListTight(ctx)) goto l1493; goto l1492; + l1493:; ctx->pos= yypos1492; ctx->thunkpos= yythunkpos1492; if (!yy_ListLoose(ctx)) goto l1490; + } + l1492:; yyDo(ctx, yy_1_OrderedList, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "OrderedList", ctx->buf+ctx->pos)); + return 1; + l1490:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "OrderedList", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Heading(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Heading")); + { int yypos1495= ctx->pos, yythunkpos1495= ctx->thunkpos; if (!yy_SetextHeading(ctx)) goto l1496; goto l1495; + l1496:; ctx->pos= yypos1495; ctx->thunkpos= yythunkpos1495; if (!yy_AtxHeading(ctx)) goto l1494; + } + l1495:; + yyprintf((stderr, " ok %s @ %s\n", "Heading", ctx->buf+ctx->pos)); + return 1; + l1494:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Heading", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_HorizontalRule(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "HorizontalRule")); if (!yy_NonindentSpace(ctx)) goto l1497; + { int yypos1498= ctx->pos, yythunkpos1498= ctx->thunkpos; if (!yymatchChar(ctx, '*')) goto l1499; if (!yy_Sp(ctx)) goto l1499; if (!yymatchChar(ctx, '*')) goto l1499; if (!yy_Sp(ctx)) goto l1499; if (!yymatchChar(ctx, '*')) goto l1499; + l1500:; + { int yypos1501= ctx->pos, yythunkpos1501= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1501; if (!yymatchChar(ctx, '*')) goto l1501; goto l1500; + l1501:; ctx->pos= yypos1501; ctx->thunkpos= yythunkpos1501; + } goto l1498; + l1499:; ctx->pos= yypos1498; ctx->thunkpos= yythunkpos1498; if (!yymatchChar(ctx, '-')) goto l1502; if (!yy_Sp(ctx)) goto l1502; if (!yymatchChar(ctx, '-')) goto l1502; if (!yy_Sp(ctx)) goto l1502; if (!yymatchChar(ctx, '-')) goto l1502; + l1503:; + { int yypos1504= ctx->pos, yythunkpos1504= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1504; if (!yymatchChar(ctx, '-')) goto l1504; goto l1503; + l1504:; ctx->pos= yypos1504; ctx->thunkpos= yythunkpos1504; + } goto l1498; + l1502:; ctx->pos= yypos1498; ctx->thunkpos= yythunkpos1498; if (!yymatchChar(ctx, '_')) goto l1497; if (!yy_Sp(ctx)) goto l1497; if (!yymatchChar(ctx, '_')) goto l1497; if (!yy_Sp(ctx)) goto l1497; if (!yymatchChar(ctx, '_')) goto l1497; + l1505:; + { int yypos1506= ctx->pos, yythunkpos1506= ctx->thunkpos; if (!yy_Sp(ctx)) goto l1506; if (!yymatchChar(ctx, '_')) goto l1506; goto l1505; + l1506:; ctx->pos= yypos1506; ctx->thunkpos= yythunkpos1506; + } + } + l1498:; if (!yy_Sp(ctx)) goto l1497; if (!yy_Newline(ctx)) goto l1497; if (!yy_BlankLine(ctx)) goto l1497; + l1507:; + { int yypos1508= ctx->pos, yythunkpos1508= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1508; goto l1507; + l1508:; ctx->pos= yypos1508; ctx->thunkpos= yythunkpos1508; + } yyDo(ctx, yy_1_HorizontalRule, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "HorizontalRule", ctx->buf+ctx->pos)); + return 1; + l1497:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "HorizontalRule", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Reference(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 3, 0); + yyprintf((stderr, "%s\n", "Reference")); if (!yy_NonindentSpace(ctx)) goto l1509; + { int yypos1510= ctx->pos, yythunkpos1510= ctx->thunkpos; if (!yymatchString(ctx, "[]")) goto l1510; goto l1509; + l1510:; ctx->pos= yypos1510; ctx->thunkpos= yythunkpos1510; + } if (!yy_Label(ctx)) goto l1509; yyDo(ctx, yySet, -3, 0); if (!yymatchChar(ctx, ':')) goto l1509; if (!yy_Spnl(ctx)) goto l1509; if (!yy_RefSrc(ctx)) goto l1509; yyDo(ctx, yySet, -2, 0); if (!yy_RefTitle(ctx)) goto l1509; yyDo(ctx, yySet, -1, 0); if (!yy_BlankLine(ctx)) goto l1509; + l1511:; + { int yypos1512= ctx->pos, yythunkpos1512= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1512; goto l1511; + l1512:; ctx->pos= yypos1512; ctx->thunkpos= yythunkpos1512; + } yyDo(ctx, yy_1_Reference, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Reference", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 3, 0); + return 1; + l1509:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Reference", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Note(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 2, 0); + yyprintf((stderr, "%s\n", "Note")); yyText(ctx, ctx->begin, ctx->end); if (!( extension(EXT_NOTES) )) goto l1513; if (!yy_NonindentSpace(ctx)) goto l1513; if (!yy_RawNoteReference(ctx)) goto l1513; yyDo(ctx, yySet, -2, 0); if (!yymatchChar(ctx, ':')) goto l1513; if (!yy_Sp(ctx)) goto l1513; if (!yy_StartList(ctx)) goto l1513; yyDo(ctx, yySet, -1, 0); if (!yy_RawNoteBlock(ctx)) goto l1513; yyDo(ctx, yy_1_Note, ctx->begin, ctx->end); + l1514:; + { int yypos1515= ctx->pos, yythunkpos1515= ctx->thunkpos; + { int yypos1516= ctx->pos, yythunkpos1516= ctx->thunkpos; if (!yy_Indent(ctx)) goto l1515; ctx->pos= yypos1516; ctx->thunkpos= yythunkpos1516; + } if (!yy_RawNoteBlock(ctx)) goto l1515; yyDo(ctx, yy_2_Note, ctx->begin, ctx->end); goto l1514; + l1515:; ctx->pos= yypos1515; ctx->thunkpos= yythunkpos1515; + } yyDo(ctx, yy_3_Note, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Note", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 2, 0); + return 1; + l1513:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Note", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Verbatim(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Verbatim")); if (!yy_StartList(ctx)) goto l1517; yyDo(ctx, yySet, -1, 0); if (!yy_VerbatimChunk(ctx)) goto l1517; yyDo(ctx, yy_1_Verbatim, ctx->begin, ctx->end); + l1518:; + { int yypos1519= ctx->pos, yythunkpos1519= ctx->thunkpos; if (!yy_VerbatimChunk(ctx)) goto l1519; yyDo(ctx, yy_1_Verbatim, ctx->begin, ctx->end); goto l1518; + l1519:; ctx->pos= yypos1519; ctx->thunkpos= yythunkpos1519; + } yyDo(ctx, yy_2_Verbatim, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Verbatim", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1517:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Verbatim", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_BlockQuote(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "BlockQuote")); if (!yy_BlockQuoteRaw(ctx)) goto l1520; yyDo(ctx, yySet, -1, 0); yyDo(ctx, yy_1_BlockQuote, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "BlockQuote", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1520:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "BlockQuote", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_BlankLine(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "BlankLine")); if (!yy_Sp(ctx)) goto l1521; if (!yy_Newline(ctx)) goto l1521; + yyprintf((stderr, " ok %s @ %s\n", "BlankLine", ctx->buf+ctx->pos)); + return 1; + l1521:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "BlankLine", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Block(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "Block")); + l1523:; + { int yypos1524= ctx->pos, yythunkpos1524= ctx->thunkpos; if (!yy_BlankLine(ctx)) goto l1524; goto l1523; + l1524:; ctx->pos= yypos1524; ctx->thunkpos= yythunkpos1524; + } + { int yypos1525= ctx->pos, yythunkpos1525= ctx->thunkpos; if (!yy_BlockQuote(ctx)) goto l1526; goto l1525; + l1526:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Verbatim(ctx)) goto l1527; goto l1525; + l1527:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Note(ctx)) goto l1528; goto l1525; + l1528:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Reference(ctx)) goto l1529; goto l1525; + l1529:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_HorizontalRule(ctx)) goto l1530; goto l1525; + l1530:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Heading(ctx)) goto l1531; goto l1525; + l1531:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_OrderedList(ctx)) goto l1532; goto l1525; + l1532:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_BulletList(ctx)) goto l1533; goto l1525; + l1533:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_HtmlBlock(ctx)) goto l1534; goto l1525; + l1534:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_StyleBlock(ctx)) goto l1535; goto l1525; + l1535:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Para(ctx)) goto l1536; goto l1525; + l1536:; ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525; if (!yy_Plain(ctx)) goto l1522; + } + l1525:; + yyprintf((stderr, " ok %s @ %s\n", "Block", ctx->buf+ctx->pos)); + return 1; + l1522:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Block", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_StartList(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "StartList")); + { int yypos1538= ctx->pos, yythunkpos1538= ctx->thunkpos; if (!yymatchDot(ctx)) goto l1537; ctx->pos= yypos1538; ctx->thunkpos= yythunkpos1538; + } yyDo(ctx, yy_1_StartList, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "StartList", ctx->buf+ctx->pos)); + return 1; + l1537:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "StartList", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_BOM(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; + yyprintf((stderr, "%s\n", "BOM")); if (!yymatchString(ctx, "\357\273\277")) goto l1539; + yyprintf((stderr, " ok %s @ %s\n", "BOM", ctx->buf+ctx->pos)); + return 1; + l1539:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "BOM", ctx->buf+ctx->pos)); + return 0; +} +YY_RULE(int) yy_Doc(yycontext *ctx) +{ int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos; yyDo(ctx, yyPush, 1, 0); + yyprintf((stderr, "%s\n", "Doc")); + { int yypos1541= ctx->pos, yythunkpos1541= ctx->thunkpos; if (!yy_BOM(ctx)) goto l1541; goto l1542; + l1541:; ctx->pos= yypos1541; ctx->thunkpos= yythunkpos1541; + } + l1542:; if (!yy_StartList(ctx)) goto l1540; yyDo(ctx, yySet, -1, 0); + l1543:; + { int yypos1544= ctx->pos, yythunkpos1544= ctx->thunkpos; if (!yy_Block(ctx)) goto l1544; yyDo(ctx, yy_1_Doc, ctx->begin, ctx->end); goto l1543; + l1544:; ctx->pos= yypos1544; ctx->thunkpos= yythunkpos1544; + } yyDo(ctx, yy_2_Doc, ctx->begin, ctx->end); + yyprintf((stderr, " ok %s @ %s\n", "Doc", ctx->buf+ctx->pos)); yyDo(ctx, yyPop, 1, 0); + return 1; + l1540:; ctx->pos= yypos0; ctx->thunkpos= yythunkpos0; + yyprintf((stderr, " fail %s @ %s\n", "Doc", ctx->buf+ctx->pos)); + return 0; +} + +#ifndef YY_PART + +typedef int (*yyrule)(yycontext *ctx); + +YY_PARSE(int) YYPARSEFROM(YY_CTX_PARAM_ yyrule yystart) +{ + int yyok; + if (!yyctx->buflen) + { + yyctx->buflen= 1024; + yyctx->buf= (char *)malloc(yyctx->buflen); + yyctx->textlen= 1024; + yyctx->text= (char *)malloc(yyctx->textlen); + yyctx->thunkslen= 32; + yyctx->thunks= (yythunk *)malloc(sizeof(yythunk) * yyctx->thunkslen); + yyctx->valslen= 32; + yyctx->vals= (YYSTYPE *)malloc(sizeof(YYSTYPE) * yyctx->valslen); + yyctx->begin= yyctx->end= yyctx->pos= yyctx->limit= yyctx->thunkpos= 0; + } + yyctx->begin= yyctx->end= yyctx->pos; + yyctx->thunkpos= 0; + yyctx->val= yyctx->vals; + yyok= yystart(yyctx); + if (yyok) yyDone(yyctx); + yyCommit(yyctx); + return yyok; +} + +YY_PARSE(int) YYPARSE(YY_CTX_PARAM) +{ + return YYPARSEFROM(YY_CTX_ARG_ yy_Doc); +} + +#endif + + + + diff -Nru geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/peg-0.1.9/Makefile.in geany-plugins-1.24.1+dfsg/markdown/peg-markdown/peg-0.1.9/Makefile.in --- geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/peg-0.1.9/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/peg-markdown/peg-0.1.9/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,723 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +noinst_PROGRAMS = leg$(EXEEXT) +subdir = markdown/peg-markdown/peg-0.1.9 +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/depcomp +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +PROGRAMS = $(noinst_PROGRAMS) +am_leg_OBJECTS = leg.$(OBJEXT) compile.$(OBJEXT) tree.$(OBJEXT) +leg_OBJECTS = $(am_leg_OBJECTS) +leg_LDADD = $(LDADD) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(leg_SOURCES) +DIST_SOURCES = $(leg_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +leg_SOURCES = \ + leg.c \ + compile.c \ + tree.c \ + tree.h \ + version.h + +EXTRA_DIST = leg.leg +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign markdown/peg-markdown/peg-0.1.9/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign markdown/peg-markdown/peg-0.1.9/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +clean-noinstPROGRAMS: + @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +leg$(EXEEXT): $(leg_OBJECTS) $(leg_DEPENDENCIES) $(EXTRA_leg_DEPENDENCIES) + @rm -f leg$(EXEEXT) + $(AM_V_CCLD)$(LINK) $(leg_OBJECTS) $(leg_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/leg.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tree.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-noinstPROGRAMS cscopelist-am ctags \ + ctags-am distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/README.markdown geany-plugins-1.24.1+dfsg/markdown/peg-markdown/README.markdown --- geany-plugins-1.24.0+20140222+git/markdown/peg-markdown/README.markdown 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/peg-markdown/README.markdown 1970-01-01 00:00:00.000000000 +0000 @@ -1,213 +0,0 @@ -What is this? -============= - -This is an implementation of John Gruber's [markdown][] in C. It uses a -[parsing expression grammar (PEG)][] to define the syntax. This should -allow easy modification and extension. It currently supports output in -HTML, LaTeX, ODF, or groff_mm formats, and adding new formats is -relatively easy. - -[parsing expression grammar (PEG)]: http://en.wikipedia.org/wiki/Parsing_expression_grammar -[markdown]: http://daringfireball.net/projects/markdown/ - -It is pretty fast. A 179K text file that takes 5.7 seconds for -Markdown.pl (v. 1.0.1) to parse takes less than 0.2 seconds for this -markdown. It does, however, use a lot of memory (up to 4M of heap space -while parsing the 179K file, and up to 80K for a 4K file). (Note that -the memory leaks in earlier versions of this program have now been -plugged.) - -Both a library and a standalone program are provided. - -peg-markdown is written and maintained by John MacFarlane (jgm on -github), with significant contributions by Ryan Tomayko (rtomayko). -It is released under both the GPL and the MIT license; see LICENSE for -details. - -Installing -========== - -On a linux or unix-based system -------------------------------- - -This program is written in portable ANSI C. It requires -[glib2](http://www.gtk.org/download/index.php). Most *nix systems will have -this installed already. The build system requires GNU make. - -The other required dependency, [Ian Piumarta's peg/leg PEG parser -generator](http://piumarta.com/software/peg/), is included in the source -directory. It will be built automatically. (However, it is not as portable -as peg-markdown itself, and seems to require gcc.) - -To make the 'markdown' executable: - - make - -(Or, on some systems, `gmake`.) Then, for usage instructions: - - ./markdown --help - -To run John Gruber's Markdown 1.0.3 test suite: - - make test - -The test suite will fail on one of the list tests. Here's why. -Markdown.pl encloses "item one" in the following list in `

` tags: - - 1. item one - * subitem - * subitem - - 2. item two - - 3. item three - -peg-markdown does not enclose "item one" in `

` tags unless it has a -following blank line. This is consistent with the official markdown -syntax description, and lets the author of the document choose whether -`

` tags are desired. - -Cross-compiling for Windows with MinGW on a linux box ------------------------------------------------------ - -Prerequisites: - -* Linux system with MinGW cross compiler For Ubuntu: - - sudo apt-get install mingw32 - -* [Windows glib-2.0 binary & development files](http://www.gtk.org/download-windows.html). - Unzip files into cross-compiler directory tree (e.g., `/usr/i586-mingw32msvc`). - -Steps: - -1. Create the markdown parser using Linux-compiled `leg` from peg-0.1.4: - - ./peg-0.1.4/leg markdown_parser.leg >markdown_parser.c - - (Note: The same thing could be accomplished by cross-compiling leg, - executing it on Windows, and copying the resulting C file to the Linux - cross-compiler host.) - -2. Run the cross compiler with include flag for the Windows glib-2.0 headers: - for example, - - /usr/bin/i586-mingw32msvc-cc -c \ - -I/usr/i586-mingw32msvc/include/glib-2.0 \ - -I/usr/i586-mingw32msvc/lib/glib-2.0/include -Wall -O3 -ansi markdown*.c - -3. Link against Windows glib-2.0 headers: for example, - - /usr/bin/i586-mingw32msvc-cc markdown*.o \ - -Wl,-L/usr/i586-mingw32msvc/lib/glib,--dy,--warn-unresolved-symbols,-lglib-2.0 \ - -o markdown.exe - -The resulting executable depends on the glib dll file, so be sure to -load the glib binary on the Windows host. - -Compiling with MinGW on Windows -------------------------------- - -These directions assume that MinGW is installed in `c:\MinGW` and glib-2.0 -is installed in the MinGW directory hierarchy (with the mingw bin directory -in the system path). - -Unzip peg-markdown in a temp directory. From the directory with the -peg-markdown source, execute: - - cd peg-0.1.4 - make PKG_CONFIG=c:/path/to/glib/bin/pkg-config.exe - -Extensions -========== - -peg-markdown supports extensions to standard markdown syntax. -These can be turned on using the command line flag `-x` or -`--extensions`. `-x` by itself turns on all extensions. Extensions -can also be turned on selectively, using individual command-line -options. To see the available extensions: - - ./markdown --help-extensions - -The `--smart` extension provides "smart quotes", dashes, and ellipses. - -The `--notes` extension provides a footnote syntax like that of -Pandoc or PHP Markdown Extra. - -Using the library -================= - -The library exports two functions: - - GString * markdown_to_g_string(char *text, int extensions, int output_format); - char * markdown_to_string(char *text, int extensions, int output_format); - -The only difference between these is that `markdown_to_g_string` returns a -`GString` (glib's automatically resizable string), while `markdown_to_string` -returns a regular character pointer. The memory allocated for these must be -freed by the calling program, using `g_string_free()` or `free()`. - -`text` is the markdown-formatted text to be converted. Note that tabs will -be converted to spaces, using a four-space tab stop. Character encodings are -ignored. - -`extensions` is a bit-field specifying which syntax extensions should be used. -If `extensions` is 0, no extensions will be used. If it is `0xFFFFFF`, -all extensions will be used. To set extensions selectively, use the -bitwise `&` operator and the following constants: - - - `EXT_SMART` turns on smart quotes, dashes, and ellipses. - - `EXT_NOTES` turns on footnote syntax. [Pandoc's footnote syntax][] is used here. - - `EXT_FILTER_HTML` filters out raw HTML (except for styles). - - `EXT_FILTER_STYLES` filters out styles in HTML. - - [Pandoc's footnote syntax]: http://johnmacfarlane.net/pandoc/README.html#footnotes - -`output_format` is either `HTML_FORMAT`, `LATEX_FORMAT`, `ODF_FORMAT`, -or `GROFF_MM_FORMAT`. - -To use the library, include `markdown_lib.h`. See `markdown.c` for an example. - -Hacking -======= - -It should be pretty easy to modify the program to produce other formats, -and to parse syntax extensions. A quick guide: - - * `markdown_parser.leg` contains the grammar itself. - - * `markdown_output.c` contains functions for printing the `Element` - structure in various output formats. - - * To add an output format, add the format to `markdown_formats` in - `markdown_lib.h`. Then modify `print_element` in `markdown_output.c`, - and add functions `print_XXXX_string`, `print_XXXX_element`, and - `print_XXXX_element_list`. Also add an option in the main program - that selects the new format. Don't forget to add it to the list of - formats in the usage message. - - * To add syntax extensions, define them in the PEG grammar - (`markdown_parser.leg`), using existing extensions as a guide. New - inline elements will need to be added to `Inline =`; new block - elements will need to be added to `Block =`. (Note: the order - of the alternatives does matter in PEG grammars.) - - * If you need to add new types of elements, modify the `keys` - enum in `markdown_peg.h`. - - * By using `&{ }` rules one can selectively disable extensions - depending on command-line options. For example, - `&{ extension(EXT_SMART) }` succeeds only if the `EXT_SMART` bit - of the global `syntax_extensions` is set. Add your option to - `markdown_extensions` in `markdown_lib.h`, and add an option in - `markdown.c` to turn on your extension. - - * Note: Avoid using `[^abc]` character classes in the grammar, because - they cause problems with non-ascii input. Instead, use: `( !'a' !'b' - !'c' . )` - -Acknowledgements -================ - -Support for ODF output was added by Fletcher T. Penney. - diff -Nru geany-plugins-1.24.0+20140222+git/markdown/src/Makefile.in geany-plugins-1.24.1+dfsg/markdown/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/markdown/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/markdown/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,861 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp $(noinst_HEADERS) +@MARKDOWN_PEG_MARKDOWN_TRUE@am__append_1 = -DFULL_PRICE -I$(top_srcdir)/markdown/peg-markdown +@MARKDOWN_PEG_MARKDOWN_TRUE@am__append_2 = $(top_builddir)/markdown/peg-markdown/libpegmarkdown.la +@MARKDOWN_PEG_MARKDOWN_FALSE@am__append_3 = $(LIBMARKDOWN_CFLAGS) +@MARKDOWN_PEG_MARKDOWN_FALSE@am__append_4 = $(LIBMARKDOWN_LIBS) +subdir = markdown/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +@MARKDOWN_PEG_MARKDOWN_FALSE@am__DEPENDENCIES_2 = \ +@MARKDOWN_PEG_MARKDOWN_FALSE@ $(am__DEPENDENCIES_1) +markdown_la_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__append_2) \ + $(am__DEPENDENCIES_2) +am_markdown_la_OBJECTS = markdown_la-conf.lo markdown_la-plugin.lo \ + markdown_la-viewer.lo markdown_la-markdown-gtk-compat.lo +markdown_la_OBJECTS = $(am_markdown_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +markdown_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(markdown_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(markdown_la_SOURCES) +DIST_SOURCES = $(markdown_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +HEADERS = $(noinst_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = markdown +geanyplugins_LTLIBRARIES = markdown.la +markdown_la_SOURCES = \ + conf.c \ + plugin.c \ + viewer.c \ + markdown-gtk-compat.c + +noinst_HEADERS = \ + conf.h \ + viewer.h \ + markdown-gtk-compat.h + +markdown_la_CFLAGS = $(AM_CFLAGS) $(MARKDOWN_CFLAGS) \ + -DMARKDOWN_DATA_DIR=\"$(pkgdatadir)/markdown\" \ + -DMARKDOWN_DOC_DIR=\"$(docdir)/markdown\" \ + -DMARKDOWN_HELP_FILE=\"$(docdir)/markdown/html/help.html\" \ + $(am__append_1) $(am__append_3) +markdown_la_LIBADD = $(MARKDOWN_LIBS) $(am__append_2) $(am__append_4) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign markdown/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign markdown/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +markdown.la: $(markdown_la_OBJECTS) $(markdown_la_DEPENDENCIES) $(EXTRA_markdown_la_DEPENDENCIES) + $(AM_V_CCLD)$(markdown_la_LINK) -rpath $(geanypluginsdir) $(markdown_la_OBJECTS) $(markdown_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/markdown_la-conf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/markdown_la-markdown-gtk-compat.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/markdown_la-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/markdown_la-viewer.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +markdown_la-conf.lo: conf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -MT markdown_la-conf.lo -MD -MP -MF $(DEPDIR)/markdown_la-conf.Tpo -c -o markdown_la-conf.lo `test -f 'conf.c' || echo '$(srcdir)/'`conf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/markdown_la-conf.Tpo $(DEPDIR)/markdown_la-conf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='conf.c' object='markdown_la-conf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -c -o markdown_la-conf.lo `test -f 'conf.c' || echo '$(srcdir)/'`conf.c + +markdown_la-plugin.lo: plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -MT markdown_la-plugin.lo -MD -MP -MF $(DEPDIR)/markdown_la-plugin.Tpo -c -o markdown_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/markdown_la-plugin.Tpo $(DEPDIR)/markdown_la-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='plugin.c' object='markdown_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -c -o markdown_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c + +markdown_la-viewer.lo: viewer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -MT markdown_la-viewer.lo -MD -MP -MF $(DEPDIR)/markdown_la-viewer.Tpo -c -o markdown_la-viewer.lo `test -f 'viewer.c' || echo '$(srcdir)/'`viewer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/markdown_la-viewer.Tpo $(DEPDIR)/markdown_la-viewer.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='viewer.c' object='markdown_la-viewer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -c -o markdown_la-viewer.lo `test -f 'viewer.c' || echo '$(srcdir)/'`viewer.c + +markdown_la-markdown-gtk-compat.lo: markdown-gtk-compat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -MT markdown_la-markdown-gtk-compat.lo -MD -MP -MF $(DEPDIR)/markdown_la-markdown-gtk-compat.Tpo -c -o markdown_la-markdown-gtk-compat.lo `test -f 'markdown-gtk-compat.c' || echo '$(srcdir)/'`markdown-gtk-compat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/markdown_la-markdown-gtk-compat.Tpo $(DEPDIR)/markdown_la-markdown-gtk-compat.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='markdown-gtk-compat.c' object='markdown_la-markdown-gtk-compat.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(markdown_la_CFLAGS) $(CFLAGS) -c -o markdown_la-markdown-gtk-compat.lo `test -f 'markdown-gtk-compat.c' || echo '$(srcdir)/'`markdown-gtk-compat.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/missing geany-plugins-1.24.1+dfsg/missing --- geany-plugins-1.24.0+20140222+git/missing 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/missing 2014-04-13 17:12:41.000000000 +0000 @@ -0,0 +1,215 @@ +#! /bin/sh +# Common wrapper for a few potentially missing GNU programs. + +scriptversion=2013-10-28.13; # UTC + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Originally written by Fran,cois Pinard , 1996. + +# 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, 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, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try '$0 --help' for more information" + exit 1 +fi + +case $1 in + + --is-lightweight) + # Used by our autoconf macros to check whether the available missing + # script is modern enough. + exit 0 + ;; + + --run) + # Back-compat with the calling convention used by older automake. + shift + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due +to PROGRAM being missing or too old. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + +Supported PROGRAM values: + aclocal autoconf autoheader autom4te automake makeinfo + bison yacc flex lex help2man + +Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and +'g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: unknown '$1' option" + echo 1>&2 "Try '$0 --help' for more information" + exit 1 + ;; + +esac + +# Run the given program, remember its exit status. +"$@"; st=$? + +# If it succeeded, we are done. +test $st -eq 0 && exit 0 + +# Also exit now if we it failed (or wasn't found), and '--version' was +# passed; such an option is passed most likely to detect whether the +# program is present and works. +case $2 in --version|--help) exit $st;; esac + +# Exit code 63 means version mismatch. This often happens when the user +# tries to use an ancient version of a tool on a file that requires a +# minimum version. +if test $st -eq 63; then + msg="probably too old" +elif test $st -eq 127; then + # Program was missing. + msg="missing on your system" +else + # Program was found and executed, but failed. Give up. + exit $st +fi + +perl_URL=http://www.perl.org/ +flex_URL=http://flex.sourceforge.net/ +gnu_software_URL=http://www.gnu.org/software + +program_details () +{ + case $1 in + aclocal|automake) + echo "The '$1' program is part of the GNU Automake package:" + echo "<$gnu_software_URL/automake>" + echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/autoconf>" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + autoconf|autom4te|autoheader) + echo "The '$1' program is part of the GNU Autoconf package:" + echo "<$gnu_software_URL/autoconf/>" + echo "It also requires GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + esac +} + +give_advice () +{ + # Normalize program name to check for. + normalized_program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + + printf '%s\n' "'$1' is $msg." + + configure_deps="'configure.ac' or m4 files included by 'configure.ac'" + case $normalized_program in + autoconf*) + echo "You should only need it if you modified 'configure.ac'," + echo "or m4 files included by it." + program_details 'autoconf' + ;; + autoheader*) + echo "You should only need it if you modified 'acconfig.h' or" + echo "$configure_deps." + program_details 'autoheader' + ;; + automake*) + echo "You should only need it if you modified 'Makefile.am' or" + echo "$configure_deps." + program_details 'automake' + ;; + aclocal*) + echo "You should only need it if you modified 'acinclude.m4' or" + echo "$configure_deps." + program_details 'aclocal' + ;; + autom4te*) + echo "You might have modified some maintainer files that require" + echo "the 'autom4te' program to be rebuilt." + program_details 'autom4te' + ;; + bison*|yacc*) + echo "You should only need it if you modified a '.y' file." + echo "You may want to install the GNU Bison package:" + echo "<$gnu_software_URL/bison/>" + ;; + lex*|flex*) + echo "You should only need it if you modified a '.l' file." + echo "You may want to install the Fast Lexical Analyzer package:" + echo "<$flex_URL>" + ;; + help2man*) + echo "You should only need it if you modified a dependency" \ + "of a man page." + echo "You may want to install the GNU Help2man package:" + echo "<$gnu_software_URL/help2man/>" + ;; + makeinfo*) + echo "You should only need it if you modified a '.texi' file, or" + echo "any other file indirectly affecting the aspect of the manual." + echo "You might want to install the Texinfo package:" + echo "<$gnu_software_URL/texinfo/>" + echo "The spurious makeinfo call might also be the consequence of" + echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" + echo "want to install GNU make:" + echo "<$gnu_software_URL/make/>" + ;; + *) + echo "You might have modified some files without having the proper" + echo "tools for further handling them. Check the 'README' file, it" + echo "often tells you about the needed prerequisites for installing" + echo "this package. You may also peek at any GNU archive site, in" + echo "case some other package contains this missing '$1' program." + ;; + esac +} + +give_advice "$1" | sed -e '1s/^/WARNING: /' \ + -e '2,$s/^/ /' >&2 + +# Propagate the correct exit status (expected to be 127 for a program +# not found, 63 for a program that failed due to version mismatch). +exit $st + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/.gitignore geany-plugins-1.24.1+dfsg/multiterm/.gitignore --- geany-plugins-1.24.0+20140222+git/multiterm/.gitignore 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -*_vala.stamp -/src/*.[ch] diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/Makefile.in geany-plugins-1.24.1+dfsg/multiterm/Makefile.in --- geany-plugins-1.24.0+20140222+git/multiterm/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,826 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README TODO +subdir = multiterm +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +AUXFILES = TODO +SUBDIRS = src +plugin = multiterm +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign multiterm/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign multiterm/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/config.c geany-plugins-1.24.1+dfsg/multiterm/src/config.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/config.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/config.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,742 @@ +/* config.c generated by valac 0.22.1, the Vala compiler + * generated from config.vala, do not modify */ + +/* + * config.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include + +#define _g_key_file_free0(var) ((var == NULL) ? NULL : (var = (g_key_file_free (var), NULL))) +#define _g_free0(var) (var = (g_free (var), NULL)) +#define __g_list_free__multi_term_shell_config_unref0_0(var) ((var == NULL) ? NULL : (var = (_g_list_free__multi_term_shell_config_unref0_ (var), NULL))) +#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL))) +typedef struct _MultiTermParamSpecConfig MultiTermParamSpecConfig; + +struct _MultiTermConfigPrivate { + gchar* _filename; + GList* _shell_configs; +}; + +struct _MultiTermParamSpecConfig { + GParamSpec parent_instance; +}; + + +static gpointer multi_term_config_parent_class = NULL; + +#define MULTI_TERM_CONFIG_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MULTI_TERM_TYPE_CONFIG, MultiTermConfigPrivate)) +enum { + MULTI_TERM_CONFIG_DUMMY_PROPERTY +}; +static void _multi_term_shell_config_unref0_ (gpointer var); +static void _g_list_free__multi_term_shell_config_unref0_ (GList* self); +static gboolean __lambda2_ (MultiTermConfig* self); +static gboolean ___lambda2__gsource_func (gpointer self); +static void multi_term_config_finalize (MultiTermConfig* obj); +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func); +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func); + + +static void _multi_term_shell_config_unref0_ (gpointer var) { + (var == NULL) ? NULL : (var = (multi_term_shell_config_unref (var), NULL)); +} + + +static void _g_list_free__multi_term_shell_config_unref0_ (GList* self) { + g_list_foreach (self, (GFunc) _multi_term_shell_config_unref0_, NULL); + g_list_free (self); +} + + +MultiTermConfig* multi_term_config_construct (GType object_type, const gchar* filename) { + MultiTermConfig* self = NULL; + const gchar* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + g_return_val_if_fail (filename != NULL, NULL); + self = (MultiTermConfig*) g_type_create_instance (object_type); + _tmp0_ = filename; + _tmp1_ = g_strdup (_tmp0_); + _g_free0 (self->priv->_filename); + self->priv->_filename = _tmp1_; + multi_term_config_reload (self); + return self; +} + + +MultiTermConfig* multi_term_config_new (const gchar* filename) { + return multi_term_config_construct (MULTI_TERM_TYPE_CONFIG, filename); +} + + +gboolean multi_term_config_store (MultiTermConfig* self) { + gboolean result = FALSE; + gchar* data = NULL; + GKeyFile* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + _tmp0_ = self->kf; + _tmp1_ = g_key_file_to_data (_tmp0_, NULL, NULL); + data = _tmp1_; + { + const gchar* _tmp2_ = NULL; + _tmp2_ = self->priv->_filename; + g_file_set_contents (_tmp2_, data, (gssize) (-1), &_inner_error_); + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch0_g_file_error; + } + _g_free0 (data); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = FALSE; + _g_free0 (data); + return result; + } + goto __finally0; + __catch0_g_file_error: + { + GError* err = NULL; + const gchar* _tmp3_ = NULL; + GError* _tmp4_ = NULL; + const gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp3_ = self->priv->_filename; + _tmp4_ = err; + _tmp5_ = _tmp4_->message; + g_warning ("config.vala:47: Unable to save config file %s: %s", _tmp3_, _tmp5_); + result = TRUE; + _g_error_free0 (err); + _g_free0 (data); + return result; + } + __finally0: + _g_free0 (data); + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +static gboolean __lambda2_ (MultiTermConfig* self) { + gboolean result = FALSE; + gboolean _tmp0_ = FALSE; + _tmp0_ = multi_term_config_store (self); + result = _tmp0_; + return result; +} + + +static gboolean ___lambda2__gsource_func (gpointer self) { + gboolean result; + result = __lambda2_ (self); + return result; +} + + +void multi_term_config_store_eventually (MultiTermConfig* self) { + g_return_if_fail (self != NULL); + g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, ___lambda2__gsource_func, multi_term_config_ref (self), multi_term_config_unref); +} + + +void multi_term_config_reload (MultiTermConfig* self) { + GError * _inner_error_ = NULL; + g_return_if_fail (self != NULL); + { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + gsize _tmp2_; + gchar** _tmp3_ = NULL; + GKeyFile* _tmp16_ = NULL; + const gchar* _tmp17_ = NULL; + GKeyFile* _tmp18_ = NULL; + gsize _tmp19_; + gchar** _tmp20_ = NULL; + _tmp0_ = g_key_file_new (); + _g_key_file_free0 (self->kf); + self->kf = _tmp0_; + _tmp1_ = self->kf; + _tmp3_ = g_key_file_get_groups (_tmp1_, &_tmp2_); + { + gchar** group_collection = NULL; + gint group_collection_length1 = 0; + gint _group_collection_size_ = 0; + gint group_it = 0; + group_collection = _tmp3_; + group_collection_length1 = _tmp2_; + for (group_it = 0; group_it < _tmp2_; group_it = group_it + 1) { + gchar* _tmp4_ = NULL; + gchar* group = NULL; + _tmp4_ = g_strdup (group_collection[group_it]); + group = _tmp4_; + { + gchar** _tmp5_ = NULL; + GKeyFile* _tmp6_ = NULL; + const gchar* _tmp7_ = NULL; + gsize _tmp8_; + gchar** _tmp9_ = NULL; + gint _tmp5__length1 = 0; + gint __tmp5__size_ = 0; + GKeyFile* _tmp14_ = NULL; + const gchar* _tmp15_ = NULL; + _tmp6_ = self->kf; + _tmp7_ = group; + _tmp9_ = g_key_file_get_keys (_tmp6_, _tmp7_, &_tmp8_, &_inner_error_); + _tmp5_ = _tmp9_; + _tmp5__length1 = _tmp8_; + __tmp5__size_ = _tmp5__length1; + if (_inner_error_ != NULL) { + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch1_g_key_file_error; + } + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch1_g_file_error; + } + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + { + gchar** key_collection = NULL; + gint key_collection_length1 = 0; + gint _key_collection_size_ = 0; + gint key_it = 0; + key_collection = _tmp5_; + key_collection_length1 = _tmp5__length1; + for (key_it = 0; key_it < _tmp5__length1; key_it = key_it + 1) { + gchar* _tmp10_ = NULL; + gchar* key = NULL; + _tmp10_ = g_strdup (key_collection[key_it]); + key = _tmp10_; + { + GKeyFile* _tmp11_ = NULL; + const gchar* _tmp12_ = NULL; + const gchar* _tmp13_ = NULL; + _tmp11_ = self->kf; + _tmp12_ = group; + _tmp13_ = key; + g_key_file_remove_key (_tmp11_, _tmp12_, _tmp13_, &_inner_error_); + if (_inner_error_ != NULL) { + _g_free0 (key); + key_collection = (_vala_array_free (key_collection, key_collection_length1, (GDestroyNotify) g_free), NULL); + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch1_g_key_file_error; + } + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch1_g_file_error; + } + _g_free0 (key); + key_collection = (_vala_array_free (key_collection, key_collection_length1, (GDestroyNotify) g_free), NULL); + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + _g_free0 (key); + } + } + key_collection = (_vala_array_free (key_collection, key_collection_length1, (GDestroyNotify) g_free), NULL); + } + _tmp14_ = self->kf; + _tmp15_ = group; + g_key_file_remove_group (_tmp14_, _tmp15_, &_inner_error_); + if (_inner_error_ != NULL) { + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch1_g_key_file_error; + } + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch1_g_file_error; + } + _g_free0 (group); + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + _g_free0 (group); + } + } + group_collection = (_vala_array_free (group_collection, group_collection_length1, (GDestroyNotify) g_free), NULL); + } + _tmp16_ = self->kf; + _tmp17_ = self->priv->_filename; + g_key_file_load_from_file (_tmp16_, _tmp17_, G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS, &_inner_error_); + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch1_g_key_file_error; + } + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch1_g_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + __g_list_free__multi_term_shell_config_unref0_0 (self->priv->_shell_configs); + self->priv->_shell_configs = NULL; + _tmp18_ = self->kf; + _tmp20_ = g_key_file_get_groups (_tmp18_, &_tmp19_); + { + gchar** section_collection = NULL; + gint section_collection_length1 = 0; + gint _section_collection_size_ = 0; + gint section_it = 0; + section_collection = _tmp20_; + section_collection_length1 = _tmp19_; + for (section_it = 0; section_it < _tmp19_; section_it = section_it + 1) { + gchar* _tmp21_ = NULL; + gchar* section = NULL; + _tmp21_ = g_strdup (section_collection[section_it]); + section = _tmp21_; + { + const gchar* _tmp22_ = NULL; + gboolean _tmp23_ = FALSE; + _tmp22_ = section; + _tmp23_ = g_str_has_prefix (_tmp22_, "shell="); + if (_tmp23_) { + const gchar* _tmp24_ = NULL; + MultiTermShellConfig* _tmp25_ = NULL; + _tmp24_ = section; + _tmp25_ = multi_term_shell_config_new (self, _tmp24_); + self->priv->_shell_configs = g_list_append (self->priv->_shell_configs, _tmp25_); + } + _g_free0 (section); + } + } + section_collection = (_vala_array_free (section_collection, section_collection_length1, (GDestroyNotify) g_free), NULL); + } + } + goto __finally1; + __catch1_g_key_file_error: + { + GError* err = NULL; + const gchar* _tmp26_ = NULL; + GError* _tmp27_ = NULL; + const gchar* _tmp28_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp26_ = self->priv->_filename; + _tmp27_ = err; + _tmp28_ = _tmp27_->message; + g_warning ("config.vala:85: Unable to load config file %s: %s", _tmp26_, _tmp28_); + _g_error_free0 (err); + } + goto __finally1; + __catch1_g_file_error: + { + GError* err = NULL; + const gchar* _tmp29_ = NULL; + GError* _tmp30_ = NULL; + const gchar* _tmp31_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp29_ = self->priv->_filename; + _tmp30_ = err; + _tmp31_ = _tmp30_->message; + g_warning ("config.vala:89: Unable to load config file %s: %s", _tmp29_, _tmp31_); + _g_error_free0 (err); + } + __finally1: + if (_inner_error_ != NULL) { + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } +} + + +const gchar* multi_term_config_get_filename (MultiTermConfig* self) { + const gchar* result; + const gchar* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->priv->_filename; + result = _tmp0_; + return result; +} + + +gboolean multi_term_config_get_show_tabs (MultiTermConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + gboolean _tmp2_ = FALSE; + _tmp1_ = self->kf; + _tmp2_ = g_key_file_get_boolean (_tmp1_, "general", "show_tabs", &_inner_error_); + _tmp0_ = _tmp2_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch2_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally2; + __catch2_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = TRUE; + _g_error_free0 (err); + return result; + } + __finally2: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_config_set_show_tabs (MultiTermConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + gboolean _tmp1_ = FALSE; + g_return_if_fail (self != NULL); + _tmp0_ = self->kf; + _tmp1_ = value; + g_key_file_set_boolean (_tmp0_, "general", "show_tabs", _tmp1_); + multi_term_config_store_eventually (self); +} + + +gchar* multi_term_config_get_external_terminal (MultiTermConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + _tmp1_ = self->kf; + _tmp2_ = g_key_file_get_string (_tmp1_, "general", "external_terminal", &_inner_error_); + _tmp0_ = _tmp2_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch3_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally3; + __catch3_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp3_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp3_ = g_strdup ("xterm"); + result = _tmp3_; + _g_error_free0 (err); + return result; + } + __finally3: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_config_set_external_terminal (MultiTermConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->kf; + _tmp1_ = value; + g_key_file_set_string (_tmp0_, "general", "external_terminal", _tmp1_); + multi_term_config_store_eventually (self); +} + + +gchar* multi_term_config_get_location (MultiTermConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + _tmp1_ = self->kf; + _tmp2_ = g_key_file_get_string (_tmp1_, "general", "location", &_inner_error_); + _tmp0_ = _tmp2_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch4_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally4; + __catch4_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp3_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp3_ = g_strdup ("msgwin"); + result = _tmp3_; + _g_error_free0 (err); + return result; + } + __finally4: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_config_set_location (MultiTermConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->kf; + _tmp1_ = value; + g_key_file_set_string (_tmp0_, "general", "location", _tmp1_); + multi_term_config_store_eventually (self); +} + + +GList* multi_term_config_get_shell_configs (MultiTermConfig* self) { + GList* result; + GList* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->priv->_shell_configs; + result = _tmp0_; + return result; +} + + +static void multi_term_value_config_init (GValue* value) { + value->data[0].v_pointer = NULL; +} + + +static void multi_term_value_config_free_value (GValue* value) { + if (value->data[0].v_pointer) { + multi_term_config_unref (value->data[0].v_pointer); + } +} + + +static void multi_term_value_config_copy_value (const GValue* src_value, GValue* dest_value) { + if (src_value->data[0].v_pointer) { + dest_value->data[0].v_pointer = multi_term_config_ref (src_value->data[0].v_pointer); + } else { + dest_value->data[0].v_pointer = NULL; + } +} + + +static gpointer multi_term_value_config_peek_pointer (const GValue* value) { + return value->data[0].v_pointer; +} + + +static gchar* multi_term_value_config_collect_value (GValue* value, guint n_collect_values, GTypeCValue* collect_values, guint collect_flags) { + if (collect_values[0].v_pointer) { + MultiTermConfig* object; + object = collect_values[0].v_pointer; + if (object->parent_instance.g_class == NULL) { + return g_strconcat ("invalid unclassed object pointer for value type `", G_VALUE_TYPE_NAME (value), "'", NULL); + } else if (!g_value_type_compatible (G_TYPE_FROM_INSTANCE (object), G_VALUE_TYPE (value))) { + return g_strconcat ("invalid object type `", g_type_name (G_TYPE_FROM_INSTANCE (object)), "' for value type `", G_VALUE_TYPE_NAME (value), "'", NULL); + } + value->data[0].v_pointer = multi_term_config_ref (object); + } else { + value->data[0].v_pointer = NULL; + } + return NULL; +} + + +static gchar* multi_term_value_config_lcopy_value (const GValue* value, guint n_collect_values, GTypeCValue* collect_values, guint collect_flags) { + MultiTermConfig** object_p; + object_p = collect_values[0].v_pointer; + if (!object_p) { + return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); + } + if (!value->data[0].v_pointer) { + *object_p = NULL; + } else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) { + *object_p = value->data[0].v_pointer; + } else { + *object_p = multi_term_config_ref (value->data[0].v_pointer); + } + return NULL; +} + + +GParamSpec* multi_term_param_spec_config (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags) { + MultiTermParamSpecConfig* spec; + g_return_val_if_fail (g_type_is_a (object_type, MULTI_TERM_TYPE_CONFIG), NULL); + spec = g_param_spec_internal (G_TYPE_PARAM_OBJECT, name, nick, blurb, flags); + G_PARAM_SPEC (spec)->value_type = object_type; + return G_PARAM_SPEC (spec); +} + + +gpointer multi_term_value_get_config (const GValue* value) { + g_return_val_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_CONFIG), NULL); + return value->data[0].v_pointer; +} + + +void multi_term_value_set_config (GValue* value, gpointer v_object) { + MultiTermConfig* old; + g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_CONFIG)); + old = value->data[0].v_pointer; + if (v_object) { + g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, MULTI_TERM_TYPE_CONFIG)); + g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value))); + value->data[0].v_pointer = v_object; + multi_term_config_ref (value->data[0].v_pointer); + } else { + value->data[0].v_pointer = NULL; + } + if (old) { + multi_term_config_unref (old); + } +} + + +void multi_term_value_take_config (GValue* value, gpointer v_object) { + MultiTermConfig* old; + g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_CONFIG)); + old = value->data[0].v_pointer; + if (v_object) { + g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, MULTI_TERM_TYPE_CONFIG)); + g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value))); + value->data[0].v_pointer = v_object; + } else { + value->data[0].v_pointer = NULL; + } + if (old) { + multi_term_config_unref (old); + } +} + + +static void multi_term_config_class_init (MultiTermConfigClass * klass) { + multi_term_config_parent_class = g_type_class_peek_parent (klass); + MULTI_TERM_CONFIG_CLASS (klass)->finalize = multi_term_config_finalize; + g_type_class_add_private (klass, sizeof (MultiTermConfigPrivate)); +} + + +static void multi_term_config_instance_init (MultiTermConfig * self) { + self->priv = MULTI_TERM_CONFIG_GET_PRIVATE (self); + self->priv->_shell_configs = NULL; + self->ref_count = 1; +} + + +static void multi_term_config_finalize (MultiTermConfig* obj) { + MultiTermConfig * self; + self = G_TYPE_CHECK_INSTANCE_CAST (obj, MULTI_TERM_TYPE_CONFIG, MultiTermConfig); + _g_key_file_free0 (self->kf); + _g_free0 (self->priv->_filename); + __g_list_free__multi_term_shell_config_unref0_0 (self->priv->_shell_configs); +} + + +GType multi_term_config_get_type (void) { + static volatile gsize multi_term_config_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_config_type_id__volatile)) { + static const GTypeValueTable g_define_type_value_table = { multi_term_value_config_init, multi_term_value_config_free_value, multi_term_value_config_copy_value, multi_term_value_config_peek_pointer, "p", multi_term_value_config_collect_value, "p", multi_term_value_config_lcopy_value }; + static const GTypeInfo g_define_type_info = { sizeof (MultiTermConfigClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_config_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermConfig), 0, (GInstanceInitFunc) multi_term_config_instance_init, &g_define_type_value_table }; + static const GTypeFundamentalInfo g_define_type_fundamental_info = { (G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE) }; + GType multi_term_config_type_id; + multi_term_config_type_id = g_type_register_fundamental (g_type_fundamental_next (), "MultiTermConfig", &g_define_type_info, &g_define_type_fundamental_info, 0); + g_once_init_leave (&multi_term_config_type_id__volatile, multi_term_config_type_id); + } + return multi_term_config_type_id__volatile; +} + + +gpointer multi_term_config_ref (gpointer instance) { + MultiTermConfig* self; + self = instance; + g_atomic_int_inc (&self->ref_count); + return instance; +} + + +void multi_term_config_unref (gpointer instance) { + MultiTermConfig* self; + self = instance; + if (g_atomic_int_dec_and_test (&self->ref_count)) { + MULTI_TERM_CONFIG_GET_CLASS (self)->finalize (self); + g_type_free_instance ((GTypeInstance *) self); + } +} + + +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func) { + if ((array != NULL) && (destroy_func != NULL)) { + int i; + for (i = 0; i < array_length; i = i + 1) { + if (((gpointer*) array)[i] != NULL) { + destroy_func (((gpointer*) array)[i]); + } + } + } +} + + +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func) { + _vala_array_destroy (array, array_length, destroy_func); + g_free (array); +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/context-menu.c geany-plugins-1.24.1+dfsg/multiterm/src/context-menu.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/context-menu.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/context-menu.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,637 @@ +/* context-menu.c generated by valac 0.22.1, the Vala compiler + * generated from context-menu.vala, do not modify */ + +/* + * context-menu.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include + +#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL))) +typedef struct _Block1Data Block1Data; +typedef struct _Block2Data Block2Data; +#define _multi_term_shell_config_unref0(var) ((var == NULL) ? NULL : (var = (multi_term_shell_config_unref (var), NULL))) +#define _g_free0(var) (var = (g_free (var), NULL)) + +struct _Block1Data { + int _ref_count_; + MultiTermContextMenu * self; + GtkMenuItem* item; + GtkCheckMenuItem* check_item; +}; + +struct _Block2Data { + int _ref_count_; + Block1Data * _data1_; + MultiTermShellConfig* sh; +}; + + +static gpointer multi_term_context_menu_parent_class = NULL; + +enum { + MULTI_TERM_CONTEXT_MENU_DUMMY_PROPERTY +}; +static void multi_term_context_menu_on_show_tabs_activate (MultiTermContextMenu* self, GtkCheckMenuItem* item); +static void multi_term_context_menu_on_next_previous_tab_activate (MultiTermContextMenu* self, GtkMenuItem* item, gboolean next); +static void multi_term_context_menu_on_move_to_location (MultiTermContextMenu* self, GtkMenuItem* item); +static void multi_term_context_menu_add_separator (MultiTermContextMenu* self); +static Block1Data* block1_data_ref (Block1Data* _data1_); +static void block1_data_unref (void * _userdata_); +static Block2Data* block2_data_ref (Block2Data* _data2_); +static void block2_data_unref (void * _userdata_); +static void _____lambda3_ (Block2Data* _data2_); +static void ______lambda3__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda4_ (MultiTermContextMenu* self); +static void ___lambda4__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda5_ (Block1Data* _data1_); +static void ___lambda5__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda6_ (Block1Data* _data1_); +static void ___lambda6__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda7_ (MultiTermContextMenu* self); +static void ___lambda7__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda8_ (MultiTermContextMenu* self); +static void ___lambda8__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda9_ (Block1Data* _data1_); +static void ___lambda9__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda10_ (Block1Data* _data1_); +static void ___lambda10__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void __lambda11_ (MultiTermContextMenu* self); +static void ___lambda11__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self); +static void g_cclosure_user_marshal_VOID__MULTI_TERM_SHELL_CONFIG (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data); +static void g_cclosure_user_marshal_BOOLEAN__VOID (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data); + + +static void multi_term_context_menu_on_show_tabs_activate (MultiTermContextMenu* self, GtkCheckMenuItem* item) { + GtkCheckMenuItem* _tmp0_ = NULL; + gboolean _tmp1_ = FALSE; + gboolean _tmp2_ = FALSE; + g_return_if_fail (self != NULL); + g_return_if_fail (item != NULL); + _tmp0_ = item; + _tmp1_ = gtk_check_menu_item_get_active (_tmp0_); + _tmp2_ = _tmp1_; + g_signal_emit_by_name (self, "show-tabs-activate", _tmp2_); +} + + +static void multi_term_context_menu_on_next_previous_tab_activate (MultiTermContextMenu* self, GtkMenuItem* item, gboolean next) { + gboolean _tmp0_ = FALSE; + gboolean _tmp1_ = FALSE; + GtkMenuItem* _tmp4_ = NULL; + gboolean _tmp5_ = FALSE; + g_return_if_fail (self != NULL); + g_return_if_fail (item != NULL); + _tmp1_ = next; + if (_tmp1_) { + gboolean _tmp2_ = FALSE; + g_signal_emit_by_name (self, "next-tab-activate", &_tmp2_); + _tmp0_ = _tmp2_; + } else { + gboolean _tmp3_ = FALSE; + g_signal_emit_by_name (self, "previous-tab-activate", &_tmp3_); + _tmp0_ = _tmp3_; + } + _tmp4_ = item; + _tmp5_ = _tmp0_; + gtk_widget_set_sensitive ((GtkWidget*) _tmp4_, _tmp5_); +} + + +static void multi_term_context_menu_on_move_to_location (MultiTermContextMenu* self, GtkMenuItem* item) { + GtkMenuItem* _tmp0_ = NULL; + gconstpointer _tmp1_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (item != NULL); + _tmp0_ = item; + _tmp1_ = g_object_get_data ((GObject*) _tmp0_, "location_is_msgwin"); + if ((gboolean) ((gintptr) _tmp1_)) { + GtkMenuItem* _tmp2_ = NULL; + GtkMenuItem* _tmp3_ = NULL; + _tmp2_ = item; + gtk_menu_item_set_label (_tmp2_, "Move to message window"); + _tmp3_ = item; + g_object_set_data_full ((GObject*) _tmp3_, "location_is_msgwin", (gpointer) ((gintptr) FALSE), NULL); + g_signal_emit_by_name (self, "move-to-location-activate", "sidebar"); + } else { + GtkMenuItem* _tmp4_ = NULL; + GtkMenuItem* _tmp5_ = NULL; + _tmp4_ = item; + gtk_menu_item_set_label (_tmp4_, "Move to sidebar"); + _tmp5_ = item; + g_object_set_data_full ((GObject*) _tmp5_, "location_is_msgwin", (gpointer) ((gintptr) TRUE), NULL); + g_signal_emit_by_name (self, "move-to-location-activate", "msgwin"); + } +} + + +static void multi_term_context_menu_add_separator (MultiTermContextMenu* self) { + GtkSeparatorMenuItem* item = NULL; + GtkSeparatorMenuItem* _tmp0_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = (GtkSeparatorMenuItem*) gtk_separator_menu_item_new (); + g_object_ref_sink (_tmp0_); + item = _tmp0_; + gtk_menu_shell_append ((GtkMenuShell*) self, (GtkWidget*) ((GtkMenuItem*) item)); + gtk_widget_show ((GtkWidget*) item); + _g_object_unref0 (item); +} + + +static Block1Data* block1_data_ref (Block1Data* _data1_) { + g_atomic_int_inc (&_data1_->_ref_count_); + return _data1_; +} + + +static void block1_data_unref (void * _userdata_) { + Block1Data* _data1_; + _data1_ = (Block1Data*) _userdata_; + if (g_atomic_int_dec_and_test (&_data1_->_ref_count_)) { + MultiTermContextMenu * self; + self = _data1_->self; + _g_object_unref0 (_data1_->check_item); + _g_object_unref0 (_data1_->item); + _g_object_unref0 (self); + g_slice_free (Block1Data, _data1_); + } +} + + +static Block2Data* block2_data_ref (Block2Data* _data2_) { + g_atomic_int_inc (&_data2_->_ref_count_); + return _data2_; +} + + +static void block2_data_unref (void * _userdata_) { + Block2Data* _data2_; + _data2_ = (Block2Data*) _userdata_; + if (g_atomic_int_dec_and_test (&_data2_->_ref_count_)) { + MultiTermContextMenu * self; + self = _data2_->_data1_->self; + _multi_term_shell_config_unref0 (_data2_->sh); + block1_data_unref (_data2_->_data1_); + _data2_->_data1_ = NULL; + g_slice_free (Block2Data, _data2_); + } +} + + +static gpointer _multi_term_shell_config_ref0 (gpointer self) { + return self ? multi_term_shell_config_ref (self) : NULL; +} + + +static void _____lambda3_ (Block2Data* _data2_) { + Block1Data* _data1_; + MultiTermContextMenu * self; + MultiTermShellConfig* _tmp0_ = NULL; + _data1_ = _data2_->_data1_; + self = _data1_->self; + _tmp0_ = _data2_->sh; + g_signal_emit_by_name (self, "new-shell-activate", _tmp0_); +} + + +static void ______lambda3__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + _____lambda3_ (self); +} + + +static void __lambda4_ (MultiTermContextMenu* self) { + g_signal_emit_by_name (self, "new-window-activate"); +} + + +static void ___lambda4__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda4_ (self); +} + + +static void __lambda5_ (Block1Data* _data1_) { + MultiTermContextMenu * self; + GtkMenuItem* _tmp0_ = NULL; + self = _data1_->self; + _tmp0_ = _data1_->item; + multi_term_context_menu_on_next_previous_tab_activate (self, _tmp0_, TRUE); +} + + +static void ___lambda5__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda5_ (self); +} + + +static void __lambda6_ (Block1Data* _data1_) { + MultiTermContextMenu * self; + GtkMenuItem* _tmp0_ = NULL; + self = _data1_->self; + _tmp0_ = _data1_->item; + multi_term_context_menu_on_next_previous_tab_activate (self, _tmp0_, FALSE); +} + + +static void ___lambda6__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda6_ (self); +} + + +static void __lambda7_ (MultiTermContextMenu* self) { + g_signal_emit_by_name (self, "copy-activate"); +} + + +static void ___lambda7__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda7_ (self); +} + + +static void __lambda8_ (MultiTermContextMenu* self) { + g_signal_emit_by_name (self, "paste-activate"); +} + + +static void ___lambda8__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda8_ (self); +} + + +static void __lambda9_ (Block1Data* _data1_) { + MultiTermContextMenu * self; + GtkCheckMenuItem* _tmp0_ = NULL; + self = _data1_->self; + _tmp0_ = _data1_->check_item; + multi_term_context_menu_on_show_tabs_activate (self, _tmp0_); +} + + +static void ___lambda9__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda9_ (self); +} + + +static void __lambda10_ (Block1Data* _data1_) { + MultiTermContextMenu * self; + GtkMenuItem* _tmp0_ = NULL; + self = _data1_->self; + _tmp0_ = _data1_->item; + multi_term_context_menu_on_move_to_location (self, _tmp0_); +} + + +static void ___lambda10__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda10_ (self); +} + + +static void __lambda11_ (MultiTermContextMenu* self) { + g_signal_emit_by_name (self, "preferences-activate"); +} + + +static void ___lambda11__gtk_menu_item_activate (GtkMenuItem* _sender, gpointer self) { + __lambda11_ (self); +} + + +MultiTermContextMenu* multi_term_context_menu_construct (GType object_type, MultiTermConfig* cfg) { + MultiTermContextMenu * self = NULL; + Block1Data* _data1_; + GtkMenu* menu = NULL; + GtkImageMenuItem* image_item = NULL; + GtkMenu* _tmp0_ = NULL; + GtkMenu* _tmp1_ = NULL; + GtkMenuItem* _tmp2_ = NULL; + GtkMenuItem* _tmp3_ = NULL; + GtkMenu* _tmp4_ = NULL; + GtkMenuItem* _tmp5_ = NULL; + GtkMenuItem* _tmp6_ = NULL; + guint len = 0U; + MultiTermConfig* _tmp7_ = NULL; + GList* _tmp8_ = NULL; + GList* _tmp9_ = NULL; + guint _tmp10_ = 0U; + GtkMenuItem* _tmp31_ = NULL; + GtkMenuItem* _tmp32_ = NULL; + GtkMenuItem* _tmp33_ = NULL; + GtkMenuItem* _tmp34_ = NULL; + GtkMenuItem* _tmp35_ = NULL; + GtkMenuItem* _tmp36_ = NULL; + GtkMenuItem* _tmp37_ = NULL; + GtkMenuItem* _tmp38_ = NULL; + GtkImageMenuItem* _tmp39_ = NULL; + GtkImageMenuItem* _tmp40_ = NULL; + GtkImageMenuItem* _tmp41_ = NULL; + GtkImageMenuItem* _tmp42_ = NULL; + GtkCheckMenuItem* _tmp43_ = NULL; + GtkCheckMenuItem* _tmp44_ = NULL; + MultiTermConfig* _tmp45_ = NULL; + gboolean _tmp46_ = FALSE; + gboolean _tmp47_ = FALSE; + GtkCheckMenuItem* _tmp48_ = NULL; + GtkCheckMenuItem* _tmp49_ = NULL; + GtkCheckMenuItem* _tmp50_ = NULL; + MultiTermConfig* _tmp51_ = NULL; + gchar* _tmp52_ = NULL; + gchar* _tmp53_ = NULL; + gchar* _tmp54_ = NULL; + gboolean _tmp55_ = FALSE; + GtkMenuItem* _tmp60_ = NULL; + GtkMenuItem* _tmp61_ = NULL; + GtkMenuItem* _tmp62_ = NULL; + GtkImageMenuItem* _tmp63_ = NULL; + GtkImageMenuItem* _tmp64_ = NULL; + _data1_ = g_slice_new0 (Block1Data); + _data1_->_ref_count_ = 1; + self = (MultiTermContextMenu*) g_object_new (object_type, NULL); + _data1_->self = g_object_ref (self); + _tmp0_ = (GtkMenu*) gtk_menu_new (); + g_object_ref_sink (_tmp0_); + _g_object_unref0 (menu); + menu = _tmp0_; + _tmp1_ = menu; + gtk_widget_show ((GtkWidget*) _tmp1_); + _tmp2_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Open Tab"); + g_object_ref_sink (_tmp2_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp2_; + _tmp3_ = _data1_->item; + _tmp4_ = menu; + gtk_menu_item_set_submenu (_tmp3_, (GtkWidget*) _tmp4_); + _tmp5_ = _data1_->item; + gtk_widget_show ((GtkWidget*) _tmp5_); + _tmp6_ = _data1_->item; + gtk_menu_shell_append ((GtkMenuShell*) self, (GtkWidget*) _tmp6_); + _tmp7_ = cfg; + _tmp8_ = multi_term_config_get_shell_configs (_tmp7_); + _tmp9_ = _tmp8_; + _tmp10_ = g_list_length (_tmp9_); + len = _tmp10_; + { + guint i = 0U; + i = (guint) 0; + { + gboolean _tmp11_ = FALSE; + _tmp11_ = TRUE; + while (TRUE) { + Block2Data* _data2_; + gboolean _tmp12_ = FALSE; + guint _tmp14_ = 0U; + guint _tmp15_ = 0U; + MultiTermConfig* _tmp16_ = NULL; + GList* _tmp17_ = NULL; + GList* _tmp18_ = NULL; + guint _tmp19_ = 0U; + gconstpointer _tmp20_ = NULL; + MultiTermShellConfig* _tmp21_ = NULL; + MultiTermShellConfig* _tmp22_ = NULL; + gchar* _tmp23_ = NULL; + gchar* _tmp24_ = NULL; + gchar* _tmp25_ = NULL; + GtkMenuItem* _tmp26_ = NULL; + GtkMenuItem* _tmp27_ = NULL; + GtkMenu* _tmp28_ = NULL; + GtkMenuItem* _tmp29_ = NULL; + GtkMenuItem* _tmp30_ = NULL; + _data2_ = g_slice_new0 (Block2Data); + _data2_->_ref_count_ = 1; + _data2_->_data1_ = block1_data_ref (_data1_); + _tmp12_ = _tmp11_; + if (!_tmp12_) { + guint _tmp13_ = 0U; + _tmp13_ = i; + i = _tmp13_ + 1; + } + _tmp11_ = FALSE; + _tmp14_ = i; + _tmp15_ = len; + if (!(_tmp14_ < _tmp15_)) { + block2_data_unref (_data2_); + _data2_ = NULL; + break; + } + _tmp16_ = cfg; + _tmp17_ = multi_term_config_get_shell_configs (_tmp16_); + _tmp18_ = _tmp17_; + _tmp19_ = i; + _tmp20_ = g_list_nth_data (_tmp18_, _tmp19_); + _tmp21_ = _multi_term_shell_config_ref0 ((MultiTermShellConfig*) _tmp20_); + _data2_->sh = _tmp21_; + _tmp22_ = _data2_->sh; + _tmp23_ = multi_term_shell_config_get_name (_tmp22_); + _tmp24_ = _tmp23_; + _tmp25_ = _tmp24_; + _tmp26_ = (GtkMenuItem*) gtk_menu_item_new_with_label (_tmp25_); + g_object_ref_sink (_tmp26_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp26_; + _g_free0 (_tmp25_); + _tmp27_ = _data1_->item; + g_signal_connect_data (_tmp27_, "activate", (GCallback) ______lambda3__gtk_menu_item_activate, block2_data_ref (_data2_), (GClosureNotify) block2_data_unref, 0); + _tmp28_ = menu; + _tmp29_ = _data1_->item; + gtk_menu_shell_append ((GtkMenuShell*) _tmp28_, (GtkWidget*) _tmp29_); + _tmp30_ = _data1_->item; + gtk_widget_show ((GtkWidget*) _tmp30_); + block2_data_unref (_data2_); + _data2_ = NULL; + } + } + } + _tmp31_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Open Window"); + g_object_ref_sink (_tmp31_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp31_; + _tmp32_ = _data1_->item; + g_signal_connect_object (_tmp32_, "activate", (GCallback) ___lambda4__gtk_menu_item_activate, self, 0); + _tmp33_ = _data1_->item; + gtk_menu_shell_append ((GtkMenuShell*) self, (GtkWidget*) _tmp33_); + _tmp34_ = _data1_->item; + gtk_widget_show ((GtkWidget*) _tmp34_); + multi_term_context_menu_add_separator (self); + _tmp35_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Next tab"); + g_object_ref_sink (_tmp35_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp35_; + _tmp36_ = _data1_->item; + g_signal_connect_data (_tmp36_, "activate", (GCallback) ___lambda5__gtk_menu_item_activate, block1_data_ref (_data1_), (GClosureNotify) block1_data_unref, 0); + _tmp37_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Previous tab"); + g_object_ref_sink (_tmp37_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp37_; + _tmp38_ = _data1_->item; + g_signal_connect_data (_tmp38_, "activate", (GCallback) ___lambda6__gtk_menu_item_activate, block1_data_ref (_data1_), (GClosureNotify) block1_data_unref, 0); + _tmp39_ = (GtkImageMenuItem*) gtk_image_menu_item_new_from_stock (GTK_STOCK_COPY, NULL); + g_object_ref_sink (_tmp39_); + _g_object_unref0 (image_item); + image_item = _tmp39_; + _tmp40_ = image_item; + g_signal_connect_object ((GtkMenuItem*) _tmp40_, "activate", (GCallback) ___lambda7__gtk_menu_item_activate, self, 0); + _tmp41_ = (GtkImageMenuItem*) gtk_image_menu_item_new_from_stock (GTK_STOCK_PASTE, NULL); + g_object_ref_sink (_tmp41_); + _g_object_unref0 (image_item); + image_item = _tmp41_; + _tmp42_ = image_item; + g_signal_connect_object ((GtkMenuItem*) _tmp42_, "activate", (GCallback) ___lambda8__gtk_menu_item_activate, self, 0); + _tmp43_ = (GtkCheckMenuItem*) gtk_check_menu_item_new_with_label ("Show Tabs"); + g_object_ref_sink (_tmp43_); + _g_object_unref0 (_data1_->check_item); + _data1_->check_item = _tmp43_; + _tmp44_ = _data1_->check_item; + _tmp45_ = cfg; + _tmp46_ = multi_term_config_get_show_tabs (_tmp45_); + _tmp47_ = _tmp46_; + gtk_check_menu_item_set_active (_tmp44_, _tmp47_); + _tmp48_ = _data1_->check_item; + g_signal_connect_data ((GtkMenuItem*) _tmp48_, "activate", (GCallback) ___lambda9__gtk_menu_item_activate, block1_data_ref (_data1_), (GClosureNotify) block1_data_unref, 0); + _tmp49_ = _data1_->check_item; + gtk_menu_shell_append ((GtkMenuShell*) self, (GtkWidget*) ((GtkMenuItem*) _tmp49_)); + _tmp50_ = _data1_->check_item; + gtk_widget_show ((GtkWidget*) _tmp50_); + _tmp51_ = cfg; + _tmp52_ = multi_term_config_get_location (_tmp51_); + _tmp53_ = _tmp52_; + _tmp54_ = _tmp53_; + _tmp55_ = g_strcmp0 (_tmp54_, "msgwin") == 0; + _g_free0 (_tmp54_); + if (_tmp55_) { + GtkMenuItem* _tmp56_ = NULL; + GtkMenuItem* _tmp57_ = NULL; + _tmp56_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Move to sidebar"); + g_object_ref_sink (_tmp56_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp56_; + _tmp57_ = _data1_->item; + g_object_set_data_full ((GObject*) _tmp57_, "location_is_msgwin", (gpointer) ((gintptr) TRUE), NULL); + } else { + GtkMenuItem* _tmp58_ = NULL; + GtkMenuItem* _tmp59_ = NULL; + _tmp58_ = (GtkMenuItem*) gtk_menu_item_new_with_label ("Move to message window"); + g_object_ref_sink (_tmp58_); + _g_object_unref0 (_data1_->item); + _data1_->item = _tmp58_; + _tmp59_ = _data1_->item; + g_object_set_data_full ((GObject*) _tmp59_, "location_is_msgwin", (gpointer) ((gintptr) FALSE), NULL); + } + _tmp60_ = _data1_->item; + g_signal_connect_data (_tmp60_, "activate", (GCallback) ___lambda10__gtk_menu_item_activate, block1_data_ref (_data1_), (GClosureNotify) block1_data_unref, 0); + _tmp61_ = _data1_->item; + gtk_menu_shell_append ((GtkMenuShell*) self, (GtkWidget*) _tmp61_); + _tmp62_ = _data1_->item; + gtk_widget_show ((GtkWidget*) _tmp62_); + _tmp63_ = (GtkImageMenuItem*) gtk_image_menu_item_new_from_stock (GTK_STOCK_PREFERENCES, NULL); + g_object_ref_sink (_tmp63_); + _g_object_unref0 (image_item); + image_item = _tmp63_; + _tmp64_ = image_item; + g_signal_connect_object ((GtkMenuItem*) _tmp64_, "activate", (GCallback) ___lambda11__gtk_menu_item_activate, self, 0); + _g_object_unref0 (image_item); + _g_object_unref0 (menu); + block1_data_unref (_data1_); + _data1_ = NULL; + return self; +} + + +MultiTermContextMenu* multi_term_context_menu_new (MultiTermConfig* cfg) { + return multi_term_context_menu_construct (MULTI_TERM_TYPE_CONTEXT_MENU, cfg); +} + + +static void g_cclosure_user_marshal_VOID__MULTI_TERM_SHELL_CONFIG (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data) { + typedef void (*GMarshalFunc_VOID__MULTI_TERM_SHELL_CONFIG) (gpointer data1, gpointer arg_1, gpointer data2); + register GMarshalFunc_VOID__MULTI_TERM_SHELL_CONFIG callback; + register GCClosure * cc; + register gpointer data1; + register gpointer data2; + cc = (GCClosure *) closure; + g_return_if_fail (n_param_values == 2); + if (G_CCLOSURE_SWAP_DATA (closure)) { + data1 = closure->data; + data2 = param_values->data[0].v_pointer; + } else { + data1 = param_values->data[0].v_pointer; + data2 = closure->data; + } + callback = (GMarshalFunc_VOID__MULTI_TERM_SHELL_CONFIG) (marshal_data ? marshal_data : cc->callback); + callback (data1, multi_term_value_get_shell_config (param_values + 1), data2); +} + + +static void g_cclosure_user_marshal_BOOLEAN__VOID (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data) { + typedef gboolean (*GMarshalFunc_BOOLEAN__VOID) (gpointer data1, gpointer data2); + register GMarshalFunc_BOOLEAN__VOID callback; + register GCClosure * cc; + register gpointer data1; + register gpointer data2; + gboolean v_return; + cc = (GCClosure *) closure; + g_return_if_fail (return_value != NULL); + g_return_if_fail (n_param_values == 1); + if (G_CCLOSURE_SWAP_DATA (closure)) { + data1 = closure->data; + data2 = param_values->data[0].v_pointer; + } else { + data1 = param_values->data[0].v_pointer; + data2 = closure->data; + } + callback = (GMarshalFunc_BOOLEAN__VOID) (marshal_data ? marshal_data : cc->callback); + v_return = callback (data1, data2); + g_value_set_boolean (return_value, v_return); +} + + +static void multi_term_context_menu_class_init (MultiTermContextMenuClass * klass) { + multi_term_context_menu_parent_class = g_type_class_peek_parent (klass); + g_signal_new ("new_shell_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_user_marshal_VOID__MULTI_TERM_SHELL_CONFIG, G_TYPE_NONE, 1, MULTI_TERM_TYPE_SHELL_CONFIG); + g_signal_new ("new_window_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + g_signal_new ("copy_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + g_signal_new ("paste_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + g_signal_new ("show_tabs_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__BOOLEAN, G_TYPE_NONE, 1, G_TYPE_BOOLEAN); + g_signal_new ("preferences_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); + g_signal_new ("next_tab_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_user_marshal_BOOLEAN__VOID, G_TYPE_BOOLEAN, 0); + g_signal_new ("previous_tab_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_user_marshal_BOOLEAN__VOID, G_TYPE_BOOLEAN, 0); + g_signal_new ("move_to_location_activate", MULTI_TERM_TYPE_CONTEXT_MENU, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING); +} + + +static void multi_term_context_menu_instance_init (MultiTermContextMenu * self) { +} + + +GType multi_term_context_menu_get_type (void) { + static volatile gsize multi_term_context_menu_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_context_menu_type_id__volatile)) { + static const GTypeInfo g_define_type_info = { sizeof (MultiTermContextMenuClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_context_menu_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermContextMenu), 0, (GInstanceInitFunc) multi_term_context_menu_instance_init, NULL }; + GType multi_term_context_menu_type_id; + multi_term_context_menu_type_id = g_type_register_static (GTK_TYPE_MENU, "MultiTermContextMenu", &g_define_type_info, 0); + g_once_init_leave (&multi_term_context_menu_type_id__volatile, multi_term_context_menu_type_id); + } + return multi_term_context_menu_type_id__volatile; +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/defconf.c geany-plugins-1.24.1+dfsg/multiterm/src/defconf.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/defconf.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/defconf.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,41 @@ +/* defconf.c generated by valac 0.22.1, the Vala compiler + * generated from defconf.vala, do not modify */ + +/* + * defconf.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ +/* + * This file contains the default configuration which will be written + * to the user's config dir if it doesn't exist. + * + * Try to make all defaults apply from here rather than hardcoded in + * other source files. + */ + +#include +#include +#include "multiterm.h" + + + + + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/Makefile.in geany-plugins-1.24.1+dfsg/multiterm/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/multiterm/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,968 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am config.c context-menu.c defconf.c \ + notebook.c plugin.c shell-config.c tab-label.c terminal.c \ + $(top_srcdir)/depcomp $(srcdir)/multiterm.h \ + $(srcdir)/multiterm_la_vala.stamp +subdir = multiterm/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +multiterm_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am_multiterm_la_OBJECTS = multiterm_la-config.lo \ + multiterm_la-context-menu.lo multiterm_la-defconf.lo \ + multiterm_la-notebook.lo multiterm_la-plugin.lo \ + multiterm_la-shell-config.lo multiterm_la-tab-label.lo \ + multiterm_la-terminal.lo +multiterm_la_OBJECTS = $(am_multiterm_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +multiterm_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(multiterm_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +VALACOMPILE = $(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) +LTVALACOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(VALAC) $(AM_VALAFLAGS) \ + $(VALAFLAGS) +AM_V_VALAC = $(am__v_VALAC_@AM_V@) +am__v_VALAC_ = $(am__v_VALAC_@AM_DEFAULT_V@) +am__v_VALAC_0 = @echo " VALAC " $@; +am__v_VALAC_1 = +SOURCES = $(multiterm_la_SOURCES) +DIST_SOURCES = $(multiterm_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = multiterm +geanyplugins_LTLIBRARIES = multiterm.la +multiterm_la_VALAFLAGS = \ + --vapidir $(top_srcdir)/multiterm/src/vapi \ + --pkg gtk+-2.0 \ + --pkg geany \ + --pkg vte \ + --header multiterm.h \ + --use-header + +multiterm_la_SOURCES = \ + config.vala \ + context-menu.vala \ + defconf.vala \ + notebook.vala \ + plugin.vala \ + shell-config.vala \ + tab-label.vala \ + terminal.vala + +multiterm_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(MULTITERM_CFLAGS) + +multiterm_la_LIBADD = \ + $(MULTITERM_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign multiterm/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign multiterm/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +multiterm.la: $(multiterm_la_OBJECTS) $(multiterm_la_DEPENDENCIES) $(EXTRA_multiterm_la_DEPENDENCIES) + $(AM_V_CCLD)$(multiterm_la_LINK) -rpath $(geanypluginsdir) $(multiterm_la_OBJECTS) $(multiterm_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-config.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-context-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-defconf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-notebook.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-shell-config.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-tab-label.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiterm_la-terminal.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +multiterm_la-config.lo: config.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-config.lo -MD -MP -MF $(DEPDIR)/multiterm_la-config.Tpo -c -o multiterm_la-config.lo `test -f 'config.c' || echo '$(srcdir)/'`config.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-config.Tpo $(DEPDIR)/multiterm_la-config.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='config.c' object='multiterm_la-config.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-config.lo `test -f 'config.c' || echo '$(srcdir)/'`config.c + +multiterm_la-context-menu.lo: context-menu.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-context-menu.lo -MD -MP -MF $(DEPDIR)/multiterm_la-context-menu.Tpo -c -o multiterm_la-context-menu.lo `test -f 'context-menu.c' || echo '$(srcdir)/'`context-menu.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-context-menu.Tpo $(DEPDIR)/multiterm_la-context-menu.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='context-menu.c' object='multiterm_la-context-menu.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-context-menu.lo `test -f 'context-menu.c' || echo '$(srcdir)/'`context-menu.c + +multiterm_la-defconf.lo: defconf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-defconf.lo -MD -MP -MF $(DEPDIR)/multiterm_la-defconf.Tpo -c -o multiterm_la-defconf.lo `test -f 'defconf.c' || echo '$(srcdir)/'`defconf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-defconf.Tpo $(DEPDIR)/multiterm_la-defconf.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='defconf.c' object='multiterm_la-defconf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-defconf.lo `test -f 'defconf.c' || echo '$(srcdir)/'`defconf.c + +multiterm_la-notebook.lo: notebook.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-notebook.lo -MD -MP -MF $(DEPDIR)/multiterm_la-notebook.Tpo -c -o multiterm_la-notebook.lo `test -f 'notebook.c' || echo '$(srcdir)/'`notebook.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-notebook.Tpo $(DEPDIR)/multiterm_la-notebook.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='notebook.c' object='multiterm_la-notebook.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-notebook.lo `test -f 'notebook.c' || echo '$(srcdir)/'`notebook.c + +multiterm_la-plugin.lo: plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-plugin.lo -MD -MP -MF $(DEPDIR)/multiterm_la-plugin.Tpo -c -o multiterm_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-plugin.Tpo $(DEPDIR)/multiterm_la-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='plugin.c' object='multiterm_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c + +multiterm_la-shell-config.lo: shell-config.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-shell-config.lo -MD -MP -MF $(DEPDIR)/multiterm_la-shell-config.Tpo -c -o multiterm_la-shell-config.lo `test -f 'shell-config.c' || echo '$(srcdir)/'`shell-config.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-shell-config.Tpo $(DEPDIR)/multiterm_la-shell-config.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='shell-config.c' object='multiterm_la-shell-config.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-shell-config.lo `test -f 'shell-config.c' || echo '$(srcdir)/'`shell-config.c + +multiterm_la-tab-label.lo: tab-label.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-tab-label.lo -MD -MP -MF $(DEPDIR)/multiterm_la-tab-label.Tpo -c -o multiterm_la-tab-label.lo `test -f 'tab-label.c' || echo '$(srcdir)/'`tab-label.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-tab-label.Tpo $(DEPDIR)/multiterm_la-tab-label.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tab-label.c' object='multiterm_la-tab-label.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-tab-label.lo `test -f 'tab-label.c' || echo '$(srcdir)/'`tab-label.c + +multiterm_la-terminal.lo: terminal.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -MT multiterm_la-terminal.lo -MD -MP -MF $(DEPDIR)/multiterm_la-terminal.Tpo -c -o multiterm_la-terminal.lo `test -f 'terminal.c' || echo '$(srcdir)/'`terminal.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multiterm_la-terminal.Tpo $(DEPDIR)/multiterm_la-terminal.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='terminal.c' object='multiterm_la-terminal.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multiterm_la_CFLAGS) $(CFLAGS) -c -o multiterm_la-terminal.lo `test -f 'terminal.c' || echo '$(srcdir)/'`terminal.c +$(srcdir)/config.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/context-menu.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/defconf.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/notebook.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/plugin.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/shell-config.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/tab-label.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/terminal.c: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/multiterm.h: $(srcdir)/multiterm_la_vala.stamp + @if test -f $@; then :; else rm -f $(srcdir)/multiterm_la_vala.stamp; fi + @if test -f $@; then :; else \ + $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/multiterm_la_vala.stamp; \ + fi +$(srcdir)/multiterm_la_vala.stamp: config.vala context-menu.vala defconf.vala notebook.vala plugin.vala shell-config.vala tab-label.vala terminal.vala + $(AM_V_at)rm -f $@ && echo stamp > $@-t + $(AM_V_VALAC)$(am__cd) $(srcdir) && $(VALAC) $(multiterm_la_VALAFLAGS) $(VALAFLAGS) -C config.vala context-menu.vala defconf.vala notebook.vala plugin.vala shell-config.vala tab-label.vala terminal.vala + $(AM_V_at)mv -f $@-t $@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -rm -f $(srcdir)/config.c + -rm -f $(srcdir)/context-menu.c + -rm -f $(srcdir)/defconf.c + -rm -f $(srcdir)/multiterm.h + -rm -f $(srcdir)/multiterm_la_vala.stamp + -rm -f $(srcdir)/notebook.c + -rm -f $(srcdir)/plugin.c + -rm -f $(srcdir)/shell-config.c + -rm -f $(srcdir)/tab-label.c + -rm -f $(srcdir)/terminal.c + -rm -f config.c + -rm -f context-menu.c + -rm -f defconf.c + -rm -f notebook.c + -rm -f plugin.c + -rm -f shell-config.c + -rm -f tab-label.c + -rm -f terminal.c +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/multiterm.h geany-plugins-1.24.1+dfsg/multiterm/src/multiterm.h --- geany-plugins-1.24.0+20140222+git/multiterm/src/multiterm.h 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/multiterm.h 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,414 @@ +/* multiterm.h generated by valac 0.22.1, the Vala compiler, do not modify */ + + +#ifndef __MULTITERM_H__ +#define __MULTITERM_H__ + +#include +#include +#include +#include +#include +#include +#include + +G_BEGIN_DECLS + + +#define MULTI_TERM_TYPE_CONFIG (multi_term_config_get_type ()) +#define MULTI_TERM_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_CONFIG, MultiTermConfig)) +#define MULTI_TERM_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_CONFIG, MultiTermConfigClass)) +#define MULTI_TERM_IS_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_CONFIG)) +#define MULTI_TERM_IS_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_CONFIG)) +#define MULTI_TERM_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_CONFIG, MultiTermConfigClass)) + +typedef struct _MultiTermConfig MultiTermConfig; +typedef struct _MultiTermConfigClass MultiTermConfigClass; +typedef struct _MultiTermConfigPrivate MultiTermConfigPrivate; + +#define MULTI_TERM_TYPE_SHELL_CONFIG (multi_term_shell_config_get_type ()) +#define MULTI_TERM_SHELL_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_SHELL_CONFIG, MultiTermShellConfig)) +#define MULTI_TERM_SHELL_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_SHELL_CONFIG, MultiTermShellConfigClass)) +#define MULTI_TERM_IS_SHELL_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_SHELL_CONFIG)) +#define MULTI_TERM_IS_SHELL_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_SHELL_CONFIG)) +#define MULTI_TERM_SHELL_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_SHELL_CONFIG, MultiTermShellConfigClass)) + +typedef struct _MultiTermShellConfig MultiTermShellConfig; +typedef struct _MultiTermShellConfigClass MultiTermShellConfigClass; + +#define MULTI_TERM_TYPE_CONTEXT_MENU (multi_term_context_menu_get_type ()) +#define MULTI_TERM_CONTEXT_MENU(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_CONTEXT_MENU, MultiTermContextMenu)) +#define MULTI_TERM_CONTEXT_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_CONTEXT_MENU, MultiTermContextMenuClass)) +#define MULTI_TERM_IS_CONTEXT_MENU(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_CONTEXT_MENU)) +#define MULTI_TERM_IS_CONTEXT_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_CONTEXT_MENU)) +#define MULTI_TERM_CONTEXT_MENU_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_CONTEXT_MENU, MultiTermContextMenuClass)) + +typedef struct _MultiTermContextMenu MultiTermContextMenu; +typedef struct _MultiTermContextMenuClass MultiTermContextMenuClass; +typedef struct _MultiTermContextMenuPrivate MultiTermContextMenuPrivate; + +#define MULTI_TERM_TYPE_NOTEBOOK (multi_term_notebook_get_type ()) +#define MULTI_TERM_NOTEBOOK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebook)) +#define MULTI_TERM_NOTEBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebookClass)) +#define MULTI_TERM_IS_NOTEBOOK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_NOTEBOOK)) +#define MULTI_TERM_IS_NOTEBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_NOTEBOOK)) +#define MULTI_TERM_NOTEBOOK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebookClass)) + +typedef struct _MultiTermNotebook MultiTermNotebook; +typedef struct _MultiTermNotebookClass MultiTermNotebookClass; +typedef struct _MultiTermNotebookPrivate MultiTermNotebookPrivate; + +#define MULTI_TERM_TYPE_TERMINAL (multi_term_terminal_get_type ()) +#define MULTI_TERM_TERMINAL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_TERMINAL, MultiTermTerminal)) +#define MULTI_TERM_TERMINAL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_TERMINAL, MultiTermTerminalClass)) +#define MULTI_TERM_IS_TERMINAL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_TERMINAL)) +#define MULTI_TERM_IS_TERMINAL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_TERMINAL)) +#define MULTI_TERM_TERMINAL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_TERMINAL, MultiTermTerminalClass)) + +typedef struct _MultiTermTerminal MultiTermTerminal; +typedef struct _MultiTermTerminalClass MultiTermTerminalClass; +typedef struct _MultiTermShellConfigPrivate MultiTermShellConfigPrivate; + +#define MULTI_TERM_TYPE_TAB_LABEL (multi_term_tab_label_get_type ()) +#define MULTI_TERM_TAB_LABEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabel)) +#define MULTI_TERM_TAB_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabelClass)) +#define MULTI_TERM_IS_TAB_LABEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MULTI_TERM_TYPE_TAB_LABEL)) +#define MULTI_TERM_IS_TAB_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MULTI_TERM_TYPE_TAB_LABEL)) +#define MULTI_TERM_TAB_LABEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabelClass)) + +typedef struct _MultiTermTabLabel MultiTermTabLabel; +typedef struct _MultiTermTabLabelClass MultiTermTabLabelClass; +typedef struct _MultiTermTabLabelPrivate MultiTermTabLabelPrivate; +typedef struct _MultiTermTerminalPrivate MultiTermTerminalPrivate; + +struct _MultiTermConfig { + GTypeInstance parent_instance; + volatile int ref_count; + MultiTermConfigPrivate * priv; + GKeyFile* kf; +}; + +struct _MultiTermConfigClass { + GTypeClass parent_class; + void (*finalize) (MultiTermConfig *self); +}; + +struct _MultiTermContextMenu { + GtkMenu parent_instance; + MultiTermContextMenuPrivate * priv; +}; + +struct _MultiTermContextMenuClass { + GtkMenuClass parent_class; +}; + +struct _MultiTermNotebook { + GtkNotebook parent_instance; + MultiTermNotebookPrivate * priv; + MultiTermConfig* cfg; +}; + +struct _MultiTermNotebookClass { + GtkNotebookClass parent_class; +}; + +struct _MultiTermShellConfig { + GTypeInstance parent_instance; + volatile int ref_count; + MultiTermShellConfigPrivate * priv; + MultiTermConfig* _cfg; +}; + +struct _MultiTermShellConfigClass { + GTypeClass parent_class; + void (*finalize) (MultiTermShellConfig *self); +}; + +struct _MultiTermTabLabel { + GtkHBox parent_instance; + MultiTermTabLabelPrivate * priv; + GtkLabel* label; +}; + +struct _MultiTermTabLabelClass { + GtkHBoxClass parent_class; +}; + +struct _MultiTermTerminal { + GtkFrame parent_instance; + MultiTermTerminalPrivate * priv; + VteTerminal* terminal; +}; + +struct _MultiTermTerminalClass { + GtkFrameClass parent_class; +}; + + +gpointer multi_term_config_ref (gpointer instance); +void multi_term_config_unref (gpointer instance); +GParamSpec* multi_term_param_spec_config (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags); +void multi_term_value_set_config (GValue* value, gpointer v_object); +void multi_term_value_take_config (GValue* value, gpointer v_object); +gpointer multi_term_value_get_config (const GValue* value); +GType multi_term_config_get_type (void) G_GNUC_CONST; +MultiTermConfig* multi_term_config_new (const gchar* filename); +MultiTermConfig* multi_term_config_construct (GType object_type, const gchar* filename); +gboolean multi_term_config_store (MultiTermConfig* self); +void multi_term_config_store_eventually (MultiTermConfig* self); +void multi_term_config_reload (MultiTermConfig* self); +const gchar* multi_term_config_get_filename (MultiTermConfig* self); +gboolean multi_term_config_get_show_tabs (MultiTermConfig* self); +void multi_term_config_set_show_tabs (MultiTermConfig* self, gboolean value); +gchar* multi_term_config_get_external_terminal (MultiTermConfig* self); +void multi_term_config_set_external_terminal (MultiTermConfig* self, const gchar* value); +gchar* multi_term_config_get_location (MultiTermConfig* self); +void multi_term_config_set_location (MultiTermConfig* self, const gchar* value); +gpointer multi_term_shell_config_ref (gpointer instance); +void multi_term_shell_config_unref (gpointer instance); +GParamSpec* multi_term_param_spec_shell_config (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags); +void multi_term_value_set_shell_config (GValue* value, gpointer v_object); +void multi_term_value_take_shell_config (GValue* value, gpointer v_object); +gpointer multi_term_value_get_shell_config (const GValue* value); +GType multi_term_shell_config_get_type (void) G_GNUC_CONST; +GList* multi_term_config_get_shell_configs (MultiTermConfig* self); +GType multi_term_context_menu_get_type (void) G_GNUC_CONST; +MultiTermContextMenu* multi_term_context_menu_new (MultiTermConfig* cfg); +MultiTermContextMenu* multi_term_context_menu_construct (GType object_type, MultiTermConfig* cfg); +#define MULTI_TERM_default_config "######################################################################" \ +"##\n" \ +"# MultiTerm Configuration File " \ +" #\n" \ +"#=====================================================================" \ +"=#\n" \ +"# " \ +" #\n" \ +"# You can configure the behaviour of the MultiTerm plugin by adjusting" \ +" #\n" \ +"# the values in this file. Lines begining with a # are considered " \ +" #\n" \ +"# comments and are left as is. Group/section names go in [] and keys " \ +" #\n" \ +"# and values are separated by an = symbol. Where more than one value " \ +" #\n" \ +"# can be supplied, as in a list, separate the values with the ; symbol" \ +".#\n" \ +"# " \ +" #\n" \ +"# Groups/section names begining with 'shell=' denote a type of " \ +" #\n" \ +"# terminal/shell that can be opened. The name of the shell follows " \ +" #\n" \ +"# the = symbol. Each shell can have it's own specific VTE " \ +" #\n" \ +"# configuration and can run it's own child command. As an example, if" \ +" #\n" \ +"# you wanted to use the Python interpreter shell instead of the " \ +" #\n" \ +"# default shell, specify 'command=python'. " \ +" #\n" \ +"# " \ +" #\n" \ +"# Keys/values commented out or empty values will cause MultiTerm to " \ +" #\n" \ +"# use default values. " \ +" #\n" \ +"# " \ +" #\n" \ +"######################################################################" \ +"##\n" \ +"\n" \ +"#=====================================================================" \ +"==\n" \ +"# General Settings\n" \ +"#=====================================================================" \ +"==\n" \ +"[general]\n" \ +"\n" \ +"# Where to put the multiterm notebook in the Geany user interface\n" \ +"# one of: sidebar, msgwin\n" \ +"location=msgwin\n" \ +"\n" \ +"# Make tabs take up as much space as is available\n" \ +"full_width_tabs=true\n" \ +"\n" \ +"# Allow reordering of tabs\n" \ +"reorderable_tabs=true\n" \ +"\n" \ +"# When there is only one tab left in the notebook, hide the tabs area\n" \ +"hide_tabs_on_last=true\n" \ +"\n" \ +"# When launching an external terminal from the MultiTerm context menu," \ +"\n" \ +"# use this terminal. Good choices include xterm, gnome-terminal,\n" \ +"# xfce4-terminal or konsole.\n" \ +"external_terminal=xterm\n" \ +"\n" \ +"# Save which shells were open when Geany closes and restore their\n" \ +"# tabs when it restarts.\n" \ +"save_tabs=false\n" \ +"\n" \ +"# Whether to show tabs or not\n" \ +"show_tabs=true\n" \ +"\n" \ +"bg_color=#ffffff\n" \ +"fg_color=#000000\n" \ +"font=Monospace 9\n" \ +"\n" \ +"\n" \ +"#=====================================================================" \ +"==\n" \ +"# Default Shell\n" \ +"#=====================================================================" \ +"==\n" \ +"[shell=default]\n" \ +"\n" \ +"# This will be the tabs default tab label and won't change unless\n" \ +"# track_title is set to true.\n" \ +"name=Default Shell\n" \ +"\n" \ +"# This is the command to fork in the VTE, leave blank for default shel" \ +"l\n" \ +"command=\n" \ +"\n" \ +"# Make the tab's label track the VTE title\n" \ +"track_title=true\n" \ +"\n" \ +"# Background color, foreground color and font for the VTE\n" \ +"bg_color=#ffffff\n" \ +"fg_color=#000000\n" \ +"font=Monospace 9\n" \ +"\n" \ +"# Whether to allow bold fonts in the VTE\n" \ +"#allow_bold=true\n" \ +"\n" \ +"# Whether to beep when the child outputs a bell sequence.\n" \ +"#audible_bell=true\n" \ +"\n" \ +"# Controls whether the cursor blinks or not, one of:\n" \ +"# system (or blank), on, off\n" \ +"#cursor_blink_mode=system\n" \ +"\n" \ +"# Controls the shape of the VTE cursor, one of:\n" \ +"# block, ibeam, underline\n" \ +"#cursor_shape=block\n" \ +"\n" \ +"# Controls how erasing characters is handled, one of:\n" \ +"# auto, ascii_backspace, ascii_delete, delete_sequence, tty\n" \ +"#backspace_binding=auto\n" \ +"\n" \ +"# Whether to hide the mouse pointer on key press if it's in the\n" \ +"# terminal window\n" \ +"#pointer_autohide=false\n" \ +"\n" \ +"# Scroll to the prompt at the bottom of the scrollback buffer on key\n" \ +"# press\n" \ +"#scroll_on_keystroke=true\n" \ +"\n" \ +"# Scroll to the bottom of the scrollback buffer when the child sends\n" \ +"# output\n" \ +"#scroll_on_output=false\n" \ +"\n" \ +"# The number of lines to keep in the scrollback buffer\n" \ +"#scrollback_lines=512\n" \ +"\n" \ +"# Whether the terminal will present a visible bell when the child\n" \ +"# sends a bell sequence. The terminal will clear itself to the\n" \ +"# default foreground color and then repaint itself.\n" \ +"#visible_bell=false\n" \ +"\n" \ +"# When the user double-clicks to start selection, the terminal will\n" \ +"# extend the selection on word boundaries. It will treat characters\n" \ +"# the word-chars characters as parts of words, and all other\n" \ +"# characters as word separators. Ranges of characters can be\n" \ +"# specified by separating them with a hyphen.\n" \ +"word_chars=-A-Za-z0-9,./\\\\?%&#:_\n" \ +"\n" \ +"\n" \ +"#=====================================================================" \ +"==\n" \ +"# Other Shells\n" \ +"#=====================================================================" \ +"==\n" \ +"\n" \ +"# You can define additional shells just like the default shell but\n" \ +"# using other commands and/or settings.\n" \ +"\n" \ +"#[shell=python]\n" \ +"#name=Python Shell\n" \ +"#command=python\n" \ +"#track_title=false\n" \ +"\n" \ +"#[shell=irb]\n" \ +"#name=Ruby Shell\n" \ +"#command=irb\n" \ +"#track_title=false\n" +GType multi_term_notebook_get_type (void) G_GNUC_CONST; +GType multi_term_terminal_get_type (void) G_GNUC_CONST; +MultiTermTerminal* multi_term_notebook_add_terminal (MultiTermNotebook* self, MultiTermShellConfig* cfg); +void multi_term_notebook_remove_terminal (MultiTermNotebook* self, gint tab_num); +MultiTermNotebook* multi_term_notebook_new (const gchar* config_filename); +MultiTermNotebook* multi_term_notebook_construct (GType object_type, const gchar* config_filename); +extern GeanyPlugin* geany_plugin; +extern GeanyData* geany_data; +extern GeanyFunctions* geany_functions; +gint plugin_version_check (gint abi_version); +void plugin_set_info (PluginInfo* info); +void plugin_init (GeanyData* data); +void plugin_cleanup (void); +MultiTermShellConfig* multi_term_shell_config_new (MultiTermConfig* cfg, const gchar* section); +MultiTermShellConfig* multi_term_shell_config_construct (GType object_type, MultiTermConfig* cfg, const gchar* section); +const gchar* multi_term_shell_config_get_section (MultiTermShellConfig* self); +gchar* multi_term_shell_config_get_name (MultiTermShellConfig* self); +void multi_term_shell_config_set_name (MultiTermShellConfig* self, const gchar* value); +gchar* multi_term_shell_config_get_command (MultiTermShellConfig* self); +void multi_term_shell_config_set_command (MultiTermShellConfig* self, const gchar* value); +gboolean multi_term_shell_config_get_track_title (MultiTermShellConfig* self); +void multi_term_shell_config_set_track_title (MultiTermShellConfig* self, gboolean value); +gchar* multi_term_shell_config_get_background_color (MultiTermShellConfig* self); +void multi_term_shell_config_set_background_color (MultiTermShellConfig* self, const gchar* value); +gchar* multi_term_shell_config_get_foreground_color (MultiTermShellConfig* self); +void multi_term_shell_config_set_foreground_color (MultiTermShellConfig* self, const gchar* value); +gchar* multi_term_shell_config_get_font (MultiTermShellConfig* self); +void multi_term_shell_config_set_font (MultiTermShellConfig* self, const gchar* value); +gboolean multi_term_shell_config_get_allow_bold (MultiTermShellConfig* self); +void multi_term_shell_config_set_allow_bold (MultiTermShellConfig* self, gboolean value); +gboolean multi_term_shell_config_get_audible_bell (MultiTermShellConfig* self); +void multi_term_shell_config_set_audible_bell (MultiTermShellConfig* self, gboolean value); +VteTerminalCursorBlinkMode multi_term_shell_config_get_cursor_blink_mode (MultiTermShellConfig* self); +void multi_term_shell_config_set_cursor_blink_mode (MultiTermShellConfig* self, VteTerminalCursorBlinkMode value); +VteTerminalCursorShape multi_term_shell_config_get_cursor_shape (MultiTermShellConfig* self); +void multi_term_shell_config_set_cursor_shape (MultiTermShellConfig* self, VteTerminalCursorShape value); +VteTerminalEraseBinding multi_term_shell_config_get_backspace_binding (MultiTermShellConfig* self); +void multi_term_shell_config_set_backspace_binding (MultiTermShellConfig* self, VteTerminalEraseBinding value); +gboolean multi_term_shell_config_get_pointer_autohide (MultiTermShellConfig* self); +void multi_term_shell_config_set_pointer_autohide (MultiTermShellConfig* self, gboolean value); +gboolean multi_term_shell_config_get_scroll_on_keystroke (MultiTermShellConfig* self); +void multi_term_shell_config_set_scroll_on_keystroke (MultiTermShellConfig* self, gboolean value); +gboolean multi_term_shell_config_get_scroll_on_output (MultiTermShellConfig* self); +void multi_term_shell_config_set_scroll_on_output (MultiTermShellConfig* self, gboolean value); +gint multi_term_shell_config_get_scrollback_lines (MultiTermShellConfig* self); +void multi_term_shell_config_set_scrollback_lines (MultiTermShellConfig* self, gint value); +gboolean multi_term_shell_config_get_visible_bell (MultiTermShellConfig* self); +void multi_term_shell_config_set_visible_bell (MultiTermShellConfig* self, gboolean value); +gchar* multi_term_shell_config_get_word_chars (MultiTermShellConfig* self); +void multi_term_shell_config_set_word_chars (MultiTermShellConfig* self, const gchar* value); +GType multi_term_tab_label_get_type (void) G_GNUC_CONST; +MultiTermTabLabel* multi_term_tab_label_new (const gchar* text); +MultiTermTabLabel* multi_term_tab_label_construct (GType object_type, const gchar* text); +const gchar* multi_term_tab_label_get_text (MultiTermTabLabel* self); +void multi_term_tab_label_set_text (MultiTermTabLabel* self, const gchar* value); +GtkButton* multi_term_tab_label_get_button (MultiTermTabLabel* self); +void multi_term_terminal_run_command (MultiTermTerminal* self, const gchar* command); +void multi_term_terminal_send_command (MultiTermTerminal* self, const gchar* command); +MultiTermTerminal* multi_term_terminal_new (MultiTermShellConfig* sh); +MultiTermTerminal* multi_term_terminal_construct (GType object_type, MultiTermShellConfig* sh); +const gchar* multi_term_terminal_get_tab_label_text (MultiTermTerminal* self); +void multi_term_terminal_set_tab_label_text (MultiTermTerminal* self, const gchar* value); +void multi_term_terminal_set_background_color (MultiTermTerminal* self, const gchar* value); +void multi_term_terminal_set_foreground_color (MultiTermTerminal* self, const gchar* value); + + +G_END_DECLS + +#endif diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/multiterm_la_vala.stamp geany-plugins-1.24.1+dfsg/multiterm/src/multiterm_la_vala.stamp --- geany-plugins-1.24.0+20140222+git/multiterm/src/multiterm_la_vala.stamp 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/multiterm_la_vala.stamp 2014-04-13 17:17:55.000000000 +0000 @@ -0,0 +1 @@ +stamp diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/notebook.c geany-plugins-1.24.1+dfsg/multiterm/src/notebook.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/notebook.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/notebook.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,749 @@ +/* notebook.c generated by valac 0.22.1, the Vala compiler + * generated from notebook.vala, do not modify */ + +/* + * notebook.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include + +#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL))) +#define _multi_term_config_unref0(var) ((var == NULL) ? NULL : (var = (multi_term_config_unref (var), NULL))) +#define _g_free0(var) (var = (g_free (var), NULL)) +#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL))) +#define _multi_term_shell_config_unref0(var) ((var == NULL) ? NULL : (var = (multi_term_shell_config_unref (var), NULL))) + +struct _MultiTermNotebookPrivate { + GtkButton* add_button; + MultiTermContextMenu* context_menu; +}; + + +static gpointer multi_term_notebook_parent_class = NULL; + +#define MULTI_TERM_NOTEBOOK_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebookPrivate)) +enum { + MULTI_TERM_NOTEBOOK_DUMMY_PROPERTY +}; +static void multi_term_notebook_on_tab_label_close_clicked (MultiTermNotebook* self, gint tab_num); +static void multi_term_notebook_on_show_tabs_activate (MultiTermNotebook* self, gboolean show_tabs); +static gboolean multi_term_notebook_on_next_tab_activate (MultiTermNotebook* self); +static gboolean multi_term_notebook_on_previous_tab_activate (MultiTermNotebook* self); +static void multi_term_notebook_on_new_shell_activate (MultiTermNotebook* self, MultiTermShellConfig* cfg); +static void multi_term_notebook_on_new_window_activate (MultiTermNotebook* self); +static void multi_term_notebook_on_move_to_location (MultiTermNotebook* self, const gchar* location); +static void multi_term_notebook_on_add_button_style_set (MultiTermNotebook* self); +static void multi_term_notebook_on_add_button_clicked (MultiTermNotebook* self); +static gboolean multi_term_notebook_on_terminal_right_click_event (MultiTermNotebook* self, GdkEventButton* event); +static void _multi_term_notebook_on_show_tabs_activate_multi_term_context_menu_show_tabs_activate (MultiTermContextMenu* _sender, gboolean show_tabs, gpointer self); +static gboolean _multi_term_notebook_on_next_tab_activate_multi_term_context_menu_next_tab_activate (MultiTermContextMenu* _sender, gpointer self); +static gboolean _multi_term_notebook_on_previous_tab_activate_multi_term_context_menu_previous_tab_activate (MultiTermContextMenu* _sender, gpointer self); +static void _multi_term_notebook_on_new_shell_activate_multi_term_context_menu_new_shell_activate (MultiTermContextMenu* _sender, MultiTermShellConfig* sh, gpointer self); +static void _multi_term_notebook_on_new_window_activate_multi_term_context_menu_new_window_activate (MultiTermContextMenu* _sender, gpointer self); +static void _multi_term_notebook_on_move_to_location_multi_term_context_menu_move_to_location_activate (MultiTermContextMenu* _sender, const gchar* location, gpointer self); +static void _multi_term_notebook_on_tab_label_close_clicked_multi_term_tab_label_close_clicked (MultiTermTabLabel* _sender, gint tab_num, gpointer self); +static gboolean _multi_term_notebook_on_terminal_right_click_event_multi_term_terminal_right_click_event (MultiTermTerminal* _sender, GdkEventButton* event, gpointer self); +static void _multi_term_notebook_on_add_button_clicked_gtk_button_clicked (GtkButton* _sender, gpointer self); +static void _multi_term_notebook_on_add_button_style_set_gtk_widget_style_set (GtkWidget* _sender, GtkStyle* previous_style, gpointer self); +static void multi_term_notebook_finalize (GObject* obj); +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func); +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func); + + +static void multi_term_notebook_on_tab_label_close_clicked (MultiTermNotebook* self, gint tab_num) { + gint _tmp0_ = 0; + g_return_if_fail (self != NULL); + _tmp0_ = gtk_notebook_get_n_pages ((GtkNotebook*) self); + if (_tmp0_ > 1) { + gint _tmp1_ = 0; + _tmp1_ = tab_num; + multi_term_notebook_remove_terminal (self, _tmp1_); + } +} + + +static void multi_term_notebook_on_show_tabs_activate (MultiTermNotebook* self, gboolean show_tabs) { + gboolean _tmp0_ = FALSE; + MultiTermConfig* _tmp1_ = NULL; + gboolean _tmp2_ = FALSE; + g_return_if_fail (self != NULL); + _tmp0_ = show_tabs; + gtk_notebook_set_show_tabs ((GtkNotebook*) self, _tmp0_); + _tmp1_ = self->cfg; + _tmp2_ = show_tabs; + multi_term_config_set_show_tabs (_tmp1_, _tmp2_); +} + + +static gboolean multi_term_notebook_on_next_tab_activate (MultiTermNotebook* self) { + gboolean result = FALSE; + gint n_tabs = 0; + gint _tmp0_ = 0; + gint current = 0; + gint _tmp1_ = 0; + gint _tmp2_ = 0; + gint _tmp3_ = 0; + gboolean _tmp6_ = FALSE; + gint _tmp7_ = 0; + gint _tmp8_ = 0; + gboolean _tmp9_ = FALSE; + g_return_val_if_fail (self != NULL, FALSE); + _tmp0_ = gtk_notebook_get_n_pages ((GtkNotebook*) self); + n_tabs = _tmp0_; + _tmp1_ = gtk_notebook_get_current_page ((GtkNotebook*) self); + current = _tmp1_; + _tmp2_ = current; + _tmp3_ = n_tabs; + if (_tmp2_ < (_tmp3_ - 1)) { + gint _tmp4_ = 0; + gint _tmp5_ = 0; + _tmp4_ = current; + current = _tmp4_ + 1; + _tmp5_ = current; + gtk_notebook_set_current_page ((GtkNotebook*) self, _tmp5_); + } + _tmp7_ = current; + _tmp8_ = n_tabs; + if (_tmp7_ < (_tmp8_ - 1)) { + _tmp6_ = TRUE; + } else { + _tmp6_ = FALSE; + } + _tmp9_ = _tmp6_; + result = _tmp9_; + return result; +} + + +static gboolean multi_term_notebook_on_previous_tab_activate (MultiTermNotebook* self) { + gboolean result = FALSE; + gint current = 0; + gint _tmp0_ = 0; + gint _tmp1_ = 0; + gboolean _tmp4_ = FALSE; + gint _tmp5_ = 0; + gboolean _tmp6_ = FALSE; + g_return_val_if_fail (self != NULL, FALSE); + _tmp0_ = gtk_notebook_get_current_page ((GtkNotebook*) self); + current = _tmp0_; + _tmp1_ = current; + if (_tmp1_ > 0) { + gint _tmp2_ = 0; + gint _tmp3_ = 0; + _tmp2_ = current; + current = _tmp2_ - 1; + _tmp3_ = current; + gtk_notebook_set_current_page ((GtkNotebook*) self, _tmp3_); + } + _tmp5_ = current; + if (_tmp5_ > 0) { + _tmp4_ = TRUE; + } else { + _tmp4_ = FALSE; + } + _tmp6_ = _tmp4_; + result = _tmp6_; + return result; +} + + +static void multi_term_notebook_on_new_shell_activate (MultiTermNotebook* self, MultiTermShellConfig* cfg) { + MultiTermShellConfig* _tmp0_ = NULL; + MultiTermTerminal* _tmp1_ = NULL; + MultiTermTerminal* _tmp2_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (cfg != NULL); + _tmp0_ = cfg; + _tmp1_ = multi_term_notebook_add_terminal (self, _tmp0_); + _tmp2_ = _tmp1_; + _g_object_unref0 (_tmp2_); +} + + +static void multi_term_notebook_on_new_window_activate (MultiTermNotebook* self) { + GPid pid = 0; + gchar** args = NULL; + MultiTermConfig* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + gchar** _tmp3_ = NULL; + gint args_length1 = 0; + gint _args_size_ = 0; + GError * _inner_error_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->cfg; + _tmp1_ = multi_term_config_get_external_terminal (_tmp0_); + _tmp2_ = _tmp1_; + _tmp3_ = g_new0 (gchar*, 2 + 1); + _tmp3_[0] = _tmp2_; + _tmp3_[1] = NULL; + args = _tmp3_; + args_length1 = 2; + _args_size_ = args_length1; + { + gboolean _tmp4_ = FALSE; + GPid _tmp5_ = 0; + gboolean _tmp6_ = FALSE; + _tmp6_ = g_spawn_async (NULL, args, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, &_tmp5_, &_inner_error_); + pid = _tmp5_; + _tmp4_ = _tmp6_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_SPAWN_ERROR) { + goto __catch5_g_spawn_error; + } + args = (_vala_array_free (args, args_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + if (_tmp4_) { + const gchar* _tmp7_ = NULL; + _tmp7_ = args[0]; + g_debug ("notebook.vala:87: Started external terminal '%s' with pid of '%d'", _tmp7_, (gint) pid); + } + } + goto __finally5; + __catch5_g_spawn_error: + { + GError* err = NULL; + GError* _tmp8_ = NULL; + const gchar* _tmp9_ = NULL; + gchar* _tmp10_ = NULL; + gchar* _tmp11_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp8_ = err; + _tmp9_ = _tmp8_->message; + _tmp10_ = g_strdup_printf ("Unable to launch external terminal: %s", _tmp9_); + _tmp11_ = _tmp10_; + g_warning ("notebook.vala:91: %s", _tmp11_); + _g_free0 (_tmp11_); + _g_error_free0 (err); + } + __finally5: + if (_inner_error_ != NULL) { + args = (_vala_array_free (args, args_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + args = (_vala_array_free (args, args_length1, (GDestroyNotify) g_free), NULL); +} + + +static gpointer _g_object_ref0 (gpointer self) { + return self ? g_object_ref (self) : NULL; +} + + +static void multi_term_notebook_on_move_to_location (MultiTermNotebook* self, const gchar* location) { + GtkContainer* frame = NULL; + GtkWidget* _tmp0_ = NULL; + GtkContainer* _tmp1_ = NULL; + GtkContainer* parent = NULL; + GtkContainer* _tmp2_ = NULL; + GtkWidget* _tmp3_ = NULL; + GtkContainer* _tmp4_ = NULL; + GtkNotebook* new_nb = NULL; + GtkContainer* _tmp5_ = NULL; + GtkContainer* _tmp6_ = NULL; + const gchar* _tmp7_ = NULL; + GtkNotebook* _tmp18_ = NULL; + GtkNotebook* _tmp19_ = NULL; + GtkContainer* _tmp20_ = NULL; + gint _tmp21_ = 0; + MultiTermConfig* _tmp22_ = NULL; + const gchar* _tmp23_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (location != NULL); + _tmp0_ = gtk_widget_get_parent ((GtkWidget*) self); + _tmp1_ = _g_object_ref0 (G_TYPE_CHECK_INSTANCE_TYPE (_tmp0_, GTK_TYPE_CONTAINER) ? ((GtkContainer*) _tmp0_) : NULL); + frame = _tmp1_; + _tmp2_ = frame; + _tmp3_ = gtk_widget_get_parent ((GtkWidget*) _tmp2_); + _tmp4_ = _g_object_ref0 (G_TYPE_CHECK_INSTANCE_TYPE (_tmp3_, GTK_TYPE_CONTAINER) ? ((GtkContainer*) _tmp3_) : NULL); + parent = _tmp4_; + _tmp5_ = parent; + _tmp6_ = frame; + gtk_container_remove (_tmp5_, (GtkWidget*) _tmp6_); + _tmp7_ = location; + if (g_strcmp0 (_tmp7_, "msgwin") == 0) { + gconstpointer _tmp8_ = NULL; + GtkNotebook* _tmp9_ = NULL; + GtkNotebook* _tmp10_ = NULL; + GtkContainer* _tmp11_ = NULL; + gconstpointer _tmp12_ = NULL; + _tmp8_ = g_object_get_data ((GObject*) self, "msgwin_notebook"); + _tmp9_ = _g_object_ref0 ((GtkNotebook*) ((MultiTermNotebook*) _tmp8_)); + _g_object_unref0 (new_nb); + new_nb = _tmp9_; + _tmp10_ = new_nb; + _tmp11_ = frame; + _tmp12_ = g_object_get_data ((GObject*) self, "label"); + gtk_notebook_append_page (_tmp10_, (GtkWidget*) _tmp11_, (GtkWidget*) ((GtkLabel*) _tmp12_)); + } else { + gconstpointer _tmp13_ = NULL; + GtkNotebook* _tmp14_ = NULL; + GtkNotebook* _tmp15_ = NULL; + GtkContainer* _tmp16_ = NULL; + gconstpointer _tmp17_ = NULL; + _tmp13_ = g_object_get_data ((GObject*) self, "sidebar_notebook"); + _tmp14_ = _g_object_ref0 ((GtkNotebook*) ((MultiTermNotebook*) _tmp13_)); + _g_object_unref0 (new_nb); + new_nb = _tmp14_; + _tmp15_ = new_nb; + _tmp16_ = frame; + _tmp17_ = g_object_get_data ((GObject*) self, "label"); + gtk_notebook_append_page (_tmp15_, (GtkWidget*) _tmp16_, (GtkWidget*) ((GtkLabel*) _tmp17_)); + } + _tmp18_ = new_nb; + _tmp19_ = new_nb; + _tmp20_ = frame; + _tmp21_ = gtk_notebook_page_num (_tmp19_, (GtkWidget*) _tmp20_); + gtk_notebook_set_current_page (_tmp18_, _tmp21_); + _tmp22_ = self->cfg; + _tmp23_ = location; + multi_term_config_set_location (_tmp22_, _tmp23_); + _g_object_unref0 (new_nb); + _g_object_unref0 (parent); + _g_object_unref0 (frame); +} + + +static void multi_term_notebook_on_add_button_style_set (MultiTermNotebook* self) { + gint w = 0; + gint h = 0; + GtkButton* _tmp0_ = NULL; + GtkSettings* _tmp1_ = NULL; + gint _tmp2_ = 0; + gint _tmp3_ = 0; + GtkButton* _tmp4_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->priv->add_button; + _tmp1_ = gtk_widget_get_settings ((GtkWidget*) _tmp0_); + gtk_icon_size_lookup_for_settings (_tmp1_, GTK_ICON_SIZE_MENU, &_tmp2_, &_tmp3_); + w = _tmp2_; + h = _tmp3_; + _tmp4_ = self->priv->add_button; + gtk_widget_set_size_request ((GtkWidget*) _tmp4_, w + 2, h + 2); +} + + +static gpointer _multi_term_shell_config_ref0 (gpointer self) { + return self ? multi_term_shell_config_ref (self) : NULL; +} + + +static gchar* string_strip (const gchar* self) { + gchar* result = NULL; + gchar* _result_ = NULL; + gchar* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = g_strdup (self); + _result_ = _tmp0_; + _tmp1_ = _result_; + g_strstrip (_tmp1_); + result = _result_; + return result; +} + + +static void multi_term_notebook_on_add_button_clicked (MultiTermNotebook* self) { + MultiTermConfig* _tmp0_ = NULL; + GList* _tmp1_ = NULL; + GList* _tmp2_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->cfg; + _tmp1_ = multi_term_config_get_shell_configs (_tmp0_); + _tmp2_ = _tmp1_; + { + GList* sh_collection = NULL; + GList* sh_it = NULL; + sh_collection = _tmp2_; + for (sh_it = sh_collection; sh_it != NULL; sh_it = sh_it->next) { + MultiTermShellConfig* _tmp3_ = NULL; + MultiTermShellConfig* sh = NULL; + _tmp3_ = _multi_term_shell_config_ref0 ((MultiTermShellConfig*) sh_it->data); + sh = _tmp3_; + { + MultiTermShellConfig* _tmp4_ = NULL; + const gchar* _tmp5_ = NULL; + const gchar* _tmp6_ = NULL; + gchar* _tmp7_ = NULL; + gchar* _tmp8_ = NULL; + gboolean _tmp9_ = FALSE; + _tmp4_ = sh; + _tmp5_ = multi_term_shell_config_get_section (_tmp4_); + _tmp6_ = _tmp5_; + _tmp7_ = string_strip (_tmp6_); + _tmp8_ = _tmp7_; + _tmp9_ = g_strcmp0 (_tmp8_, "shell=default") == 0; + _g_free0 (_tmp8_); + if (_tmp9_) { + MultiTermShellConfig* _tmp10_ = NULL; + MultiTermTerminal* _tmp11_ = NULL; + MultiTermTerminal* _tmp12_ = NULL; + _tmp10_ = sh; + _tmp11_ = multi_term_notebook_add_terminal (self, _tmp10_); + _tmp12_ = _tmp11_; + _g_object_unref0 (_tmp12_); + _multi_term_shell_config_unref0 (sh); + return; + } + _multi_term_shell_config_unref0 (sh); + } + } + } + g_warning ("notebook.vala:137: Unable to locate default shell in configuration fil" \ +"e"); +} + + +static void _multi_term_notebook_on_show_tabs_activate_multi_term_context_menu_show_tabs_activate (MultiTermContextMenu* _sender, gboolean show_tabs, gpointer self) { + multi_term_notebook_on_show_tabs_activate (self, show_tabs); +} + + +static gboolean _multi_term_notebook_on_next_tab_activate_multi_term_context_menu_next_tab_activate (MultiTermContextMenu* _sender, gpointer self) { + gboolean result; + result = multi_term_notebook_on_next_tab_activate (self); + return result; +} + + +static gboolean _multi_term_notebook_on_previous_tab_activate_multi_term_context_menu_previous_tab_activate (MultiTermContextMenu* _sender, gpointer self) { + gboolean result; + result = multi_term_notebook_on_previous_tab_activate (self); + return result; +} + + +static void _multi_term_notebook_on_new_shell_activate_multi_term_context_menu_new_shell_activate (MultiTermContextMenu* _sender, MultiTermShellConfig* sh, gpointer self) { + multi_term_notebook_on_new_shell_activate (self, sh); +} + + +static void _multi_term_notebook_on_new_window_activate_multi_term_context_menu_new_window_activate (MultiTermContextMenu* _sender, gpointer self) { + multi_term_notebook_on_new_window_activate (self); +} + + +static void _multi_term_notebook_on_move_to_location_multi_term_context_menu_move_to_location_activate (MultiTermContextMenu* _sender, const gchar* location, gpointer self) { + multi_term_notebook_on_move_to_location (self, location); +} + + +static gboolean multi_term_notebook_on_terminal_right_click_event (MultiTermNotebook* self, GdkEventButton* event) { + gboolean result = FALSE; + MultiTermContextMenu* _tmp0_ = NULL; + MultiTermContextMenu* _tmp9_ = NULL; + GdkEventButton _tmp10_ = {0}; + guint _tmp11_ = 0U; + GdkEventButton _tmp12_ = {0}; + guint32 _tmp13_ = 0U; + g_return_val_if_fail (self != NULL, FALSE); + g_return_val_if_fail (event != NULL, FALSE); + _tmp0_ = self->priv->context_menu; + if (_tmp0_ == NULL) { + MultiTermConfig* _tmp1_ = NULL; + MultiTermContextMenu* _tmp2_ = NULL; + MultiTermContextMenu* _tmp3_ = NULL; + MultiTermContextMenu* _tmp4_ = NULL; + MultiTermContextMenu* _tmp5_ = NULL; + MultiTermContextMenu* _tmp6_ = NULL; + MultiTermContextMenu* _tmp7_ = NULL; + MultiTermContextMenu* _tmp8_ = NULL; + _tmp1_ = self->cfg; + _tmp2_ = multi_term_context_menu_new (_tmp1_); + g_object_ref_sink (_tmp2_); + _g_object_unref0 (self->priv->context_menu); + self->priv->context_menu = _tmp2_; + _tmp3_ = self->priv->context_menu; + g_signal_connect_object (_tmp3_, "show-tabs-activate", (GCallback) _multi_term_notebook_on_show_tabs_activate_multi_term_context_menu_show_tabs_activate, self, 0); + _tmp4_ = self->priv->context_menu; + g_signal_connect_object (_tmp4_, "next-tab-activate", (GCallback) _multi_term_notebook_on_next_tab_activate_multi_term_context_menu_next_tab_activate, self, 0); + _tmp5_ = self->priv->context_menu; + g_signal_connect_object (_tmp5_, "previous-tab-activate", (GCallback) _multi_term_notebook_on_previous_tab_activate_multi_term_context_menu_previous_tab_activate, self, 0); + _tmp6_ = self->priv->context_menu; + g_signal_connect_object (_tmp6_, "new-shell-activate", (GCallback) _multi_term_notebook_on_new_shell_activate_multi_term_context_menu_new_shell_activate, self, 0); + _tmp7_ = self->priv->context_menu; + g_signal_connect_object (_tmp7_, "new-window-activate", (GCallback) _multi_term_notebook_on_new_window_activate_multi_term_context_menu_new_window_activate, self, 0); + _tmp8_ = self->priv->context_menu; + g_signal_connect_object (_tmp8_, "move-to-location-activate", (GCallback) _multi_term_notebook_on_move_to_location_multi_term_context_menu_move_to_location_activate, self, 0); + } + _tmp9_ = self->priv->context_menu; + _tmp10_ = *event; + _tmp11_ = _tmp10_.button; + _tmp12_ = *event; + _tmp13_ = _tmp12_.time; + gtk_menu_popup ((GtkMenu*) _tmp9_, NULL, NULL, NULL, NULL, _tmp11_, _tmp13_); + result = TRUE; + return result; +} + + +static void _multi_term_notebook_on_tab_label_close_clicked_multi_term_tab_label_close_clicked (MultiTermTabLabel* _sender, gint tab_num, gpointer self) { + multi_term_notebook_on_tab_label_close_clicked (self, tab_num); +} + + +static gboolean _multi_term_notebook_on_terminal_right_click_event_multi_term_terminal_right_click_event (MultiTermTerminal* _sender, GdkEventButton* event, gpointer self) { + gboolean result; + result = multi_term_notebook_on_terminal_right_click_event (self, event); + return result; +} + + +MultiTermTerminal* multi_term_notebook_add_terminal (MultiTermNotebook* self, MultiTermShellConfig* cfg) { + MultiTermTerminal* result = NULL; + MultiTermTabLabel* label = NULL; + MultiTermShellConfig* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + gchar* _tmp3_ = NULL; + MultiTermTabLabel* _tmp4_ = NULL; + MultiTermTabLabel* _tmp5_ = NULL; + MultiTermTerminal* term = NULL; + MultiTermShellConfig* _tmp6_ = NULL; + MultiTermTerminal* _tmp7_ = NULL; + MultiTermTerminal* _tmp8_ = NULL; + MultiTermTabLabel* _tmp9_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + g_return_val_if_fail (cfg != NULL, NULL); + _tmp0_ = cfg; + _tmp1_ = multi_term_shell_config_get_name (_tmp0_); + _tmp2_ = _tmp1_; + _tmp3_ = _tmp2_; + _tmp4_ = multi_term_tab_label_new (_tmp3_); + g_object_ref_sink (_tmp4_); + _tmp5_ = _tmp4_; + _g_free0 (_tmp3_); + label = _tmp5_; + _tmp6_ = cfg; + _tmp7_ = multi_term_terminal_new (_tmp6_); + g_object_ref_sink (_tmp7_); + term = _tmp7_; + gtk_widget_show_all ((GtkWidget*) label); + g_signal_connect_object (label, "close-clicked", (GCallback) _multi_term_notebook_on_tab_label_close_clicked_multi_term_tab_label_close_clicked, self, 0); + _tmp8_ = _g_object_ref0 (term); + g_object_set_data_full ((GObject*) label, "terminal", _tmp8_, g_object_unref); + _tmp9_ = _g_object_ref0 (label); + g_object_set_data_full ((GObject*) term, "label", _tmp9_, g_object_unref); + gtk_widget_show_all ((GtkWidget*) term); + g_signal_connect_object (term, "right-click-event", (GCallback) _multi_term_notebook_on_terminal_right_click_event_multi_term_terminal_right_click_event, self, 0); + gtk_notebook_append_page ((GtkNotebook*) self, (GtkWidget*) term, (GtkWidget*) label); + gtk_notebook_set_tab_reorderable ((GtkNotebook*) self, (GtkWidget*) term, TRUE); + gtk_notebook_set_tab_label_packing ((GtkNotebook*) self, (GtkWidget*) term, TRUE, TRUE, GTK_PACK_END); + gtk_notebook_set_scrollable ((GtkNotebook*) self, TRUE); + result = term; + _g_object_unref0 (label); + return result; +} + + +void multi_term_notebook_remove_terminal (MultiTermNotebook* self, gint tab_num) { + gint _tmp0_ = 0; + g_return_if_fail (self != NULL); + _tmp0_ = tab_num; + gtk_notebook_remove_page ((GtkNotebook*) self, _tmp0_); +} + + +static void _multi_term_notebook_on_add_button_clicked_gtk_button_clicked (GtkButton* _sender, gpointer self) { + multi_term_notebook_on_add_button_clicked (self); +} + + +static void _multi_term_notebook_on_add_button_style_set_gtk_widget_style_set (GtkWidget* _sender, GtkStyle* previous_style, gpointer self) { + multi_term_notebook_on_add_button_style_set (self); +} + + +MultiTermNotebook* multi_term_notebook_construct (GType object_type, const gchar* config_filename) { + MultiTermNotebook * self = NULL; + GtkImage* img = NULL; + GtkRcStyle* style = NULL; + const gchar* _tmp0_ = NULL; + MultiTermConfig* _tmp1_ = NULL; + GtkRcStyle* _tmp2_ = NULL; + GtkRcStyle* _tmp3_ = NULL; + GtkRcStyle* _tmp4_ = NULL; + GtkImage* _tmp5_ = NULL; + GtkButton* _tmp6_ = NULL; + GtkButton* _tmp7_ = NULL; + GtkRcStyle* _tmp8_ = NULL; + GtkButton* _tmp9_ = NULL; + GtkButton* _tmp10_ = NULL; + GtkButton* _tmp11_ = NULL; + GtkButton* _tmp12_ = NULL; + GtkButton* _tmp13_ = NULL; + GtkImage* _tmp14_ = NULL; + GtkButton* _tmp15_ = NULL; + GtkButton* _tmp16_ = NULL; + GtkButton* _tmp17_ = NULL; + MultiTermConfig* _tmp18_ = NULL; + gboolean _tmp19_ = FALSE; + gboolean _tmp20_ = FALSE; + MultiTermConfig* _tmp21_ = NULL; + GList* _tmp22_ = NULL; + GList* _tmp23_ = NULL; + g_return_val_if_fail (config_filename != NULL, NULL); + self = (MultiTermNotebook*) g_object_new (object_type, NULL); + _tmp0_ = config_filename; + _tmp1_ = multi_term_config_new (_tmp0_); + _multi_term_config_unref0 (self->cfg); + self->cfg = _tmp1_; + _tmp2_ = gtk_rc_style_new (); + _g_object_unref0 (style); + style = _tmp2_; + _tmp3_ = style; + _tmp3_->xthickness = 0; + _tmp4_ = style; + _tmp4_->ythickness = 0; + _tmp5_ = (GtkImage*) gtk_image_new_from_stock (GTK_STOCK_ADD, GTK_ICON_SIZE_MENU); + g_object_ref_sink (_tmp5_); + _g_object_unref0 (img); + img = _tmp5_; + _tmp6_ = (GtkButton*) gtk_button_new (); + g_object_ref_sink (_tmp6_); + _g_object_unref0 (self->priv->add_button); + self->priv->add_button = _tmp6_; + _tmp7_ = self->priv->add_button; + _tmp8_ = style; + gtk_widget_modify_style ((GtkWidget*) _tmp7_, _tmp8_); + _tmp9_ = self->priv->add_button; + gtk_button_set_relief (_tmp9_, GTK_RELIEF_NONE); + _tmp10_ = self->priv->add_button; + gtk_button_set_focus_on_click (_tmp10_, FALSE); + _tmp11_ = self->priv->add_button; + gtk_container_set_border_width ((GtkContainer*) _tmp11_, (guint) 2); + _tmp12_ = self->priv->add_button; + gtk_widget_set_tooltip_text ((GtkWidget*) _tmp12_, "New terminal"); + _tmp13_ = self->priv->add_button; + _tmp14_ = img; + gtk_container_add ((GtkContainer*) _tmp13_, (GtkWidget*) _tmp14_); + _tmp15_ = self->priv->add_button; + g_signal_connect_object (_tmp15_, "clicked", (GCallback) _multi_term_notebook_on_add_button_clicked_gtk_button_clicked, self, 0); + _tmp16_ = self->priv->add_button; + gtk_widget_show_all ((GtkWidget*) _tmp16_); + _tmp17_ = self->priv->add_button; + g_signal_connect_object ((GtkWidget*) _tmp17_, "style-set", (GCallback) _multi_term_notebook_on_add_button_style_set_gtk_widget_style_set, self, 0); + _tmp18_ = self->cfg; + _tmp19_ = multi_term_config_get_show_tabs (_tmp18_); + _tmp20_ = _tmp19_; + gtk_notebook_set_show_tabs ((GtkNotebook*) self, _tmp20_); + _tmp21_ = self->cfg; + _tmp22_ = multi_term_config_get_shell_configs (_tmp21_); + _tmp23_ = _tmp22_; + { + GList* sh_collection = NULL; + GList* sh_it = NULL; + sh_collection = _tmp23_; + for (sh_it = sh_collection; sh_it != NULL; sh_it = sh_it->next) { + MultiTermShellConfig* _tmp24_ = NULL; + MultiTermShellConfig* sh = NULL; + _tmp24_ = _multi_term_shell_config_ref0 ((MultiTermShellConfig*) sh_it->data); + sh = _tmp24_; + { + MultiTermTerminal* term = NULL; + MultiTermShellConfig* _tmp25_ = NULL; + MultiTermTerminal* _tmp26_ = NULL; + MultiTermTerminal* _tmp27_ = NULL; + _tmp25_ = sh; + _tmp26_ = multi_term_notebook_add_terminal (self, _tmp25_); + term = _tmp26_; + _tmp27_ = term; + g_signal_connect_object (_tmp27_, "right-click-event", (GCallback) _multi_term_notebook_on_terminal_right_click_event_multi_term_terminal_right_click_event, self, 0); + _g_object_unref0 (term); + _multi_term_shell_config_unref0 (sh); + } + } + } + _g_object_unref0 (style); + _g_object_unref0 (img); + return self; +} + + +MultiTermNotebook* multi_term_notebook_new (const gchar* config_filename) { + return multi_term_notebook_construct (MULTI_TERM_TYPE_NOTEBOOK, config_filename); +} + + +static void multi_term_notebook_class_init (MultiTermNotebookClass * klass) { + multi_term_notebook_parent_class = g_type_class_peek_parent (klass); + g_type_class_add_private (klass, sizeof (MultiTermNotebookPrivate)); + G_OBJECT_CLASS (klass)->finalize = multi_term_notebook_finalize; +} + + +static void multi_term_notebook_instance_init (MultiTermNotebook * self) { + self->priv = MULTI_TERM_NOTEBOOK_GET_PRIVATE (self); +} + + +static void multi_term_notebook_finalize (GObject* obj) { + MultiTermNotebook * self; + self = G_TYPE_CHECK_INSTANCE_CAST (obj, MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebook); + _g_object_unref0 (self->priv->add_button); + _multi_term_config_unref0 (self->cfg); + _g_object_unref0 (self->priv->context_menu); + G_OBJECT_CLASS (multi_term_notebook_parent_class)->finalize (obj); +} + + +GType multi_term_notebook_get_type (void) { + static volatile gsize multi_term_notebook_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_notebook_type_id__volatile)) { + static const GTypeInfo g_define_type_info = { sizeof (MultiTermNotebookClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_notebook_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermNotebook), 0, (GInstanceInitFunc) multi_term_notebook_instance_init, NULL }; + GType multi_term_notebook_type_id; + multi_term_notebook_type_id = g_type_register_static (GTK_TYPE_NOTEBOOK, "MultiTermNotebook", &g_define_type_info, 0); + g_once_init_leave (&multi_term_notebook_type_id__volatile, multi_term_notebook_type_id); + } + return multi_term_notebook_type_id__volatile; +} + + +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func) { + if ((array != NULL) && (destroy_func != NULL)) { + int i; + for (i = 0; i < array_length; i = i + 1) { + if (((gpointer*) array)[i] != NULL) { + destroy_func (((gpointer*) array)[i]); + } + } + } +} + + +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func) { + _vala_array_destroy (array, array_length, destroy_func); + g_free (array); +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/plugin.c geany-plugins-1.24.1+dfsg/multiterm/src/plugin.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/plugin.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/plugin.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,382 @@ +/* plugin.c generated by valac 0.22.1, the Vala compiler + * generated from plugin.vala, do not modify */ + +/* + * plugin.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include +#include + +#define _g_free0(var) (var = (g_free (var), NULL)) +#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL))) +#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL))) + + +GeanyPlugin* geany_plugin = NULL; +GeanyData* geany_data = NULL; +GeanyFunctions* geany_functions = NULL; +extern GList* toplevel_widgets; +GList* toplevel_widgets = NULL; + + + +static gint geany_vala_plugin_VERSION_CHECK (gint abi_version, gint api_required) { + gint result = 0; + gint _tmp0_ = 0; + gint _tmp1_ = 0; + gint _tmp2_ = 0; + _tmp0_ = abi_version; + _tmp1_ = GEANY_ABI_VERSION; + if (_tmp0_ != _tmp1_) { + result = -1; + return result; + } + _tmp2_ = api_required; + result = _tmp2_; + return result; +} + + +gint plugin_version_check (gint abi_version) { + gint result = 0; + gint _tmp0_ = 0; + gint _tmp1_ = 0; + _tmp0_ = abi_version; + _tmp1_ = geany_vala_plugin_VERSION_CHECK (_tmp0_, 185); + result = _tmp1_; + return result; +} + + +static void geany_vala_plugin_SET_INFO (PluginInfo* self, const gchar* name, const gchar* description, const gchar* version, const gchar* author) { + const gchar* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (name != NULL); + _tmp0_ = name; + self->name = _tmp0_; + _tmp1_ = description; + self->description = _tmp1_; + _tmp2_ = version; + self->version = _tmp2_; + _tmp3_ = author; + self->author = _tmp3_; +} + + +void plugin_set_info (PluginInfo* info) { + PluginInfo* _tmp0_ = NULL; + g_return_if_fail (info != NULL); + _tmp0_ = info; + geany_vala_plugin_SET_INFO (_tmp0_, "MultiTerm", "Multi-tabbed virtual terminal emulator.", "0.1", "Matthew Brush "); +} + + +static gpointer _g_object_ref0 (gpointer self) { + return self ? g_object_ref (self) : NULL; +} + + +static GtkNotebook* geany_vala_plugin_main_widgets_get_message_window_notebook (GeanyMainWidgets* self) { + GtkNotebook* result; + GtkWidget* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->message_window_notebook; + result = G_TYPE_CHECK_INSTANCE_TYPE (_tmp0_, GTK_TYPE_NOTEBOOK) ? ((GtkNotebook*) _tmp0_) : NULL; + return result; +} + + +static GtkNotebook* geany_vala_plugin_main_widgets_get_sidebar_notebook (GeanyMainWidgets* self) { + GtkNotebook* result; + GtkWidget* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->sidebar_notebook; + result = G_TYPE_CHECK_INSTANCE_TYPE (_tmp0_, GTK_TYPE_NOTEBOOK) ? ((GtkNotebook*) _tmp0_) : NULL; + return result; +} + + +void plugin_init (GeanyData* data) { + gchar* config_file = NULL; + gchar* config_dir = NULL; + GtkLabel* label = NULL; + GtkAlignment* align = NULL; + MultiTermNotebook* notebook = NULL; + GeanyPlugin* _tmp0_ = NULL; + GeanyData* _tmp1_ = NULL; + GeanyApp* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + const gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + const gchar* _tmp7_ = NULL; + GtkAlignment* _tmp13_ = NULL; + const gchar* _tmp14_ = NULL; + MultiTermNotebook* _tmp15_ = NULL; + GtkAlignment* _tmp16_ = NULL; + MultiTermNotebook* _tmp17_ = NULL; + GtkAlignment* _tmp18_ = NULL; + GtkAlignment* _tmp19_ = NULL; + GtkWidget* _tmp20_ = NULL; + GtkLabel* _tmp21_ = NULL; + MultiTermNotebook* _tmp22_ = NULL; + GtkLabel* _tmp23_ = NULL; + GtkLabel* _tmp24_ = NULL; + MultiTermNotebook* _tmp25_ = NULL; + GeanyData* _tmp26_ = NULL; + GeanyMainWidgets* _tmp27_ = NULL; + GtkNotebook* _tmp28_ = NULL; + GtkNotebook* _tmp29_ = NULL; + GtkNotebook* _tmp30_ = NULL; + MultiTermNotebook* _tmp31_ = NULL; + GeanyData* _tmp32_ = NULL; + GeanyMainWidgets* _tmp33_ = NULL; + GtkNotebook* _tmp34_ = NULL; + GtkNotebook* _tmp35_ = NULL; + GtkNotebook* _tmp36_ = NULL; + MultiTermNotebook* _tmp37_ = NULL; + MultiTermConfig* _tmp38_ = NULL; + gchar* _tmp39_ = NULL; + gchar* _tmp40_ = NULL; + gchar* _tmp41_ = NULL; + gboolean _tmp42_ = FALSE; + GError * _inner_error_ = NULL; + g_return_if_fail (data != NULL); + _tmp0_ = geany_plugin; + plugin_module_make_resident (_tmp0_); + _tmp1_ = geany_data; + _tmp2_ = _tmp1_->app; + _tmp3_ = _tmp2_->configdir; + _tmp4_ = g_build_filename (_tmp3_, "plugins", "multiterm", NULL); + _g_free0 (config_dir); + config_dir = _tmp4_; + _tmp5_ = config_dir; + _tmp6_ = g_build_filename (_tmp5_, "multiterm.conf", NULL); + _g_free0 (config_file); + config_file = _tmp6_; + _tmp7_ = config_dir; + g_mkdir_with_parents (_tmp7_, 0755); + { + const gchar* _tmp8_ = NULL; + gboolean _tmp9_ = FALSE; + _tmp8_ = config_file; + _tmp9_ = g_file_test (_tmp8_, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR); + if (!_tmp9_) { + const gchar* _tmp10_ = NULL; + _tmp10_ = config_file; + g_file_set_contents (_tmp10_, MULTI_TERM_default_config, (gssize) (-1), &_inner_error_); + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_FILE_ERROR) { + goto __catch6_g_file_error; + } + _g_object_unref0 (notebook); + _g_object_unref0 (align); + _g_object_unref0 (label); + _g_free0 (config_dir); + _g_free0 (config_file); + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + } + } + goto __finally6; + __catch6_g_file_error: + { + GError* err = NULL; + GError* _tmp11_ = NULL; + const gchar* _tmp12_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp11_ = err; + _tmp12_ = _tmp11_->message; + g_warning ("plugin.vala:72: Unable to write default config file: %s", _tmp12_); + _g_error_free0 (err); + } + __finally6: + if (_inner_error_ != NULL) { + _g_object_unref0 (notebook); + _g_object_unref0 (align); + _g_object_unref0 (label); + _g_free0 (config_dir); + _g_free0 (config_file); + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + _tmp13_ = (GtkAlignment*) gtk_alignment_new (0.5f, 0.5f, 1.0f, 1.0f); + g_object_ref_sink (_tmp13_); + _g_object_unref0 (align); + align = _tmp13_; + _tmp14_ = config_file; + _tmp15_ = multi_term_notebook_new (_tmp14_); + g_object_ref_sink (_tmp15_); + _g_object_unref0 (notebook); + notebook = _tmp15_; + _tmp16_ = align; + _tmp17_ = notebook; + gtk_container_add ((GtkContainer*) _tmp16_, (GtkWidget*) (G_TYPE_CHECK_INSTANCE_TYPE (_tmp17_, GTK_TYPE_NOTEBOOK) ? ((GtkNotebook*) _tmp17_) : NULL)); + _tmp18_ = align; + gtk_widget_show_all ((GtkWidget*) _tmp18_); + _tmp19_ = align; + _tmp20_ = _g_object_ref0 ((GtkWidget*) _tmp19_); + toplevel_widgets = g_list_append (toplevel_widgets, _tmp20_); + _tmp21_ = (GtkLabel*) gtk_label_new ("MultiTerm"); + g_object_ref_sink (_tmp21_); + _g_object_unref0 (label); + label = _tmp21_; + _tmp22_ = notebook; + _tmp23_ = label; + _tmp24_ = _g_object_ref0 (_tmp23_); + g_object_set_data_full ((GObject*) _tmp22_, "label", _tmp24_, g_object_unref); + _tmp25_ = notebook; + _tmp26_ = data; + _tmp27_ = _tmp26_->main_widgets; + _tmp28_ = geany_vala_plugin_main_widgets_get_message_window_notebook (_tmp27_); + _tmp29_ = _tmp28_; + _tmp30_ = _g_object_ref0 (_tmp29_); + g_object_set_data_full ((GObject*) _tmp25_, "msgwin_notebook", _tmp30_, g_object_unref); + _tmp31_ = notebook; + _tmp32_ = data; + _tmp33_ = _tmp32_->main_widgets; + _tmp34_ = geany_vala_plugin_main_widgets_get_sidebar_notebook (_tmp33_); + _tmp35_ = _tmp34_; + _tmp36_ = _g_object_ref0 (_tmp35_); + g_object_set_data_full ((GObject*) _tmp31_, "sidebar_notebook", _tmp36_, g_object_unref); + _tmp37_ = notebook; + _tmp38_ = _tmp37_->cfg; + _tmp39_ = multi_term_config_get_location (_tmp38_); + _tmp40_ = _tmp39_; + _tmp41_ = _tmp40_; + _tmp42_ = g_strcmp0 (_tmp41_, "msgwin") == 0; + _g_free0 (_tmp41_); + if (_tmp42_) { + GeanyData* _tmp43_ = NULL; + GeanyMainWidgets* _tmp44_ = NULL; + GtkNotebook* _tmp45_ = NULL; + GtkNotebook* _tmp46_ = NULL; + GtkAlignment* _tmp47_ = NULL; + GtkLabel* _tmp48_ = NULL; + GeanyData* _tmp49_ = NULL; + GeanyMainWidgets* _tmp50_ = NULL; + GtkNotebook* _tmp51_ = NULL; + GtkNotebook* _tmp52_ = NULL; + GeanyData* _tmp53_ = NULL; + GeanyMainWidgets* _tmp54_ = NULL; + GtkNotebook* _tmp55_ = NULL; + GtkNotebook* _tmp56_ = NULL; + GtkAlignment* _tmp57_ = NULL; + gint _tmp58_ = 0; + _tmp43_ = data; + _tmp44_ = _tmp43_->main_widgets; + _tmp45_ = geany_vala_plugin_main_widgets_get_message_window_notebook (_tmp44_); + _tmp46_ = _tmp45_; + _tmp47_ = align; + _tmp48_ = label; + gtk_notebook_append_page (_tmp46_, (GtkWidget*) _tmp47_, (GtkWidget*) _tmp48_); + _tmp49_ = data; + _tmp50_ = _tmp49_->main_widgets; + _tmp51_ = geany_vala_plugin_main_widgets_get_message_window_notebook (_tmp50_); + _tmp52_ = _tmp51_; + _tmp53_ = data; + _tmp54_ = _tmp53_->main_widgets; + _tmp55_ = geany_vala_plugin_main_widgets_get_message_window_notebook (_tmp54_); + _tmp56_ = _tmp55_; + _tmp57_ = align; + _tmp58_ = gtk_notebook_page_num (_tmp56_, (GtkWidget*) _tmp57_); + gtk_notebook_set_current_page (_tmp52_, _tmp58_); + } else { + GeanyData* _tmp59_ = NULL; + GeanyMainWidgets* _tmp60_ = NULL; + GtkNotebook* _tmp61_ = NULL; + GtkNotebook* _tmp62_ = NULL; + GtkAlignment* _tmp63_ = NULL; + GtkLabel* _tmp64_ = NULL; + GeanyData* _tmp65_ = NULL; + GeanyMainWidgets* _tmp66_ = NULL; + GtkNotebook* _tmp67_ = NULL; + GtkNotebook* _tmp68_ = NULL; + GeanyData* _tmp69_ = NULL; + GeanyMainWidgets* _tmp70_ = NULL; + GtkNotebook* _tmp71_ = NULL; + GtkNotebook* _tmp72_ = NULL; + GtkAlignment* _tmp73_ = NULL; + gint _tmp74_ = 0; + _tmp59_ = data; + _tmp60_ = _tmp59_->main_widgets; + _tmp61_ = geany_vala_plugin_main_widgets_get_sidebar_notebook (_tmp60_); + _tmp62_ = _tmp61_; + _tmp63_ = align; + _tmp64_ = label; + gtk_notebook_append_page (_tmp62_, (GtkWidget*) _tmp63_, (GtkWidget*) _tmp64_); + _tmp65_ = data; + _tmp66_ = _tmp65_->main_widgets; + _tmp67_ = geany_vala_plugin_main_widgets_get_sidebar_notebook (_tmp66_); + _tmp68_ = _tmp67_; + _tmp69_ = data; + _tmp70_ = _tmp69_->main_widgets; + _tmp71_ = geany_vala_plugin_main_widgets_get_sidebar_notebook (_tmp70_); + _tmp72_ = _tmp71_; + _tmp73_ = align; + _tmp74_ = gtk_notebook_page_num (_tmp72_, (GtkWidget*) _tmp73_); + gtk_notebook_set_current_page (_tmp68_, _tmp74_); + } + _g_object_unref0 (notebook); + _g_object_unref0 (align); + _g_object_unref0 (label); + _g_free0 (config_dir); + _g_free0 (config_file); +} + + +void plugin_cleanup (void) { + GList* _tmp0_ = NULL; + _tmp0_ = toplevel_widgets; + { + GList* wid_collection = NULL; + GList* wid_it = NULL; + wid_collection = _tmp0_; + for (wid_it = wid_collection; wid_it != NULL; wid_it = wid_it->next) { + GtkWidget* _tmp1_ = NULL; + GtkWidget* wid = NULL; + _tmp1_ = _g_object_ref0 ((GtkWidget*) wid_it->data); + wid = _tmp1_; + { + GtkWidget* _tmp2_ = NULL; + _tmp2_ = wid; + gtk_object_destroy ((GtkObject*) _tmp2_); + _g_object_unref0 (wid); + } + } + } +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/shell-config.c geany-plugins-1.24.1+dfsg/multiterm/src/shell-config.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/shell-config.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/shell-config.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,1576 @@ +/* shell-config.c generated by valac 0.22.1, the Vala compiler + * generated from shell-config.vala, do not modify */ + +/* + * shell-config.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include + +#define _multi_term_config_unref0(var) ((var == NULL) ? NULL : (var = (multi_term_config_unref (var), NULL))) +#define _g_free0(var) (var = (g_free (var), NULL)) +#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL))) +typedef struct _MultiTermParamSpecShellConfig MultiTermParamSpecShellConfig; + +struct _MultiTermShellConfigPrivate { + gchar* _section; +}; + +struct _MultiTermParamSpecShellConfig { + GParamSpec parent_instance; +}; + + +static gpointer multi_term_shell_config_parent_class = NULL; + +#define MULTI_TERM_SHELL_CONFIG_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MULTI_TERM_TYPE_SHELL_CONFIG, MultiTermShellConfigPrivate)) +enum { + MULTI_TERM_SHELL_CONFIG_DUMMY_PROPERTY +}; +#define MULTI_TERM_SHELL_CONFIG_warning_tmpl "Unable to read value for '%s' key: %s" +MultiTermConfig* multi_term_shell_config_get_cfg (MultiTermShellConfig* self); +GKeyFile* multi_term_shell_config_get_kf (MultiTermShellConfig* self); +static void multi_term_shell_config_finalize (MultiTermShellConfig* obj); + + +static gpointer _multi_term_config_ref0 (gpointer self) { + return self ? multi_term_config_ref (self) : NULL; +} + + +MultiTermShellConfig* multi_term_shell_config_construct (GType object_type, MultiTermConfig* cfg, const gchar* section) { + MultiTermShellConfig* self = NULL; + MultiTermConfig* _tmp0_ = NULL; + MultiTermConfig* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gchar* _tmp3_ = NULL; + g_return_val_if_fail (cfg != NULL, NULL); + g_return_val_if_fail (section != NULL, NULL); + self = (MultiTermShellConfig*) g_type_create_instance (object_type); + _tmp0_ = cfg; + _tmp1_ = _multi_term_config_ref0 (_tmp0_); + _multi_term_config_unref0 (self->_cfg); + self->_cfg = _tmp1_; + _tmp2_ = section; + _tmp3_ = g_strdup (_tmp2_); + _g_free0 (self->priv->_section); + self->priv->_section = _tmp3_; + return self; +} + + +MultiTermShellConfig* multi_term_shell_config_new (MultiTermConfig* cfg, const gchar* section) { + return multi_term_shell_config_construct (MULTI_TERM_TYPE_SHELL_CONFIG, cfg, section); +} + + +MultiTermConfig* multi_term_shell_config_get_cfg (MultiTermShellConfig* self) { + MultiTermConfig* result; + MultiTermConfig* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->_cfg; + result = _tmp0_; + return result; +} + + +GKeyFile* multi_term_shell_config_get_kf (MultiTermShellConfig* self) { + GKeyFile* result; + MultiTermConfig* _tmp0_ = NULL; + MultiTermConfig* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = multi_term_shell_config_get_cfg (self); + _tmp1_ = _tmp0_; + _tmp2_ = _tmp1_->kf; + result = _tmp2_; + return result; +} + + +const gchar* multi_term_shell_config_get_section (MultiTermShellConfig* self) { + const gchar* result; + const gchar* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->priv->_section; + result = _tmp0_; + return result; +} + + +gchar* multi_term_shell_config_get_name (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "name", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch7_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally7; + __catch7_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup ("Default"); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally7: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_name (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "name", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gchar* multi_term_shell_config_get_command (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "command", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch8_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally8; + __catch8_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup ("sh"); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally8: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_command (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "command", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_track_title (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "track_title", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch9_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally9; + __catch9_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = TRUE; + _g_error_free0 (err); + return result; + } + __finally9: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_track_title (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "track_title", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gchar* multi_term_shell_config_get_background_color (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "bg_color", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch10_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally10; + __catch10_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup ("#ffffff"); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally10: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_background_color (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "bg_color", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gchar* multi_term_shell_config_get_foreground_color (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "fg_color", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch11_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally11; + __catch11_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup ("#000000"); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally11: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_foreground_color (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "fg_color", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gchar* multi_term_shell_config_get_font (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "font", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch12_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally12; + __catch12_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup ("Monospace 9"); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally12: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_font (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "font", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_allow_bold (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "allow_bold", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch13_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally13; + __catch13_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = TRUE; + _g_error_free0 (err); + return result; + } + __finally13: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_allow_bold (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "allow_bold", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_audible_bell (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "audible_bell", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch14_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally14; + __catch14_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = TRUE; + _g_error_free0 (err); + return result; + } + __finally14: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_audible_bell (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "audible_bell", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +VteTerminalCursorBlinkMode multi_term_shell_config_get_cursor_blink_mode (MultiTermShellConfig* self) { + VteTerminalCursorBlinkMode result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, 0); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + gchar* blink_mode = NULL; + gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + gchar* _tmp7_ = NULL; + gboolean _tmp8_ = FALSE; + const gchar* _tmp9_ = NULL; + gboolean _tmp11_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "cursor_blink_mode", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch15_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; + } + _tmp5_ = _tmp0_; + _tmp6_ = g_utf8_strdown (_tmp5_, (gssize) (-1)); + _tmp7_ = _tmp6_; + _g_free0 (_tmp5_); + blink_mode = _tmp7_; + _tmp9_ = blink_mode; + if (g_strcmp0 (_tmp9_, "on") == 0) { + _tmp8_ = TRUE; + } else { + const gchar* _tmp10_ = NULL; + _tmp10_ = blink_mode; + _tmp8_ = g_strcmp0 (_tmp10_, "true") == 0; + } + _tmp11_ = _tmp8_; + if (_tmp11_) { + result = VTE_CURSOR_BLINK_ON; + _g_free0 (blink_mode); + return result; + } else { + gboolean _tmp12_ = FALSE; + const gchar* _tmp13_ = NULL; + gboolean _tmp15_ = FALSE; + _tmp13_ = blink_mode; + if (g_strcmp0 (_tmp13_, "off") == 0) { + _tmp12_ = TRUE; + } else { + const gchar* _tmp14_ = NULL; + _tmp14_ = blink_mode; + _tmp12_ = g_strcmp0 (_tmp14_, "false") == 0; + } + _tmp15_ = _tmp12_; + if (_tmp15_) { + result = VTE_CURSOR_BLINK_OFF; + _g_free0 (blink_mode); + return result; + } else { + result = VTE_CURSOR_BLINK_SYSTEM; + _g_free0 (blink_mode); + return result; + } + } + _g_free0 (blink_mode); + } + goto __finally15; + __catch15_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = VTE_CURSOR_BLINK_SYSTEM; + _g_error_free0 (err); + return result; + } + __finally15: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; +} + + +void multi_term_shell_config_set_cursor_blink_mode (MultiTermShellConfig* self, VteTerminalCursorBlinkMode value) { + VteTerminalCursorBlinkMode _tmp0_ = 0; + MultiTermConfig* _tmp10_ = NULL; + MultiTermConfig* _tmp11_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = value; + switch (_tmp0_) { + case VTE_CURSOR_BLINK_ON: + { + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + g_key_file_set_string (_tmp2_, _tmp3_, "cursor_blink_mode", "on"); + break; + } + case VTE_CURSOR_BLINK_OFF: + { + GKeyFile* _tmp4_ = NULL; + GKeyFile* _tmp5_ = NULL; + const gchar* _tmp6_ = NULL; + _tmp4_ = multi_term_shell_config_get_kf (self); + _tmp5_ = _tmp4_; + _tmp6_ = self->priv->_section; + g_key_file_set_string (_tmp5_, _tmp6_, "cursor_blink_mode", "off"); + break; + } + default: + { + GKeyFile* _tmp7_ = NULL; + GKeyFile* _tmp8_ = NULL; + const gchar* _tmp9_ = NULL; + _tmp7_ = multi_term_shell_config_get_kf (self); + _tmp8_ = _tmp7_; + _tmp9_ = self->priv->_section; + g_key_file_set_string (_tmp8_, _tmp9_, "cursor_blink_mode", "system"); + break; + } + } + _tmp10_ = multi_term_shell_config_get_cfg (self); + _tmp11_ = _tmp10_; + multi_term_config_store_eventually (_tmp11_); +} + + +VteTerminalCursorShape multi_term_shell_config_get_cursor_shape (MultiTermShellConfig* self) { + VteTerminalCursorShape result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, 0); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + gchar* shape = NULL; + gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + gchar* _tmp7_ = NULL; + const gchar* _tmp8_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "cursor_shape", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch16_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; + } + _tmp5_ = _tmp0_; + _tmp6_ = g_utf8_strdown (_tmp5_, (gssize) (-1)); + _tmp7_ = _tmp6_; + _g_free0 (_tmp5_); + shape = _tmp7_; + _tmp8_ = shape; + if (g_strcmp0 (_tmp8_, "ibeam") == 0) { + result = VTE_CURSOR_SHAPE_IBEAM; + _g_free0 (shape); + return result; + } else { + const gchar* _tmp9_ = NULL; + _tmp9_ = shape; + if (g_strcmp0 (_tmp9_, "underline") == 0) { + result = VTE_CURSOR_SHAPE_UNDERLINE; + _g_free0 (shape); + return result; + } else { + result = VTE_CURSOR_SHAPE_BLOCK; + _g_free0 (shape); + return result; + } + } + _g_free0 (shape); + } + goto __finally16; + __catch16_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = VTE_CURSOR_SHAPE_BLOCK; + _g_error_free0 (err); + return result; + } + __finally16: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; +} + + +void multi_term_shell_config_set_cursor_shape (MultiTermShellConfig* self, VteTerminalCursorShape value) { + VteTerminalCursorShape _tmp0_ = 0; + MultiTermConfig* _tmp10_ = NULL; + MultiTermConfig* _tmp11_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = value; + switch (_tmp0_) { + case VTE_CURSOR_SHAPE_IBEAM: + { + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + g_key_file_set_string (_tmp2_, _tmp3_, "cursor_shape", "ibeam"); + break; + } + case VTE_CURSOR_SHAPE_UNDERLINE: + { + GKeyFile* _tmp4_ = NULL; + GKeyFile* _tmp5_ = NULL; + const gchar* _tmp6_ = NULL; + _tmp4_ = multi_term_shell_config_get_kf (self); + _tmp5_ = _tmp4_; + _tmp6_ = self->priv->_section; + g_key_file_set_string (_tmp5_, _tmp6_, "cursor_shape", "underline"); + break; + } + default: + { + GKeyFile* _tmp7_ = NULL; + GKeyFile* _tmp8_ = NULL; + const gchar* _tmp9_ = NULL; + _tmp7_ = multi_term_shell_config_get_kf (self); + _tmp8_ = _tmp7_; + _tmp9_ = self->priv->_section; + g_key_file_set_string (_tmp8_, _tmp9_, "cursor_shape", "block"); + break; + } + } + _tmp10_ = multi_term_shell_config_get_cfg (self); + _tmp11_ = _tmp10_; + multi_term_config_store_eventually (_tmp11_); +} + + +VteTerminalEraseBinding multi_term_shell_config_get_backspace_binding (MultiTermShellConfig* self) { + VteTerminalEraseBinding result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, 0); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + gchar* binding = NULL; + gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + gchar* _tmp7_ = NULL; + const gchar* _tmp8_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "backspace_binding", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch17_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; + } + _tmp5_ = _tmp0_; + _tmp6_ = g_utf8_strdown (_tmp5_, (gssize) (-1)); + _tmp7_ = _tmp6_; + _g_free0 (_tmp5_); + binding = _tmp7_; + _tmp8_ = binding; + if (g_strcmp0 (_tmp8_, "ascii_backspace") == 0) { + result = VTE_ERASE_ASCII_BACKSPACE; + _g_free0 (binding); + return result; + } else { + const gchar* _tmp9_ = NULL; + _tmp9_ = binding; + if (g_strcmp0 (_tmp9_, "ascii_delete") == 0) { + result = VTE_ERASE_ASCII_DELETE; + _g_free0 (binding); + return result; + } else { + const gchar* _tmp10_ = NULL; + _tmp10_ = binding; + if (g_strcmp0 (_tmp10_, "delete_sequence") == 0) { + result = VTE_ERASE_DELETE_SEQUENCE; + _g_free0 (binding); + return result; + } else { + const gchar* _tmp11_ = NULL; + _tmp11_ = binding; + if (g_strcmp0 (_tmp11_, "tty") == 0) { + result = VTE_ERASE_TTY; + _g_free0 (binding); + return result; + } else { + result = VTE_ERASE_AUTO; + _g_free0 (binding); + return result; + } + } + } + } + _g_free0 (binding); + } + goto __finally17; + __catch17_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = VTE_ERASE_AUTO; + _g_error_free0 (err); + return result; + } + __finally17: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; +} + + +void multi_term_shell_config_set_backspace_binding (MultiTermShellConfig* self, VteTerminalEraseBinding value) { + VteTerminalEraseBinding _tmp0_ = 0; + MultiTermConfig* _tmp16_ = NULL; + MultiTermConfig* _tmp17_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = value; + switch (_tmp0_) { + case VTE_ERASE_ASCII_BACKSPACE: + { + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + g_key_file_set_string (_tmp2_, _tmp3_, "backspace_binding", "ascii_backspace"); + break; + } + case VTE_ERASE_ASCII_DELETE: + { + GKeyFile* _tmp4_ = NULL; + GKeyFile* _tmp5_ = NULL; + const gchar* _tmp6_ = NULL; + _tmp4_ = multi_term_shell_config_get_kf (self); + _tmp5_ = _tmp4_; + _tmp6_ = self->priv->_section; + g_key_file_set_string (_tmp5_, _tmp6_, "backspace_binding", "ascii_delete"); + break; + } + case VTE_ERASE_DELETE_SEQUENCE: + { + GKeyFile* _tmp7_ = NULL; + GKeyFile* _tmp8_ = NULL; + const gchar* _tmp9_ = NULL; + _tmp7_ = multi_term_shell_config_get_kf (self); + _tmp8_ = _tmp7_; + _tmp9_ = self->priv->_section; + g_key_file_set_string (_tmp8_, _tmp9_, "backspace_binding", "delete_sequence"); + break; + } + case VTE_ERASE_TTY: + { + GKeyFile* _tmp10_ = NULL; + GKeyFile* _tmp11_ = NULL; + const gchar* _tmp12_ = NULL; + _tmp10_ = multi_term_shell_config_get_kf (self); + _tmp11_ = _tmp10_; + _tmp12_ = self->priv->_section; + g_key_file_set_string (_tmp11_, _tmp12_, "backspace_binding", "tty"); + break; + } + default: + { + GKeyFile* _tmp13_ = NULL; + GKeyFile* _tmp14_ = NULL; + const gchar* _tmp15_ = NULL; + _tmp13_ = multi_term_shell_config_get_kf (self); + _tmp14_ = _tmp13_; + _tmp15_ = self->priv->_section; + g_key_file_set_string (_tmp14_, _tmp15_, "backspace_binding", "auto"); + break; + } + } + _tmp16_ = multi_term_shell_config_get_cfg (self); + _tmp17_ = _tmp16_; + multi_term_config_store_eventually (_tmp17_); +} + + +gboolean multi_term_shell_config_get_pointer_autohide (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "pointer_autohide", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch18_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally18; + __catch18_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = FALSE; + _g_error_free0 (err); + return result; + } + __finally18: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_pointer_autohide (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "pointer_autohide", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_scroll_on_keystroke (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "scroll_on_keystroke", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch19_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally19; + __catch19_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = TRUE; + _g_error_free0 (err); + return result; + } + __finally19: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_scroll_on_keystroke (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "scroll_on_keystroke", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_scroll_on_output (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "scroll_on_output", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch20_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally20; + __catch20_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = FALSE; + _g_error_free0 (err); + return result; + } + __finally20: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_scroll_on_output (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "scroll_on_output", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gint multi_term_shell_config_get_scrollback_lines (MultiTermShellConfig* self) { + gint result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, 0); + { + gint _tmp0_ = 0; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gint _tmp4_ = 0; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_integer (_tmp2_, _tmp3_, "scrollback_lines", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch21_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; + } + result = _tmp0_; + return result; + } + goto __finally21; + __catch21_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = 512; + _g_error_free0 (err); + return result; + } + __finally21: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return 0; +} + + +void multi_term_shell_config_set_scrollback_lines (MultiTermShellConfig* self, gint value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gint _tmp3_ = 0; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_integer (_tmp1_, _tmp2_, "scrollback_lines", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gboolean multi_term_shell_config_get_visible_bell (MultiTermShellConfig* self) { + gboolean result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, FALSE); + { + gboolean _tmp0_ = FALSE; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gboolean _tmp4_ = FALSE; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_boolean (_tmp2_, _tmp3_, "visible_bell", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch22_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; + } + result = _tmp0_; + return result; + } + goto __finally22; + __catch22_g_key_file_error: + { + GError* err = NULL; + err = _inner_error_; + _inner_error_ = NULL; + result = FALSE; + _g_error_free0 (err); + return result; + } + __finally22: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return FALSE; +} + + +void multi_term_shell_config_set_visible_bell (MultiTermShellConfig* self, gboolean value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + gboolean _tmp3_ = FALSE; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_boolean (_tmp1_, _tmp2_, "visible_bell", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +gchar* multi_term_shell_config_get_word_chars (MultiTermShellConfig* self) { + gchar* result; + GError * _inner_error_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + { + gchar* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + GKeyFile* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + _tmp1_ = multi_term_shell_config_get_kf (self); + _tmp2_ = _tmp1_; + _tmp3_ = self->priv->_section; + _tmp4_ = g_key_file_get_string (_tmp2_, _tmp3_, "word_chars", &_inner_error_); + _tmp0_ = _tmp4_; + if (_inner_error_ != NULL) { + if (_inner_error_->domain == G_KEY_FILE_ERROR) { + goto __catch23_g_key_file_error; + } + g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; + } + result = _tmp0_; + return result; + } + goto __finally23; + __catch23_g_key_file_error: + { + GError* err = NULL; + gchar* _tmp5_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = g_strdup (""); + result = _tmp5_; + _g_error_free0 (err); + return result; + } + __finally23: + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return NULL; +} + + +void multi_term_shell_config_set_word_chars (MultiTermShellConfig* self, const gchar* value) { + GKeyFile* _tmp0_ = NULL; + GKeyFile* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + MultiTermConfig* _tmp4_ = NULL; + MultiTermConfig* _tmp5_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = multi_term_shell_config_get_kf (self); + _tmp1_ = _tmp0_; + _tmp2_ = self->priv->_section; + _tmp3_ = value; + g_key_file_set_string (_tmp1_, _tmp2_, "word_chars", _tmp3_); + _tmp4_ = multi_term_shell_config_get_cfg (self); + _tmp5_ = _tmp4_; + multi_term_config_store_eventually (_tmp5_); +} + + +static void multi_term_value_shell_config_init (GValue* value) { + value->data[0].v_pointer = NULL; +} + + +static void multi_term_value_shell_config_free_value (GValue* value) { + if (value->data[0].v_pointer) { + multi_term_shell_config_unref (value->data[0].v_pointer); + } +} + + +static void multi_term_value_shell_config_copy_value (const GValue* src_value, GValue* dest_value) { + if (src_value->data[0].v_pointer) { + dest_value->data[0].v_pointer = multi_term_shell_config_ref (src_value->data[0].v_pointer); + } else { + dest_value->data[0].v_pointer = NULL; + } +} + + +static gpointer multi_term_value_shell_config_peek_pointer (const GValue* value) { + return value->data[0].v_pointer; +} + + +static gchar* multi_term_value_shell_config_collect_value (GValue* value, guint n_collect_values, GTypeCValue* collect_values, guint collect_flags) { + if (collect_values[0].v_pointer) { + MultiTermShellConfig* object; + object = collect_values[0].v_pointer; + if (object->parent_instance.g_class == NULL) { + return g_strconcat ("invalid unclassed object pointer for value type `", G_VALUE_TYPE_NAME (value), "'", NULL); + } else if (!g_value_type_compatible (G_TYPE_FROM_INSTANCE (object), G_VALUE_TYPE (value))) { + return g_strconcat ("invalid object type `", g_type_name (G_TYPE_FROM_INSTANCE (object)), "' for value type `", G_VALUE_TYPE_NAME (value), "'", NULL); + } + value->data[0].v_pointer = multi_term_shell_config_ref (object); + } else { + value->data[0].v_pointer = NULL; + } + return NULL; +} + + +static gchar* multi_term_value_shell_config_lcopy_value (const GValue* value, guint n_collect_values, GTypeCValue* collect_values, guint collect_flags) { + MultiTermShellConfig** object_p; + object_p = collect_values[0].v_pointer; + if (!object_p) { + return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value)); + } + if (!value->data[0].v_pointer) { + *object_p = NULL; + } else if (collect_flags & G_VALUE_NOCOPY_CONTENTS) { + *object_p = value->data[0].v_pointer; + } else { + *object_p = multi_term_shell_config_ref (value->data[0].v_pointer); + } + return NULL; +} + + +GParamSpec* multi_term_param_spec_shell_config (const gchar* name, const gchar* nick, const gchar* blurb, GType object_type, GParamFlags flags) { + MultiTermParamSpecShellConfig* spec; + g_return_val_if_fail (g_type_is_a (object_type, MULTI_TERM_TYPE_SHELL_CONFIG), NULL); + spec = g_param_spec_internal (G_TYPE_PARAM_OBJECT, name, nick, blurb, flags); + G_PARAM_SPEC (spec)->value_type = object_type; + return G_PARAM_SPEC (spec); +} + + +gpointer multi_term_value_get_shell_config (const GValue* value) { + g_return_val_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_SHELL_CONFIG), NULL); + return value->data[0].v_pointer; +} + + +void multi_term_value_set_shell_config (GValue* value, gpointer v_object) { + MultiTermShellConfig* old; + g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_SHELL_CONFIG)); + old = value->data[0].v_pointer; + if (v_object) { + g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, MULTI_TERM_TYPE_SHELL_CONFIG)); + g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value))); + value->data[0].v_pointer = v_object; + multi_term_shell_config_ref (value->data[0].v_pointer); + } else { + value->data[0].v_pointer = NULL; + } + if (old) { + multi_term_shell_config_unref (old); + } +} + + +void multi_term_value_take_shell_config (GValue* value, gpointer v_object) { + MultiTermShellConfig* old; + g_return_if_fail (G_TYPE_CHECK_VALUE_TYPE (value, MULTI_TERM_TYPE_SHELL_CONFIG)); + old = value->data[0].v_pointer; + if (v_object) { + g_return_if_fail (G_TYPE_CHECK_INSTANCE_TYPE (v_object, MULTI_TERM_TYPE_SHELL_CONFIG)); + g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (v_object), G_VALUE_TYPE (value))); + value->data[0].v_pointer = v_object; + } else { + value->data[0].v_pointer = NULL; + } + if (old) { + multi_term_shell_config_unref (old); + } +} + + +static void multi_term_shell_config_class_init (MultiTermShellConfigClass * klass) { + multi_term_shell_config_parent_class = g_type_class_peek_parent (klass); + MULTI_TERM_SHELL_CONFIG_CLASS (klass)->finalize = multi_term_shell_config_finalize; + g_type_class_add_private (klass, sizeof (MultiTermShellConfigPrivate)); +} + + +static void multi_term_shell_config_instance_init (MultiTermShellConfig * self) { + self->priv = MULTI_TERM_SHELL_CONFIG_GET_PRIVATE (self); + self->ref_count = 1; +} + + +static void multi_term_shell_config_finalize (MultiTermShellConfig* obj) { + MultiTermShellConfig * self; + self = G_TYPE_CHECK_INSTANCE_CAST (obj, MULTI_TERM_TYPE_SHELL_CONFIG, MultiTermShellConfig); + _multi_term_config_unref0 (self->_cfg); + _g_free0 (self->priv->_section); +} + + +GType multi_term_shell_config_get_type (void) { + static volatile gsize multi_term_shell_config_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_shell_config_type_id__volatile)) { + static const GTypeValueTable g_define_type_value_table = { multi_term_value_shell_config_init, multi_term_value_shell_config_free_value, multi_term_value_shell_config_copy_value, multi_term_value_shell_config_peek_pointer, "p", multi_term_value_shell_config_collect_value, "p", multi_term_value_shell_config_lcopy_value }; + static const GTypeInfo g_define_type_info = { sizeof (MultiTermShellConfigClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_shell_config_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermShellConfig), 0, (GInstanceInitFunc) multi_term_shell_config_instance_init, &g_define_type_value_table }; + static const GTypeFundamentalInfo g_define_type_fundamental_info = { (G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_INSTANTIATABLE | G_TYPE_FLAG_DERIVABLE | G_TYPE_FLAG_DEEP_DERIVABLE) }; + GType multi_term_shell_config_type_id; + multi_term_shell_config_type_id = g_type_register_fundamental (g_type_fundamental_next (), "MultiTermShellConfig", &g_define_type_info, &g_define_type_fundamental_info, 0); + g_once_init_leave (&multi_term_shell_config_type_id__volatile, multi_term_shell_config_type_id); + } + return multi_term_shell_config_type_id__volatile; +} + + +gpointer multi_term_shell_config_ref (gpointer instance) { + MultiTermShellConfig* self; + self = instance; + g_atomic_int_inc (&self->ref_count); + return instance; +} + + +void multi_term_shell_config_unref (gpointer instance) { + MultiTermShellConfig* self; + self = instance; + if (g_atomic_int_dec_and_test (&self->ref_count)) { + MULTI_TERM_SHELL_CONFIG_GET_CLASS (self)->finalize (self); + g_type_free_instance ((GTypeInstance *) self); + } +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/tab-label.c geany-plugins-1.24.1+dfsg/multiterm/src/tab-label.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/tab-label.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/tab-label.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,290 @@ +/* tab-label.c generated by valac 0.22.1, the Vala compiler + * generated from tab-label.vala, do not modify */ + +/* + * tab-label.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include + +#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL))) + +struct _MultiTermTabLabelPrivate { + GtkButton* btn; +}; + + +static gpointer multi_term_tab_label_parent_class = NULL; + +#define MULTI_TERM_TAB_LABEL_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabelPrivate)) +enum { + MULTI_TERM_TAB_LABEL_DUMMY_PROPERTY, + MULTI_TERM_TAB_LABEL_TEXT, + MULTI_TERM_TAB_LABEL_BUTTON +}; +static void multi_term_tab_label_on_button_clicked (MultiTermTabLabel* self); +static void multi_term_tab_label_on_button_style_set (MultiTermTabLabel* self, GtkStyle* previous_style); +static void _multi_term_tab_label_on_button_clicked_gtk_button_clicked (GtkButton* _sender, gpointer self); +static void _multi_term_tab_label_on_button_style_set_gtk_widget_style_set (GtkWidget* _sender, GtkStyle* previous_style, gpointer self); +static void multi_term_tab_label_finalize (GObject* obj); +static void _vala_multi_term_tab_label_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec); +static void _vala_multi_term_tab_label_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec); + + +static gpointer _g_object_ref0 (gpointer self) { + return self ? g_object_ref (self) : NULL; +} + + +static void multi_term_tab_label_on_button_clicked (MultiTermTabLabel* self) { + MultiTermTerminal* term = NULL; + gconstpointer _tmp0_ = NULL; + MultiTermTerminal* _tmp1_ = NULL; + MultiTermNotebook* nb = NULL; + GtkWidget* _tmp2_ = NULL; + MultiTermNotebook* _tmp3_ = NULL; + gint page_num = 0; + gint _tmp4_ = 0; + g_return_if_fail (self != NULL); + _tmp0_ = g_object_get_data ((GObject*) self, "terminal"); + _tmp1_ = _g_object_ref0 ((MultiTermTerminal*) _tmp0_); + term = _tmp1_; + _tmp2_ = gtk_widget_get_parent ((GtkWidget*) term); + _tmp3_ = _g_object_ref0 (G_TYPE_CHECK_INSTANCE_CAST (_tmp2_, MULTI_TERM_TYPE_NOTEBOOK, MultiTermNotebook)); + nb = _tmp3_; + _tmp4_ = gtk_notebook_page_num ((GtkNotebook*) nb, (GtkWidget*) term); + page_num = _tmp4_; + g_signal_emit_by_name (self, "close-clicked", page_num); + _g_object_unref0 (nb); + _g_object_unref0 (term); +} + + +static void multi_term_tab_label_on_button_style_set (MultiTermTabLabel* self, GtkStyle* previous_style) { + gint w = 0; + gint h = 0; + GtkButton* _tmp0_ = NULL; + GtkSettings* _tmp1_ = NULL; + gint _tmp2_ = 0; + gint _tmp3_ = 0; + GtkButton* _tmp4_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->priv->btn; + _tmp1_ = gtk_widget_get_settings ((GtkWidget*) _tmp0_); + gtk_icon_size_lookup_for_settings (_tmp1_, GTK_ICON_SIZE_MENU, &_tmp2_, &_tmp3_); + w = _tmp2_; + h = _tmp3_; + _tmp4_ = self->priv->btn; + gtk_widget_set_size_request ((GtkWidget*) _tmp4_, w + 2, h + 2); +} + + +static void _multi_term_tab_label_on_button_clicked_gtk_button_clicked (GtkButton* _sender, gpointer self) { + multi_term_tab_label_on_button_clicked (self); +} + + +static void _multi_term_tab_label_on_button_style_set_gtk_widget_style_set (GtkWidget* _sender, GtkStyle* previous_style, gpointer self) { + multi_term_tab_label_on_button_style_set (self, previous_style); +} + + +MultiTermTabLabel* multi_term_tab_label_construct (GType object_type, const gchar* text) { + MultiTermTabLabel * self = NULL; + GtkImage* img = NULL; + const gchar* _tmp0_ = NULL; + GtkLabel* _tmp1_ = NULL; + GtkLabel* _tmp2_ = NULL; + GtkLabel* _tmp3_ = NULL; + GtkLabel* _tmp4_ = NULL; + GtkImage* _tmp5_ = NULL; + GtkRcStyle* style = NULL; + GtkRcStyle* _tmp6_ = NULL; + GtkButton* _tmp7_ = NULL; + GtkButton* _tmp8_ = NULL; + GtkButton* _tmp9_ = NULL; + GtkButton* _tmp10_ = NULL; + GtkButton* _tmp11_ = NULL; + GtkButton* _tmp12_ = NULL; + GtkButton* _tmp13_ = NULL; + GtkButton* _tmp14_ = NULL; + GtkButton* _tmp15_ = NULL; + g_return_val_if_fail (text != NULL, NULL); + self = (MultiTermTabLabel*) g_object_new (object_type, "homogeneous", FALSE, "spacing", 2, NULL); + gtk_container_set_border_width ((GtkContainer*) self, (guint) 0); + _tmp0_ = text; + _tmp1_ = (GtkLabel*) gtk_label_new (_tmp0_); + g_object_ref_sink (_tmp1_); + _g_object_unref0 (self->label); + self->label = _tmp1_; + _tmp2_ = self->label; + gtk_misc_set_alignment ((GtkMisc*) _tmp2_, 0.0f, 0.5f); + _tmp3_ = self->label; + gtk_label_set_ellipsize (_tmp3_, PANGO_ELLIPSIZE_END); + _tmp4_ = self->label; + gtk_box_pack_start ((GtkBox*) self, (GtkWidget*) _tmp4_, TRUE, TRUE, (guint) 0); + _tmp5_ = (GtkImage*) gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU); + g_object_ref_sink (_tmp5_); + _g_object_unref0 (img); + img = _tmp5_; + _tmp6_ = gtk_rc_style_new (); + style = _tmp6_; + style->xthickness = 0; + style->ythickness = 0; + _tmp7_ = (GtkButton*) gtk_button_new (); + g_object_ref_sink (_tmp7_); + _g_object_unref0 (self->priv->btn); + self->priv->btn = _tmp7_; + _tmp8_ = self->priv->btn; + gtk_widget_modify_style ((GtkWidget*) _tmp8_, style); + _tmp9_ = self->priv->btn; + gtk_container_add ((GtkContainer*) _tmp9_, (GtkWidget*) img); + _tmp10_ = self->priv->btn; + gtk_widget_set_tooltip_text ((GtkWidget*) _tmp10_, "Close terminal"); + _tmp11_ = self->priv->btn; + g_signal_connect_object (_tmp11_, "clicked", (GCallback) _multi_term_tab_label_on_button_clicked_gtk_button_clicked, self, 0); + _tmp12_ = self->priv->btn; + gtk_button_set_relief (_tmp12_, GTK_RELIEF_NONE); + _tmp13_ = self->priv->btn; + gtk_button_set_focus_on_click (_tmp13_, FALSE); + _tmp14_ = self->priv->btn; + g_signal_connect_object ((GtkWidget*) _tmp14_, "style-set", (GCallback) _multi_term_tab_label_on_button_style_set_gtk_widget_style_set, self, 0); + _tmp15_ = self->priv->btn; + gtk_box_pack_start ((GtkBox*) self, (GtkWidget*) _tmp15_, FALSE, FALSE, (guint) 0); + _g_object_unref0 (style); + _g_object_unref0 (img); + return self; +} + + +MultiTermTabLabel* multi_term_tab_label_new (const gchar* text) { + return multi_term_tab_label_construct (MULTI_TERM_TYPE_TAB_LABEL, text); +} + + +const gchar* multi_term_tab_label_get_text (MultiTermTabLabel* self) { + const gchar* result; + GtkLabel* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->label; + _tmp1_ = gtk_label_get_label (_tmp0_); + result = _tmp1_; + return result; +} + + +void multi_term_tab_label_set_text (MultiTermTabLabel* self, const gchar* value) { + GtkLabel* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->label; + _tmp1_ = value; + gtk_label_set_label (_tmp0_, _tmp1_); + g_object_notify ((GObject *) self, "text"); +} + + +GtkButton* multi_term_tab_label_get_button (MultiTermTabLabel* self) { + GtkButton* result; + GtkButton* _tmp0_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = self->priv->btn; + result = _tmp0_; + return result; +} + + +static void multi_term_tab_label_class_init (MultiTermTabLabelClass * klass) { + multi_term_tab_label_parent_class = g_type_class_peek_parent (klass); + g_type_class_add_private (klass, sizeof (MultiTermTabLabelPrivate)); + G_OBJECT_CLASS (klass)->get_property = _vala_multi_term_tab_label_get_property; + G_OBJECT_CLASS (klass)->set_property = _vala_multi_term_tab_label_set_property; + G_OBJECT_CLASS (klass)->finalize = multi_term_tab_label_finalize; + g_object_class_install_property (G_OBJECT_CLASS (klass), MULTI_TERM_TAB_LABEL_TEXT, g_param_spec_string ("text", "text", "text", NULL, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_READABLE | G_PARAM_WRITABLE)); + g_object_class_install_property (G_OBJECT_CLASS (klass), MULTI_TERM_TAB_LABEL_BUTTON, g_param_spec_object ("button", "button", "button", GTK_TYPE_BUTTON, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_READABLE)); + g_signal_new ("close_clicked", MULTI_TERM_TYPE_TAB_LABEL, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT); +} + + +static void multi_term_tab_label_instance_init (MultiTermTabLabel * self) { + self->priv = MULTI_TERM_TAB_LABEL_GET_PRIVATE (self); +} + + +static void multi_term_tab_label_finalize (GObject* obj) { + MultiTermTabLabel * self; + self = G_TYPE_CHECK_INSTANCE_CAST (obj, MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabel); + _g_object_unref0 (self->priv->btn); + _g_object_unref0 (self->label); + G_OBJECT_CLASS (multi_term_tab_label_parent_class)->finalize (obj); +} + + +GType multi_term_tab_label_get_type (void) { + static volatile gsize multi_term_tab_label_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_tab_label_type_id__volatile)) { + static const GTypeInfo g_define_type_info = { sizeof (MultiTermTabLabelClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_tab_label_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermTabLabel), 0, (GInstanceInitFunc) multi_term_tab_label_instance_init, NULL }; + GType multi_term_tab_label_type_id; + multi_term_tab_label_type_id = g_type_register_static (GTK_TYPE_HBOX, "MultiTermTabLabel", &g_define_type_info, 0); + g_once_init_leave (&multi_term_tab_label_type_id__volatile, multi_term_tab_label_type_id); + } + return multi_term_tab_label_type_id__volatile; +} + + +static void _vala_multi_term_tab_label_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) { + MultiTermTabLabel * self; + self = G_TYPE_CHECK_INSTANCE_CAST (object, MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabel); + switch (property_id) { + case MULTI_TERM_TAB_LABEL_TEXT: + g_value_set_string (value, multi_term_tab_label_get_text (self)); + break; + case MULTI_TERM_TAB_LABEL_BUTTON: + g_value_set_object (value, multi_term_tab_label_get_button (self)); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + + +static void _vala_multi_term_tab_label_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec) { + MultiTermTabLabel * self; + self = G_TYPE_CHECK_INSTANCE_CAST (object, MULTI_TERM_TYPE_TAB_LABEL, MultiTermTabLabel); + switch (property_id) { + case MULTI_TERM_TAB_LABEL_TEXT: + multi_term_tab_label_set_text (self, g_value_get_string (value)); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/terminal.c geany-plugins-1.24.1+dfsg/multiterm/src/terminal.c --- geany-plugins-1.24.0+20140222+git/multiterm/src/terminal.c 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/terminal.c 2014-04-13 17:17:56.000000000 +0000 @@ -0,0 +1,739 @@ +/* terminal.c generated by valac 0.22.1, the Vala compiler + * generated from terminal.vala, do not modify */ + +/* + * terminal.vala - This file is part of the Geany MultiTerm plugin + * + * Copyright (c) 2012 Matthew Brush . + * + * 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 Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#include +#include +#include "multiterm.h" +#include +#include +#include +#include +#include + +#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL))) +#define _multi_term_shell_config_unref0(var) ((var == NULL) ? NULL : (var = (multi_term_shell_config_unref (var), NULL))) +#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL))) +#define _g_free0(var) (var = (g_free (var), NULL)) + +struct _MultiTermTerminalPrivate { + MultiTermShellConfig* sh; +}; + + +static gpointer multi_term_terminal_parent_class = NULL; + +#define MULTI_TERM_TERMINAL_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), MULTI_TERM_TYPE_TERMINAL, MultiTermTerminalPrivate)) +enum { + MULTI_TERM_TERMINAL_DUMMY_PROPERTY, + MULTI_TERM_TERMINAL_TAB_LABEL_TEXT, + MULTI_TERM_TERMINAL_BACKGROUND_COLOR, + MULTI_TERM_TERMINAL_FOREGROUND_COLOR +}; +static void multi_term_terminal_on_window_title_changed (MultiTermTerminal* self); +static void multi_term_terminal_on_vte_realize (MultiTermTerminal* self); +MultiTermConfig* multi_term_shell_config_get_cfg (MultiTermShellConfig* self); +static gboolean multi_term_terminal_on_button_press (MultiTermTerminal* self, GdkEventButton* event); +static gboolean _multi_term_terminal_on_button_press_gtk_widget_button_press_event (GtkWidget* _sender, GdkEventButton* event, gpointer self); +static void multi_term_terminal_on_child_exited (MultiTermTerminal* self); +static void _multi_term_terminal_on_window_title_changed_vte_terminal_window_title_changed (VteTerminal* _sender, gpointer self); +static void _multi_term_terminal_on_child_exited_vte_terminal_child_exited (VteTerminal* _sender, gpointer self); +static void _multi_term_terminal_on_vte_realize_gtk_widget_realize (GtkWidget* _sender, gpointer self); +static void g_cclosure_user_marshal_BOOLEAN__POINTER (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data); +static void multi_term_terminal_finalize (GObject* obj); +static void _vala_multi_term_terminal_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec); +static void _vala_multi_term_terminal_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec); +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func); +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func); + + +static void multi_term_terminal_on_window_title_changed (MultiTermTerminal* self) { + VteTerminal* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->terminal; + _tmp1_ = vte_terminal_get_window_title (_tmp0_); + _tmp2_ = _tmp1_; + multi_term_terminal_set_tab_label_text (self, _tmp2_); +} + + +void multi_term_terminal_run_command (MultiTermTerminal* self, const gchar* command) { + GPid pid = 0; + gchar** argv = NULL; + const gchar* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + gchar** _tmp2_ = NULL; + gint argv_length1 = 0; + gint _argv_size_ = 0; + GError * _inner_error_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (command != NULL); + _tmp0_ = command; + _tmp1_ = g_strdup (_tmp0_); + _tmp2_ = g_new0 (gchar*, 2 + 1); + _tmp2_[0] = _tmp1_; + _tmp2_[1] = NULL; + argv = _tmp2_; + argv_length1 = 2; + _argv_size_ = argv_length1; + { + VteTerminal* _tmp3_ = NULL; + GPid _tmp4_ = 0; + _tmp3_ = self->terminal; + vte_terminal_fork_command_full (_tmp3_, VTE_PTY_DEFAULT, NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, &_tmp4_, &_inner_error_); + pid = _tmp4_; + if (_inner_error_ != NULL) { + goto __catch24_g_error; + } + } + goto __finally24; + __catch24_g_error: + { + GError* err = NULL; + GError* _tmp5_ = NULL; + const gchar* _tmp6_ = NULL; + err = _inner_error_; + _inner_error_ = NULL; + _tmp5_ = err; + _tmp6_ = _tmp5_->message; + g_warning ("terminal.vala:88: Unable to run command: %s", _tmp6_); + _g_error_free0 (err); + } + __finally24: + if (_inner_error_ != NULL) { + argv = (_vala_array_free (argv, argv_length1, (GDestroyNotify) g_free), NULL); + g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error_->message, g_quark_to_string (_inner_error_->domain), _inner_error_->code); + g_clear_error (&_inner_error_); + return; + } + argv = (_vala_array_free (argv, argv_length1, (GDestroyNotify) g_free), NULL); +} + + +static gboolean _multi_term_terminal_on_button_press_gtk_widget_button_press_event (GtkWidget* _sender, GdkEventButton* event, gpointer self) { + gboolean result; + result = multi_term_terminal_on_button_press (self, event); + return result; +} + + +static void multi_term_terminal_on_vte_realize (MultiTermTerminal* self) { + MultiTermShellConfig* _tmp0_ = NULL; + MultiTermConfig* _tmp1_ = NULL; + MultiTermConfig* _tmp2_ = NULL; + VteTerminal* _tmp11_ = NULL; + VteTerminal* _tmp12_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->priv->sh; + _tmp1_ = multi_term_shell_config_get_cfg (_tmp0_); + _tmp2_ = _tmp1_; + if (_tmp2_ != NULL) { + MultiTermShellConfig* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + MultiTermShellConfig* _tmp7_ = NULL; + gchar* _tmp8_ = NULL; + gchar* _tmp9_ = NULL; + gchar* _tmp10_ = NULL; + _tmp3_ = self->priv->sh; + _tmp4_ = multi_term_shell_config_get_background_color (_tmp3_); + _tmp5_ = _tmp4_; + _tmp6_ = _tmp5_; + multi_term_terminal_set_background_color (self, _tmp6_); + _g_free0 (_tmp6_); + _tmp7_ = self->priv->sh; + _tmp8_ = multi_term_shell_config_get_foreground_color (_tmp7_); + _tmp9_ = _tmp8_; + _tmp10_ = _tmp9_; + multi_term_terminal_set_foreground_color (self, _tmp10_); + _g_free0 (_tmp10_); + } else { + multi_term_terminal_set_background_color (self, "#ffffff"); + multi_term_terminal_set_foreground_color (self, "#000000"); + } + _tmp11_ = self->terminal; + gtk_widget_add_events ((GtkWidget*) _tmp11_, (gint) GDK_BUTTON_PRESS_MASK); + _tmp12_ = self->terminal; + g_signal_connect_object ((GtkWidget*) _tmp12_, "button-press-event", (GCallback) _multi_term_terminal_on_button_press_gtk_widget_button_press_event, self, 0); +} + + +static void multi_term_terminal_on_child_exited (MultiTermTerminal* self) { + MultiTermShellConfig* _tmp0_ = NULL; + gchar* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + gchar* _tmp3_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = self->priv->sh; + _tmp1_ = multi_term_shell_config_get_command (_tmp0_); + _tmp2_ = _tmp1_; + _tmp3_ = _tmp2_; + multi_term_terminal_run_command (self, _tmp3_); + _g_free0 (_tmp3_); +} + + +static gboolean multi_term_terminal_on_button_press (MultiTermTerminal* self, GdkEventButton* event) { + gboolean result = FALSE; + GdkEventButton _tmp0_ = {0}; + guint _tmp1_ = 0U; + g_return_val_if_fail (self != NULL, FALSE); + g_return_val_if_fail (event != NULL, FALSE); + _tmp0_ = *event; + _tmp1_ = _tmp0_.button; + if (_tmp1_ == ((guint) 3)) { + GdkEventButton _tmp2_ = {0}; + gboolean _tmp3_ = FALSE; + _tmp2_ = *event; + g_signal_emit_by_name (self, "right-click-event", &_tmp2_, &_tmp3_); + result = _tmp3_; + return result; + } + result = FALSE; + return result; +} + + +void multi_term_terminal_send_command (MultiTermTerminal* self, const gchar* command) { + VteTerminal* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + gchar* _tmp2_ = NULL; + gchar* _tmp3_ = NULL; + g_return_if_fail (self != NULL); + g_return_if_fail (command != NULL); + _tmp0_ = self->terminal; + _tmp1_ = command; + _tmp2_ = g_strdup_printf ("%s\n", _tmp1_); + _tmp3_ = _tmp2_; + vte_terminal_feed_child (_tmp0_, _tmp3_, (glong) (-1)); + _g_free0 (_tmp3_); +} + + +static gpointer _multi_term_shell_config_ref0 (gpointer self) { + return self ? multi_term_shell_config_ref (self) : NULL; +} + + +static gchar* string_strip (const gchar* self) { + gchar* result = NULL; + gchar* _result_ = NULL; + gchar* _tmp0_ = NULL; + const gchar* _tmp1_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = g_strdup (self); + _result_ = _tmp0_; + _tmp1_ = _result_; + g_strstrip (_tmp1_); + result = _result_; + return result; +} + + +static void _multi_term_terminal_on_window_title_changed_vte_terminal_window_title_changed (VteTerminal* _sender, gpointer self) { + multi_term_terminal_on_window_title_changed (self); +} + + +static void _multi_term_terminal_on_child_exited_vte_terminal_child_exited (VteTerminal* _sender, gpointer self) { + multi_term_terminal_on_child_exited (self); +} + + +static void _multi_term_terminal_on_vte_realize_gtk_widget_realize (GtkWidget* _sender, gpointer self) { + multi_term_terminal_on_vte_realize (self); +} + + +MultiTermTerminal* multi_term_terminal_construct (GType object_type, MultiTermShellConfig* sh) { + MultiTermTerminal * self = NULL; + GtkVScrollbar* vsb = NULL; + GtkHBox* hbox = NULL; + MultiTermShellConfig* _tmp0_ = NULL; + MultiTermShellConfig* _tmp1_ = NULL; + MultiTermShellConfig* _tmp2_ = NULL; + gchar* _tmp3_ = NULL; + gchar* _tmp4_ = NULL; + gchar* _tmp5_ = NULL; + gchar* _tmp6_ = NULL; + gchar* _tmp7_ = NULL; + gboolean _tmp8_ = FALSE; + VteTerminal* _tmp10_ = NULL; + VteTerminal* _tmp11_ = NULL; + VteTerminal* _tmp12_ = NULL; + VteTerminal* _tmp13_ = NULL; + GtkAdjustment* _tmp14_ = NULL; + GtkVScrollbar* _tmp15_ = NULL; + GtkHBox* _tmp16_ = NULL; + GtkHBox* _tmp17_ = NULL; + VteTerminal* _tmp18_ = NULL; + GtkHBox* _tmp19_ = NULL; + GtkVScrollbar* _tmp20_ = NULL; + GtkHBox* _tmp21_ = NULL; + MultiTermShellConfig* _tmp22_ = NULL; + gboolean _tmp23_ = FALSE; + gboolean _tmp24_ = FALSE; + VteTerminal* _tmp26_ = NULL; + MultiTermShellConfig* _tmp27_ = NULL; + MultiTermConfig* _tmp28_ = NULL; + MultiTermConfig* _tmp29_ = NULL; + VteTerminal* _tmp92_ = NULL; + MultiTermShellConfig* _tmp93_ = NULL; + gchar* _tmp94_ = NULL; + gchar* _tmp95_ = NULL; + gchar* _tmp96_ = NULL; + g_return_val_if_fail (sh != NULL, NULL); + self = (MultiTermTerminal*) g_object_new (object_type, NULL); + _tmp0_ = sh; + _tmp1_ = _multi_term_shell_config_ref0 (_tmp0_); + _multi_term_shell_config_unref0 (self->priv->sh); + self->priv->sh = _tmp1_; + _tmp2_ = self->priv->sh; + _tmp3_ = multi_term_shell_config_get_command (_tmp2_); + _tmp4_ = _tmp3_; + _tmp5_ = _tmp4_; + _tmp6_ = string_strip (_tmp5_); + _tmp7_ = _tmp6_; + _tmp8_ = g_strcmp0 (_tmp7_, "") == 0; + _g_free0 (_tmp7_); + _g_free0 (_tmp5_); + if (_tmp8_) { + MultiTermShellConfig* _tmp9_ = NULL; + _tmp9_ = self->priv->sh; + multi_term_shell_config_set_command (_tmp9_, "sh"); + } + _tmp10_ = (VteTerminal*) vte_terminal_new (); + g_object_ref_sink (_tmp10_); + _g_object_unref0 (self->terminal); + self->terminal = _tmp10_; + _tmp11_ = self->terminal; + gtk_widget_set_size_request ((GtkWidget*) _tmp11_, 100, 100); + _tmp12_ = self->terminal; + gtk_widget_show_all ((GtkWidget*) _tmp12_); + _tmp13_ = self->terminal; + _tmp14_ = vte_terminal_get_adjustment (_tmp13_); + _tmp15_ = (GtkVScrollbar*) gtk_vscrollbar_new (_tmp14_); + g_object_ref_sink (_tmp15_); + _g_object_unref0 (vsb); + vsb = _tmp15_; + _tmp16_ = (GtkHBox*) gtk_hbox_new (FALSE, 0); + g_object_ref_sink (_tmp16_); + _g_object_unref0 (hbox); + hbox = _tmp16_; + _tmp17_ = hbox; + _tmp18_ = self->terminal; + gtk_box_pack_start ((GtkBox*) _tmp17_, (GtkWidget*) _tmp18_, TRUE, TRUE, (guint) 0); + _tmp19_ = hbox; + _tmp20_ = vsb; + gtk_box_pack_start ((GtkBox*) _tmp19_, (GtkWidget*) _tmp20_, FALSE, FALSE, (guint) 0); + _tmp21_ = hbox; + gtk_container_add ((GtkContainer*) self, (GtkWidget*) _tmp21_); + _tmp22_ = self->priv->sh; + _tmp23_ = multi_term_shell_config_get_track_title (_tmp22_); + _tmp24_ = _tmp23_; + if (_tmp24_) { + VteTerminal* _tmp25_ = NULL; + _tmp25_ = self->terminal; + g_signal_connect_object (_tmp25_, "window-title-changed", (GCallback) _multi_term_terminal_on_window_title_changed_vte_terminal_window_title_changed, self, 0); + } + _tmp26_ = self->terminal; + g_signal_connect_object (_tmp26_, "child-exited", (GCallback) _multi_term_terminal_on_child_exited_vte_terminal_child_exited, self, 0); + _tmp27_ = self->priv->sh; + _tmp28_ = multi_term_shell_config_get_cfg (_tmp27_); + _tmp29_ = _tmp28_; + if (_tmp29_ != NULL) { + VteTerminal* _tmp30_ = NULL; + MultiTermShellConfig* _tmp31_ = NULL; + gchar* _tmp32_ = NULL; + gchar* _tmp33_ = NULL; + gchar* _tmp34_ = NULL; + VteTerminal* _tmp35_ = NULL; + MultiTermShellConfig* _tmp36_ = NULL; + gboolean _tmp37_ = FALSE; + gboolean _tmp38_ = FALSE; + VteTerminal* _tmp39_ = NULL; + MultiTermShellConfig* _tmp40_ = NULL; + gboolean _tmp41_ = FALSE; + gboolean _tmp42_ = FALSE; + VteTerminal* _tmp43_ = NULL; + MultiTermShellConfig* _tmp44_ = NULL; + VteTerminalCursorBlinkMode _tmp45_ = 0; + VteTerminalCursorBlinkMode _tmp46_ = 0; + VteTerminal* _tmp47_ = NULL; + MultiTermShellConfig* _tmp48_ = NULL; + VteTerminalCursorShape _tmp49_ = 0; + VteTerminalCursorShape _tmp50_ = 0; + VteTerminal* _tmp51_ = NULL; + MultiTermShellConfig* _tmp52_ = NULL; + VteTerminalEraseBinding _tmp53_ = 0; + VteTerminalEraseBinding _tmp54_ = 0; + VteTerminal* _tmp55_ = NULL; + MultiTermShellConfig* _tmp56_ = NULL; + gboolean _tmp57_ = FALSE; + gboolean _tmp58_ = FALSE; + VteTerminal* _tmp59_ = NULL; + MultiTermShellConfig* _tmp60_ = NULL; + gboolean _tmp61_ = FALSE; + gboolean _tmp62_ = FALSE; + VteTerminal* _tmp63_ = NULL; + MultiTermShellConfig* _tmp64_ = NULL; + gboolean _tmp65_ = FALSE; + gboolean _tmp66_ = FALSE; + VteTerminal* _tmp67_ = NULL; + MultiTermShellConfig* _tmp68_ = NULL; + gint _tmp69_ = 0; + gint _tmp70_ = 0; + VteTerminal* _tmp71_ = NULL; + MultiTermShellConfig* _tmp72_ = NULL; + gboolean _tmp73_ = FALSE; + gboolean _tmp74_ = FALSE; + VteTerminal* _tmp75_ = NULL; + MultiTermShellConfig* _tmp76_ = NULL; + gchar* _tmp77_ = NULL; + gchar* _tmp78_ = NULL; + gchar* _tmp79_ = NULL; + _tmp30_ = self->terminal; + _tmp31_ = self->priv->sh; + _tmp32_ = multi_term_shell_config_get_font (_tmp31_); + _tmp33_ = _tmp32_; + _tmp34_ = _tmp33_; + vte_terminal_set_font_from_string (_tmp30_, _tmp34_); + _g_free0 (_tmp34_); + _tmp35_ = self->terminal; + _tmp36_ = self->priv->sh; + _tmp37_ = multi_term_shell_config_get_allow_bold (_tmp36_); + _tmp38_ = _tmp37_; + vte_terminal_set_allow_bold (_tmp35_, _tmp38_); + _tmp39_ = self->terminal; + _tmp40_ = self->priv->sh; + _tmp41_ = multi_term_shell_config_get_audible_bell (_tmp40_); + _tmp42_ = _tmp41_; + vte_terminal_set_audible_bell (_tmp39_, _tmp42_); + _tmp43_ = self->terminal; + _tmp44_ = self->priv->sh; + _tmp45_ = multi_term_shell_config_get_cursor_blink_mode (_tmp44_); + _tmp46_ = _tmp45_; + vte_terminal_set_cursor_blink_mode (_tmp43_, _tmp46_); + _tmp47_ = self->terminal; + _tmp48_ = self->priv->sh; + _tmp49_ = multi_term_shell_config_get_cursor_shape (_tmp48_); + _tmp50_ = _tmp49_; + vte_terminal_set_cursor_shape (_tmp47_, _tmp50_); + _tmp51_ = self->terminal; + _tmp52_ = self->priv->sh; + _tmp53_ = multi_term_shell_config_get_backspace_binding (_tmp52_); + _tmp54_ = _tmp53_; + vte_terminal_set_backspace_binding (_tmp51_, _tmp54_); + _tmp55_ = self->terminal; + _tmp56_ = self->priv->sh; + _tmp57_ = multi_term_shell_config_get_pointer_autohide (_tmp56_); + _tmp58_ = _tmp57_; + vte_terminal_set_mouse_autohide (_tmp55_, _tmp58_); + _tmp59_ = self->terminal; + _tmp60_ = self->priv->sh; + _tmp61_ = multi_term_shell_config_get_scroll_on_keystroke (_tmp60_); + _tmp62_ = _tmp61_; + vte_terminal_set_scroll_on_keystroke (_tmp59_, _tmp62_); + _tmp63_ = self->terminal; + _tmp64_ = self->priv->sh; + _tmp65_ = multi_term_shell_config_get_scroll_on_output (_tmp64_); + _tmp66_ = _tmp65_; + vte_terminal_set_scroll_on_output (_tmp63_, _tmp66_); + _tmp67_ = self->terminal; + _tmp68_ = self->priv->sh; + _tmp69_ = multi_term_shell_config_get_scrollback_lines (_tmp68_); + _tmp70_ = _tmp69_; + vte_terminal_set_scrollback_lines (_tmp67_, (glong) _tmp70_); + _tmp71_ = self->terminal; + _tmp72_ = self->priv->sh; + _tmp73_ = multi_term_shell_config_get_visible_bell (_tmp72_); + _tmp74_ = _tmp73_; + vte_terminal_set_visible_bell (_tmp71_, _tmp74_); + _tmp75_ = self->terminal; + _tmp76_ = self->priv->sh; + _tmp77_ = multi_term_shell_config_get_word_chars (_tmp76_); + _tmp78_ = _tmp77_; + _tmp79_ = _tmp78_; + vte_terminal_set_word_chars (_tmp75_, _tmp79_); + _g_free0 (_tmp79_); + } else { + VteTerminal* _tmp80_ = NULL; + VteTerminal* _tmp81_ = NULL; + VteTerminal* _tmp82_ = NULL; + VteTerminal* _tmp83_ = NULL; + VteTerminal* _tmp84_ = NULL; + VteTerminal* _tmp85_ = NULL; + VteTerminal* _tmp86_ = NULL; + VteTerminal* _tmp87_ = NULL; + VteTerminal* _tmp88_ = NULL; + VteTerminal* _tmp89_ = NULL; + VteTerminal* _tmp90_ = NULL; + VteTerminal* _tmp91_ = NULL; + _tmp80_ = self->terminal; + vte_terminal_set_font_from_string (_tmp80_, "Monospace 9"); + _tmp81_ = self->terminal; + vte_terminal_set_allow_bold (_tmp81_, TRUE); + _tmp82_ = self->terminal; + vte_terminal_set_audible_bell (_tmp82_, TRUE); + _tmp83_ = self->terminal; + vte_terminal_set_cursor_blink_mode (_tmp83_, VTE_CURSOR_BLINK_SYSTEM); + _tmp84_ = self->terminal; + vte_terminal_set_cursor_shape (_tmp84_, VTE_CURSOR_SHAPE_BLOCK); + _tmp85_ = self->terminal; + vte_terminal_set_backspace_binding (_tmp85_, VTE_ERASE_AUTO); + _tmp86_ = self->terminal; + vte_terminal_set_mouse_autohide (_tmp86_, FALSE); + _tmp87_ = self->terminal; + vte_terminal_set_scroll_on_keystroke (_tmp87_, TRUE); + _tmp88_ = self->terminal; + vte_terminal_set_scroll_on_output (_tmp88_, FALSE); + _tmp89_ = self->terminal; + vte_terminal_set_scrollback_lines (_tmp89_, (glong) 512); + _tmp90_ = self->terminal; + vte_terminal_set_visible_bell (_tmp90_, FALSE); + _tmp91_ = self->terminal; + vte_terminal_set_word_chars (_tmp91_, ""); + } + _tmp92_ = self->terminal; + g_signal_connect_object ((GtkWidget*) _tmp92_, "realize", (GCallback) _multi_term_terminal_on_vte_realize_gtk_widget_realize, self, 0); + _tmp93_ = self->priv->sh; + _tmp94_ = multi_term_shell_config_get_command (_tmp93_); + _tmp95_ = _tmp94_; + _tmp96_ = _tmp95_; + multi_term_terminal_run_command (self, _tmp96_); + _g_free0 (_tmp96_); + _g_object_unref0 (hbox); + _g_object_unref0 (vsb); + return self; +} + + +MultiTermTerminal* multi_term_terminal_new (MultiTermShellConfig* sh) { + return multi_term_terminal_construct (MULTI_TERM_TYPE_TERMINAL, sh); +} + + +static gpointer _g_object_ref0 (gpointer self) { + return self ? g_object_ref (self) : NULL; +} + + +const gchar* multi_term_terminal_get_tab_label_text (MultiTermTerminal* self) { + const gchar* result; + MultiTermTabLabel* label = NULL; + gconstpointer _tmp0_ = NULL; + MultiTermTabLabel* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + const gchar* _tmp3_ = NULL; + g_return_val_if_fail (self != NULL, NULL); + _tmp0_ = g_object_get_data ((GObject*) self, "label"); + _tmp1_ = _g_object_ref0 ((MultiTermTabLabel*) _tmp0_); + label = _tmp1_; + _tmp2_ = multi_term_tab_label_get_text (label); + _tmp3_ = _tmp2_; + result = _tmp3_; + _g_object_unref0 (label); + return result; +} + + +void multi_term_terminal_set_tab_label_text (MultiTermTerminal* self, const gchar* value) { + MultiTermTabLabel* label = NULL; + gconstpointer _tmp0_ = NULL; + MultiTermTabLabel* _tmp1_ = NULL; + const gchar* _tmp2_ = NULL; + g_return_if_fail (self != NULL); + _tmp0_ = g_object_get_data ((GObject*) self, "label"); + _tmp1_ = _g_object_ref0 ((MultiTermTabLabel*) _tmp0_); + label = _tmp1_; + _tmp2_ = value; + multi_term_tab_label_set_text (label, _tmp2_); + _g_object_unref0 (label); + g_object_notify ((GObject *) self, "tab-label-text"); +} + + +void multi_term_terminal_set_background_color (MultiTermTerminal* self, const gchar* value) { + GdkColor color = {0}; + GdkColormap* _tmp0_ = NULL; + GdkColor _tmp1_ = {0}; + const gchar* _tmp2_ = NULL; + GdkColor _tmp3_ = {0}; + VteTerminal* _tmp4_ = NULL; + GdkColor _tmp5_ = {0}; + g_return_if_fail (self != NULL); + memset (&color, 0, sizeof (GdkColor)); + _tmp0_ = gdk_colormap_get_system (); + _tmp1_ = color; + gdk_colormap_alloc_color (_tmp0_, &_tmp1_, TRUE, TRUE); + _tmp2_ = value; + gdk_color_parse (_tmp2_, &_tmp3_); + color = _tmp3_; + _tmp4_ = self->terminal; + _tmp5_ = color; + vte_terminal_set_color_background (_tmp4_, &_tmp5_); + g_object_notify ((GObject *) self, "background-color"); +} + + +void multi_term_terminal_set_foreground_color (MultiTermTerminal* self, const gchar* value) { + GdkColor color = {0}; + GdkColormap* _tmp0_ = NULL; + GdkColor _tmp1_ = {0}; + const gchar* _tmp2_ = NULL; + GdkColor _tmp3_ = {0}; + VteTerminal* _tmp4_ = NULL; + GdkColor _tmp5_ = {0}; + g_return_if_fail (self != NULL); + memset (&color, 0, sizeof (GdkColor)); + _tmp0_ = gdk_colormap_get_system (); + _tmp1_ = color; + gdk_colormap_alloc_color (_tmp0_, &_tmp1_, TRUE, TRUE); + _tmp2_ = value; + gdk_color_parse (_tmp2_, &_tmp3_); + color = _tmp3_; + _tmp4_ = self->terminal; + _tmp5_ = color; + vte_terminal_set_color_foreground (_tmp4_, &_tmp5_); + g_object_notify ((GObject *) self, "foreground-color"); +} + + +static void g_cclosure_user_marshal_BOOLEAN__POINTER (GClosure * closure, GValue * return_value, guint n_param_values, const GValue * param_values, gpointer invocation_hint, gpointer marshal_data) { + typedef gboolean (*GMarshalFunc_BOOLEAN__POINTER) (gpointer data1, gpointer arg_1, gpointer data2); + register GMarshalFunc_BOOLEAN__POINTER callback; + register GCClosure * cc; + register gpointer data1; + register gpointer data2; + gboolean v_return; + cc = (GCClosure *) closure; + g_return_if_fail (return_value != NULL); + g_return_if_fail (n_param_values == 2); + if (G_CCLOSURE_SWAP_DATA (closure)) { + data1 = closure->data; + data2 = param_values->data[0].v_pointer; + } else { + data1 = param_values->data[0].v_pointer; + data2 = closure->data; + } + callback = (GMarshalFunc_BOOLEAN__POINTER) (marshal_data ? marshal_data : cc->callback); + v_return = callback (data1, g_value_get_pointer (param_values + 1), data2); + g_value_set_boolean (return_value, v_return); +} + + +static void multi_term_terminal_class_init (MultiTermTerminalClass * klass) { + multi_term_terminal_parent_class = g_type_class_peek_parent (klass); + g_type_class_add_private (klass, sizeof (MultiTermTerminalPrivate)); + G_OBJECT_CLASS (klass)->get_property = _vala_multi_term_terminal_get_property; + G_OBJECT_CLASS (klass)->set_property = _vala_multi_term_terminal_set_property; + G_OBJECT_CLASS (klass)->finalize = multi_term_terminal_finalize; + g_object_class_install_property (G_OBJECT_CLASS (klass), MULTI_TERM_TERMINAL_TAB_LABEL_TEXT, g_param_spec_string ("tab-label-text", "tab-label-text", "tab-label-text", NULL, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_READABLE | G_PARAM_WRITABLE)); + g_object_class_install_property (G_OBJECT_CLASS (klass), MULTI_TERM_TERMINAL_BACKGROUND_COLOR, g_param_spec_string ("background-color", "background-color", "background-color", NULL, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_WRITABLE)); + g_object_class_install_property (G_OBJECT_CLASS (klass), MULTI_TERM_TERMINAL_FOREGROUND_COLOR, g_param_spec_string ("foreground-color", "foreground-color", "foreground-color", NULL, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_WRITABLE)); + g_signal_new ("right_click_event", MULTI_TERM_TYPE_TERMINAL, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_user_marshal_BOOLEAN__POINTER, G_TYPE_BOOLEAN, 1, G_TYPE_POINTER); +} + + +static void multi_term_terminal_instance_init (MultiTermTerminal * self) { + self->priv = MULTI_TERM_TERMINAL_GET_PRIVATE (self); +} + + +static void multi_term_terminal_finalize (GObject* obj) { + MultiTermTerminal * self; + self = G_TYPE_CHECK_INSTANCE_CAST (obj, MULTI_TERM_TYPE_TERMINAL, MultiTermTerminal); + _g_object_unref0 (self->terminal); + _multi_term_shell_config_unref0 (self->priv->sh); + G_OBJECT_CLASS (multi_term_terminal_parent_class)->finalize (obj); +} + + +GType multi_term_terminal_get_type (void) { + static volatile gsize multi_term_terminal_type_id__volatile = 0; + if (g_once_init_enter (&multi_term_terminal_type_id__volatile)) { + static const GTypeInfo g_define_type_info = { sizeof (MultiTermTerminalClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) multi_term_terminal_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (MultiTermTerminal), 0, (GInstanceInitFunc) multi_term_terminal_instance_init, NULL }; + GType multi_term_terminal_type_id; + multi_term_terminal_type_id = g_type_register_static (GTK_TYPE_FRAME, "MultiTermTerminal", &g_define_type_info, 0); + g_once_init_leave (&multi_term_terminal_type_id__volatile, multi_term_terminal_type_id); + } + return multi_term_terminal_type_id__volatile; +} + + +static void _vala_multi_term_terminal_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) { + MultiTermTerminal * self; + self = G_TYPE_CHECK_INSTANCE_CAST (object, MULTI_TERM_TYPE_TERMINAL, MultiTermTerminal); + switch (property_id) { + case MULTI_TERM_TERMINAL_TAB_LABEL_TEXT: + g_value_set_string (value, multi_term_terminal_get_tab_label_text (self)); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + + +static void _vala_multi_term_terminal_set_property (GObject * object, guint property_id, const GValue * value, GParamSpec * pspec) { + MultiTermTerminal * self; + self = G_TYPE_CHECK_INSTANCE_CAST (object, MULTI_TERM_TYPE_TERMINAL, MultiTermTerminal); + switch (property_id) { + case MULTI_TERM_TERMINAL_TAB_LABEL_TEXT: + multi_term_terminal_set_tab_label_text (self, g_value_get_string (value)); + break; + case MULTI_TERM_TERMINAL_BACKGROUND_COLOR: + multi_term_terminal_set_background_color (self, g_value_get_string (value)); + break; + case MULTI_TERM_TERMINAL_FOREGROUND_COLOR: + multi_term_terminal_set_foreground_color (self, g_value_get_string (value)); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + + +static void _vala_array_destroy (gpointer array, gint array_length, GDestroyNotify destroy_func) { + if ((array != NULL) && (destroy_func != NULL)) { + int i; + for (i = 0; i < array_length; i = i + 1) { + if (((gpointer*) array)[i] != NULL) { + destroy_func (((gpointer*) array)[i]); + } + } + } +} + + +static void _vala_array_free (gpointer array, gint array_length, GDestroyNotify destroy_func) { + _vala_array_destroy (array, array_length, destroy_func); + g_free (array); +} + + + diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/vapi/geany.deps geany-plugins-1.24.1+dfsg/multiterm/src/vapi/geany.deps --- geany-plugins-1.24.0+20140222+git/multiterm/src/vapi/geany.deps 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/vapi/geany.deps 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -gtk+-2.0 -gdk-2.0 diff -Nru geany-plugins-1.24.0+20140222+git/multiterm/src/vapi/geany.vapi geany-plugins-1.24.1+dfsg/multiterm/src/vapi/geany.vapi --- geany-plugins-1.24.0+20140222+git/multiterm/src/vapi/geany.vapi 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/multiterm/src/vapi/geany.vapi 1970-01-01 00:00:00.000000000 +0000 @@ -1,2157 +0,0 @@ -/* - * geany.vapi - This file comes from the Geany Vala Binding project - * - * Copyright 2010-2012 Colomban Wendling - * Copyright 2012 Matthew Brush - * - * 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -[CCode (cheader_filename = "geanyplugin.h")] -namespace Geany { - /* reviewed */ - [Compact] - [CCode (cname = "GeanyApp")] - public class Application { - public bool debug_mode; - [CCode (cname = "configdir")] - public string config_dir; - [CCode (cname = "datadir")] - public string data_dir; - [CCode (cname = "docdir")] - public string doc_dir; - public unowned TagManager.Workspace tm_workspace; - public Project? project; - } - /* reviewed */ - [Compact] - public class InterfacePrefs { - public bool sidebar_symbol_visible; - public bool sidebar_openfiles_visible; - public string editor_font; - public string tagbar_font; - public string msgwin_font; - public bool show_notebook_tabs; - public int tab_pos_editor; - public int tab_pos_msgwin; - public int tab_pos_sidebar; - public bool statusbar_visible; - public bool show_symbol_list_expanders; - public bool notebook_double_click_hides_widgets; - public bool highlighting_invert_all; - public int sidebar_pos; - public bool msgwin_status_visible; - public bool msgwin_compiler_visible; - public bool msgwin_messages_visible; - public bool msgwin_scribble_visible; - public bool use_native_windows_dialogs; /* only used on Windows */ - public bool compiler_tab_autoscroll; - } - /* reviewed */ - /** - * Indentation prefs that might be different according to the - * {@link Project} or {@link Document}. - * - * Use {@link Editor.indent_prefs} to get the prefs for a - * particular document. - **/ - [Compact] - public class IndentPrefs { - /** - * The indentation with, in character size. - * - * This is not necessarily the number of character used for indentation - * if e.g. indentation uses tabs or tabs+space. - */ - public int width { - [CCode (cname = "geany_vala_pluing_indent_prefs_get_width")] - get { return _width; } - } - [CCode (cname = "width")] int _width; - /** - * The indentation type (spaces, tabs or both). - */ - public IndentType type { - [CCode (cname = "geany_vala_pluing_indent_prefs_get_type")] - get { return _type; } - } - [CCode (cname = "type")] IndentType _type; - /** - * The natural width of a tab, used when {@link type} is - * {@link IndentType.BOTH}. - * - * @see Sci.get_tab_width - */ - public int hard_tab_width { - [CCode (cname = "geany_vala_pluing_indent_prefs_get_hard_tab_width")] - get { return _hard_tab_width; } - } - [CCode (cname = "hard_tab_width")] int _hard_tab_width; - /** - * Mode of auto-indentation - */ - public AutoIndent auto_indent_mode { - [CCode (cname = "geany_vala_pluing_indent_prefs_get_auto_indent_mode")] - get { return _auto_indent_mode; } - } - [CCode (cname = "auto_indent_mode")] AutoIndent _auto_indent_mode; - /** - * Whether to try to detect automatically or not the indentation type - */ - public bool detect_type { - [CCode (cname = "geany_vala_pluing_indent_prefs_get_detect_type")] - get { return _detect_type; } - } - [CCode (cname = "detect_type")] bool _detect_type; - - /** - * Gets the default indentation prefs. - * - * Prefs can be different according to the {@link Project} or - * {@link Document}. - * - * ''Warning:'' Always get a fresh result instead of keeping a - * reference around if the editor/project settings may have changed, - * or if this function has been called for a different editor. - * - * If you have an editor and want to get its indent prefs, use - * {@link Editor.indent_prefs}. - * - * @param editor Don't use this parameter - * @return The default indentation preferences - * - * @see Editor.indent_prefs - */ - [CCode (cname = "editor_get_indent_prefs")] - public static unowned IndentPrefs get_default (Editor? editor = null); - } - /* reviewed */ - [Compact] - public class EditorPrefs { - public IndentPrefs indentation; - public bool show_white_space; - public bool show_indent_guide; - public bool show_line_endings; - public int long_line_type; - public int long_line_column; - public string long_line_color; - public bool show_markers_margin; /* view menu */ - public bool show_linenumber_margin; /* view menu */ - public bool show_scrollbars; /* hidden pref */ - public bool scroll_stop_at_last_line; - public bool line_wrapping; - public bool use_indicators; - public bool folding; - public bool unfold_all_children; - public bool disable_dnd; - public bool use_tab_to_indent; /* makes tab key indent instead of insert a tab char */ - public bool smart_home_key; - public bool newline_strip; - public bool auto_complete_symbols; - public bool auto_close_xml_tags; - public bool complete_snippets; - public int symbolcompletion_min_chars; - public int symbolcompletion_max_height; - public bool brace_match_ltgt; /* whether to highlight < and > chars (hidden pref) */ - public bool use_gtk_word_boundaries; /* hidden pref */ - public bool complete_snippets_whilst_editing; /* hidden pref */ - public int line_break_column; - public bool auto_continue_multiline; - public string comment_toggle_mark; - public uint autocompletion_max_entries; - public uint autoclose_chars; - public bool autocomplete_doc_words; - public bool completion_drops_rest_of_word; - public string color_scheme; - public int show_virtual_space; - public bool long_line_enabled; - - /** - * Gets the default End of Line character (LF, CR/LF, CR), one of "\n", - * "\r\n" or "\r". - * - * If you have an editor and want to know it's EOL character, use - * {@link Editor.eol_char}. - * - * @param editor Don't use this parameter - * @return The default EOL character - * - * @see Editor.eol_char - */ - [CCode (cname = "editor_get_eol_char")] - public static unowned string get_default_eol_char (Editor? editor = null); - - /** - * Gets the default end of line characters mode. - * - * If you have an editor and want to know it's EOL mode, use - * {@link Editor.eol_char_mode}. - * - * @param editor Don't use this parameter - * @return The default EOL mode - * - * @see Editor.eol_char_mode - */ - [CCode (cname = "editor_get_eol_char_mode")] - public static Scintilla.EolMode get_default_eol_char_mode (Editor? editor = null); - - /** - * Gets the localized name (for displaying) of the default End of Line - * characters (LF, CR/LF, CR). - * - * If you have an editor and want to know it's EOL char name, use - * {@link Editor.eol_char_name}. - * - * @param editor Don't use this parameter - * @return The default EOL character's name - * - * @see Editor.eol_char_name - */ - [CCode (cname = "editor_get_eol_char_name")] - public static unowned string get_default_eol_char_name (Editor? editor = null); - } - /* reviewed */ - [Compact] - public class ToolbarPrefs { - public bool visible; - public Gtk.IconSize icon_size; - public Gtk.ToolbarStyle icon_style; - public bool use_gtk_default_style; - public bool use_gtk_default_icon; - public bool append_to_menu; - } - /* reviewed */ - [Compact] - public class Prefs { - public bool load_session; - public bool load_plugins; - public bool save_winpos; - public bool confirm_exit; - public bool beep_on_errors; /* use utils_beep() instead */ - public bool suppress_status_messages; - public bool switch_to_status; - public bool auto_focus; - public string default_open_path; - public string custom_plugin_path; - } - /* reviewed */ - [Compact] - public class ToolPrefs { - public string browser_cmd; - public string term_cmd; - public string grep_cmd; - public string context_action_cmd; - } - /* reviewed */ - [CCode (cname = "GeanyFindSelOptions", cprefix = "GEANY_FIND_SEL_", has_type_id = false)] - public enum FindSelectionType { - CURRENT_WORD, - SEL_X, - AGAIN - } - /* reviewed */ - [Compact] - public class SearchPrefs { - public bool suppress_dialogs; - public bool use_current_word; - public bool use_current_file_dir; - public FindSelectionType find_selection_type; - } - /* reviewed - * FIXME: are (some of) these nullable? */ - [Compact] - public class TemplatePrefs { - public string developer; - public string company; - public string mail; - public string initials; - public string version; - public string year_format; - public string date_format; - public string datetime_format; - } - /* reviewed */ - [Compact] - public class FilePrefs { - public int default_new_encoding; - public int default_open_encoding; - public bool final_new_line; - public bool strip_trailing_spaces; - public bool replace_tabs; - public bool tab_order_ltr; - public bool tab_order_beside; - public bool show_tab_cross; - public uint mru_length; - public int default_eol_character; - public int disk_check_timeout; - public bool cmdline_new_files; - public bool use_safe_file_saving; - public bool ensure_convert_new_lines; - public bool gio_unsafe_save_backup; - } - /* reviewed */ - [CCode (cprefix = "GEANY_GBG_", has_type_id = false)] - public enum BuildGroup { - FT, /* *< filetype items */ - NON_FT, /* *< non filetype items.*/ - EXEC, /* *< execute items */ - COUNT /* *< count of groups. */ - } - /* reviewed */ - [Compact] - public class BuildInfo { - [CCode (cname = "grp")] - BuildGroup group; - [CCode (cname = "cmd")] - int command; - GLib.Pid pid; /* id of the spawned process */ - string dir; - uint file_type_id; - string custom_target; - int message_count; - } - /* reviewed */ - [Compact] - public class Data { - public Application app; - public MainWidgets main_widgets; - public GLib.PtrArray documents_array; - public GLib.PtrArray filetypes_array; - public Prefs prefs; - public InterfacePrefs interface_prefs; - public ToolbarPrefs toolbar_prefs; - public EditorPrefs editor_prefs; - public FilePrefs file_prefs; - public SearchPrefs search_prefs; - public ToolPrefs tool_prefs; - public TemplatePrefs template_prefs; - public BuildInfo build_info; - public GLib.SList filetypes_by_title; - } - /* reviewed */ - [CCode (cprefix = "dialogs_")] - namespace Dialogs { - public string? show_input (string title, Gtk.Window parent, - string? label_text = null, string? default_text = null); - public bool show_input_numeric (string title, string label_text, - ref double value, double min, double max, double step); - [PrintfFormat] - public void show_msgbox (Gtk.MessageType type, string text, ...); - [PrintfFormat] - public bool show_question (string text, ...); - public bool show_save_as (); - } - /* reviewed */ - [Compact] - [CCode (cname = "struct GeanyDocument", - cprefix = "document_", - free_function = "document_close")] - public class Document { - /* Private methods used to implement properties */ - - private void set_encoding (string new_encoding); - private void set_filetype (Filetype type); - private void set_text_changed (bool changed); - private bool save_file_as (string? utf8_fname = null); - - /* Document Properties */ - - /** - * Gets whether the document has changed since it was last saved. - */ - public bool has_changed { - [CCode (cname = "geany_vala_plugin_document_get_has_changed")] - get { return _has_changed; } - [CCode (cname = "geany_vala_plugin_document_set_has_changed")] - set { set_text_changed (value); } - } - [CCode (cname = "changed")] bool _has_changed; - - /** - * Gets the {@link Editor} associated with the document. - */ - public Editor editor { - [CCode (cname = "geany_vala_plugin_document_get_editor")] - get { return _editor; } - } - [CCode (cname = "editor")] Editor _editor; - - /** - * Gets/sets the encoding of the document. - * - * This must be a valid string representation of an encoding, which - * can be retrieved with the {@link Encoding.get_charset_from_index} - * function. - */ - public string encoding { - [CCode (cname = "geany_vala_plugin_document_get_encoding")] - get { return _encoding; } - [CCode (cname = "geany_vala_plugin_document_set_encoding")] - set { set_encoding (value); } - } - [CCode (cname = "encoding")] string _encoding; - - /** - * Gets the document's file name or a string representing an unsaved - * document, for example 'untitled'. - */ - /* FIXME: I'm not really sure of the name of this property */ - public string safe_file_name { - [CCode (cname = "DOC_FILENAME")] get; - } - - /** - * Gets/sets this document's UTF-8 encoded filename. - * - * Setting this property has the same effect as using the - * {@link save_as} method. - */ - public string? file_name { - [CCode (cname = "geany_vala_plugin_document_get_file_name")] - get { return _file_name; } - } - [CCode (cname = "file_name")] string? _file_name; - - /** - * Gets/sets the filetype for this document, which controls syntax - * highlighting and tags. - */ - public Filetype file_type { - [CCode (cname = "geany_vala_plugin_document_get_file_type")] - get { return _file_type; } - [CCode (cname = "geany_vala_plugin_document_set_file_type")] - set { set_filetype (value); } - } - [CCode (cname = "file_type")] Filetype _file_type; - - /** - * Gets whether the file for this document has a Byte Order Mark. - */ - public bool has_bom { - [CCode (cname = "geany_vala_plugin_document_get_has_bom")] - get { return _has_bom; } - } - [CCode (cname = "has_bom")] bool _has_bom; - - /** - * Gets whether this document supports source code symbols (tags). - * - * Tags will show in the sidebar and will be used for auto-completion - * and calltips. - */ - public bool has_tags { - [CCode (cname = "geany_vala_plugin_document_get_has_tags")] - get { return _has_tags; } - } - [CCode (cname = "has_tags")] bool _has_tags; - - /** - * Gets the document's index in the documents array. - */ - /* Not sure why indes is signed in Geany's side, it is always >= 0 and - * represents a array index. However, it would need to change this - * get_from_index() too, so wrap it... */ - public int index { - [CCode (cname = "geany_vala_plugin_document_get_index")] - get { return _index; } - } - [CCode (cname = "index")] int _index; - - /** - * Gets whether the document is active and all properties are set - * correctly. - */ - public bool is_valid { [CCode (cname = "DOC_VALID")] get; } - - /** - * Gets/sets whether this document is read-only. - */ - public bool is_read_only { - [CCode (cname = "geany_vala_plugin_document_get_is_read_only")] - get { return _is_read_only; } - } - [CCode (cname = "readonly")] bool _is_read_only; - - - /** - * Gets the link-dereferenced, local-encoded file name for this - * {@link Document}. - * - * The value can be null if the document is not saved to disk yet - * (has no file). - */ - public string? real_path { - [CCode (cname = "geany_vala_plugin_document_get_real_path")] - get { return _real_path; } - } - [CCode (cname = "real_path")] string? _real_path; - - /** - * Gets the {@link TagManager.WorkObject} used for this document. - * - * The value can be null if there is no tag manager used for this - * document. - */ - public TagManager.WorkObject? tm_file { /* needs better name? */ - [CCode (cname = "geany_vala_plugin_document_get_tm_file")] - get { return _tm_file; } - } - [CCode (cname = "tm_file")] TagManager.WorkObject? _tm_file; - - /** - * Gets the {@link Gtk.Notebook} page index for this document. - */ - public int notebook_page { /* should cast to uint? */ - [CCode (cname = "document_get_notebook_page")] get; - } - - /** - * Gets the status color of the document or null if the default - * widget coloring should be used. - */ - public unowned Gdk.Color? status_color { - [CCode (cname = "document_get_status_color")] get; - } - - /* Document Methods */ - - /** - * Gets the last part of the filename for this document, ellipsized - * (shortened) to the desired //length// or a default value if - * //length// is -1. - * - * @param length The number of characters to ellipsize the basename to. - * - * @return The displayable basename for this document's file. - */ - [CCode (cname = "document_get_basename_for_display")] - public string get_display_basename (int length = -1); - - /** - * Opens each file in the list //filenames// using the specified - * settings. - * - * @param filenames A list of filenames to load, in locale encoding. - * @param readonly Whether to open the document in read-only mode. - * @param ft The filetype for the document or null to - * automatically detect the filetypes. - * @param forced_enc The file encoding to use or null to - * automatically detect the file encoding. - */ - public static void open_files (GLib.SList filenames, - bool readonly = false, - Filetype? ft = null, - string? forced_enc = null); - - /** - * Reloads the document's file using the specified //forced_enc// - * encoding. - * - * @param forced_enc The file encoding to reload with or null to - * detect the encoding automatically. - * - * @return true if the document was reloaded successfully, otherwise - * false is returned. - */ - [CCode (cname = "document_reload_file")] - public bool reload (string? forced_enc = null); - - /** - * Renames this documents file to //new_filename//. - * - * Only the file on disk is actually renamed, you still have to call - * {@link save_as} to update this document. This function also stops - * monitoring for file changes to prevent receiving too many file - * change events while renaming. File monitoring is setup again in - * {@link save_as}. - * - * @param new_filename The new filename in UTF-8 encoding. - * - * @see save_as - */ - [CCode (cname = "document_rename_file")] - public void rename (string new_filename); - - /** - * Saves this document to file. - * - * Saving may include replacing tab with spaces, stripping trailing - * spaces and adding a final newline at the end of the file, depending - * on user preferences. Next, the "document-before-save" signal is - * emitted, allowing plugins to modify the document before it is saved, - * and data is actually written to disk. The filetype is set again or - * auto-detected if it hasn't been set yet. After this, the - * "document-save" signal is emitted for plugins. - * - * If the file has not been modified, this functions does nothing - * unless //force// is set to true. - * - * You should ensure {@link file_name} is not null before calling - * this, otherwise you should call {@link Dialogs.show_save_as}. - * - * @param force Whether to save the file even if it is not modified. - * - * @return true if the file was saved or false if the file could not - * or should not be saved. - * - * @see Dialogs.show_save_as - */ - [CCode (cname = "document_save_file")] - public bool save (bool force = false); - - /** - * Saves the document, detecting filetype. - * - * @param utf8_fname The new name for the document, in UTF-8 - * encoding or null. - * - * @return true if the file was saved or false if the file could - * not be saved. - */ - [CCode (cname = "document_save_file_as")] - public bool save_as (string? utf8_fname = null); /* what does null do? */ - - /* Document Construction, Retrieval and Destruction Methods */ - - /** - * Creates a new document. - * - * Line endings in //text// will be converted to the default setting. - * Afterwards, the "document-new" signal is emitted for plugins. - * - * @param utf8_filename The file name in UTF-8 encoding or null to - * open a file as "untitled". - * @param ft Filetype to set or null to detect it from - * //utf8_filename// if not null. - * @param text The initial content of the file (in UTF-8 - * encoding) or null. - * - * @return A new {@link Document}. - */ - [CCode (cname = "document_new_file")] - public static unowned Document? @new (string? utf8_filename = null, - Filetype? ft = null, - string? text = null); - - /** - * Closes this document. - * - * @return true if the document was actually removed or false otherwise. - */ - public bool close (); - - /** - * Removes the given {@link Gtk.Notebook} tab page at //page_num// - * and clears all related information in the documents list. - * - * @param page_num The {@link Gtk.Notebook} tab page number to remove. - * - * @return true if the document was actually removed or false otherwise. - */ - [CCode (cname = "document_remove_page")] - public static bool close_notebook_page (uint page_num); - - /** - * Finds a document with the given filename. - * - * This matches either the exact //utf8_filename// or variant - * filenames with relative elements in the path, eg. '/dir/../\/name' - * will match '/name'. - * - * @param utf8_filename The UTF-8 encoded filename to search for. - * - * @return The matching {@link Document} or null if no document matched. - */ - /* FIXME: double forward slash in valadoc comment. */ - public static unowned Document? find_by_filename (string utf8_filename); - - /** - * Finds a document whose //real_name// matches the given filename. - * - * @param real_name The filename to search, which should be identical - * to the string returned by - * {@link TagManager.get_real_path}. - * - * @return The matching {@link Document} or null if no document matched. - */ - public static unowned Document? find_by_real_path (string real_name); - - /** - * Finds the current document. - * - * @return The current {@link Document} or null if there are no opened - * documents. - */ - public static unowned Document? get_current (); - - /** - * Finds the document for the given notebook page number - * //page_num//. - * - * @param page_num The notebook page number to search. - * - * @return The corresponding document for the given notebook page - * or null if there was no document at //page_num//. - */ - [CCode (cname = "document_get_from_page")] - public static unowned Document? get_from_notebook_page (uint page_num); - - /** - * Gets the document from the documents array with //index//. - * - * Always check the returned document is valid. - * - * @param index Documents array index. - * - * @return The document with //index// or null if //index// is - * out of range. - */ - [CCode (cname = "document_index")] - public static unowned Document? get_from_index (int index); - - /** - * Opens a new document specified by //locale_filename//. - * - * Afterwards, the "document-open" signals is emitted for plugins. - * - * @param locale_filename The filename of the document to load, in - * locale encoding. - * @param read_only Whether to open the document in read-only - * mode. - * @param ft The filetype for the document or null to - * auto-detect the filetype. - * @param forced_enc The file encoding to use or null to - * auto-detect the file encoding. - * - * @return The opened document or null. - */ - [CCode (cname = "document_open_file")] - public static unowned Document? open (string locale_filename, - bool readonly = false, - Filetype? ft = null, - string? forced_enc = null); - } - /* reviewed */ - [CCode (cname = "documents", array_length_cexpr = "GEANY(documents_array)->len")] - public static unowned Document[] documents; - /* reviewed */ - [CCode (cprefix = "GEANY_INDICATOR_", has_type_id = false)] - public enum Indicator { - ERROR, - SEARCH - } - namespace Snippets { - /** - * Gets a snippet by name. - * - * If //editor// is not null, returns a snippet specific to the - * document filetype. If //editor// is null, returns a snippet from - * the default set. - * - * @param editor {@link Editor} or null. - * @param snippet Name of snippet to get. - * - * @return Snippet or null if it was not found. - * - * @see Editor.find_snippet - */ - [CCode (cname = "editor_find_snippet")] - public unowned string? find (Editor? editor, string snippet_name); - } - /* reviewed */ - [Compact] - [CCode (cname = "struct GeanyEditor", cprefix = "editor_")] - public class Editor { - /* Private methods used to implement properties */ - - private void set_indent_type (IndentType ind_type); - - [CCode (cname = "GEANY_WORDCHARS")] - public static const string WORD_CHARS; - - /* Editor Properties */ - - /** - * true if auto-indentation is enabled false otherwise. - */ - public bool auto_indent { - [CCode (cname = "geany_vala_plugin_editor_get_auto_indent")] - get { return _auto_indent; } - } - [CCode (cname = "auto_indent")] bool _auto_indent; - - /** - * The {@link Document} associated with the editor. - * - * @see Document - */ - public Document document { - [CCode (cname = "geany_vala_plugin_editor_get_document")] - get { return _document; } - } - [CCode (cname = "document")] Document _document; - - /** - * The width for the indentation, in characters. This is not - * necessarily the number of character used for indentation if e.g. - * indentation uses tabs or tabs+space. - */ - public int indent_width { - [CCode (cname = "geany_vala_plugin_editor_get_indent_width")] - get { return this.indent_prefs.width; } - } - - /** - * Whether long lines are split as you type or not. - */ - public bool line_breaking { - [CCode (cname = "geany_vala_plugin_editor_get_line_breaking")] - get { return _line_breaking; } - } - [CCode (cname = "line_breaking")] bool _line_breaking; - - /** - * true if line wrapping is enabled. - */ - public bool line_wrapping { - [CCode (cname = "geany_vala_plugin_editor_get_line_wrapping")] - get { return _line_wrapping; } - } - [CCode (cname = "line_wrapping")] bool _line_wrapping; - - /** - * The {@link Sci} [[http://www.scintilla.org/|Scintilla]] editor widget - * associated with this editor. - * - * @see Sci - */ - public Sci scintilla { - [CCode (cname = "geany_vala_plugin_editor_get_scintilla")] - get { return _scintilla; } - } - [CCode (cname = "sci")] Sci _scintilla; - - /** - * The percentage to scroll view by when painting, if positive. - */ - public float scroll_percent { - [CCode (cname = "geany_vala_plugin_editor_get_scroll_percent")] - get { return _scroll_percent; } - } - [CCode (cname = "scroll_percent")] float _scroll_percent; - - /** - * Gets the used End of Line characters (LF, CR/LF, CR) in this - * {@link Editor}. The value will be one of "\n", "\r\n" or "\r". - * - * @see EditorPrefs.get_default_eol_char - */ - public unowned string eol_char { - [CCode (cname = "editor_get_eol_char")] get; - } - - /** - * Gets the end of line characters mode in this {@link Editor}. - * - * @see EditorPrefs.get_default_eol_char_mode - * @see Scintilla.EolMode - */ - public Scintilla.EolMode eol_char_mode { - [CCode (cname = "editor_get_eol_char_mode")] get; - } - - /** - * Retrieves the localized name (for displaying) of the used End of - * Line characters (LF, CR/LF, CR) in this {@link Editor}. - * - * @see EditorPrefs.get_default_eol_char_name - */ - public unowned string eol_char_name { - [CCode (cname = "editor_get_eol_char_name")] get; - } - - /** - * Gets the indentation prefs for this {@link Editor}. - * - * Prefs can be different according to the {@link Project} or - * {@link Document}. - * - * ''Warning:'' Always get a fresh result instead of keeping a - * reference around if the editor/project settings may have changed, - * or if this function has been called for a different editor. - * - * @see IndentPrefs.get_default - */ - public unowned IndentPrefs indent_prefs { - [CCode (cname = "editor_get_indent_prefs")] get; - } - - /** - * The indent type for the editor. - */ - public IndentType indent_type { - [CCode (cname = "geany_vala_plugin_editor_get_indent_type")] - get { return this.indent_prefs.type; } - [CCode (cname = "geany_vala_plugin_editor_set_indent_type")] - set { set_indent_type (value); } - } - - /* Editor Methods */ - - /** - * Gets a snippet by name for the language used by this {@link Editor}. - * - * @param snippet Name of snippet to get. - * - * @return Snippet or null if it was not found. - * - * @see Snippets.find - */ - public unowned string? find_snippet (string snippet_name); - - /** - * Finds the word at the position specified by //pos//. - * - * Additional //wordschars// can be specified to define what to - * consider a word. - * - * @param pos The {@link Editor} to operate on. - * @param wordchars The characters that separate words, meaning all - * characters to count as part of a word. If this - * is null, the default {@link WORD_CHARS} are used. - * - * @return A string containing the word at the given position or null. - */ - /* pos should be unsigned? */ - public string? get_word_at_pos (int pos, string? wordchars = null); - - /** - * Moves the position to //pos//, switching to the document if - * necessary, setting a marker if //mark// is true. - * - * @param pos The position to go to. - * @param mark Whether to set a mark on the position or not. - * - * @return true if the action has been performed, false otherwise. - */ - /* pos should be unsigned? */ - public bool goto_pos (int pos, bool mark = false); - - /** - * Deletes all currently set indicators matching //indic// in this - * {@link Editor}'s window. - * - * @param indic The {@link Indicator} to clear. - */ - public void indicator_clear (Indicator indic); - - /** - * Sets an indictor //indic// on //line//. - * - * Whitespace at the start and end of the line is not marked. - * - * @param indic The {@link Indicator} to use. - * @param line The line number which should be marked. - * - * @see indicator_set_on_range - */ - /* line should be unsigned? */ - public void indicator_set_on_line (Indicator indic, int line); - - /** - * Sets an indicator on the range specified by //start// and //end//. - * - * No error checking or whitespace removal is performed, this should - * be done by the caller if necessary. - * - * @param indic The @{link Indicator} to use. - * @param start The starting position for the marker. - * @param end The ending position for the marker. - * - * @see indicator_set_on_line - */ - public void indicator_set_on_range (Indicator indic, int start, int end); - - /** - * Replaces all special sequences in //snippet// and inserts it at - * //pos//. - * - * If you insert at the current position, consider calling - * {@link Sci.scroll_caret} after this method. - * - * @param pos The position to insert the snippet at. - * @param snippet The snippet to use. - */ - /* pos should be unsigned? */ - public void insert_snippet (int pos, string snippet); - - /** - * Inserts text, replacing //\t// characters (0x9) and //\n// - * characters accordingly for the document. - * - * * Leading tabs are replaced with the correct indentation. - * * Non-leading tabs are replaced with spaces (except when using - * 'Tabs' indent type. - * * Newline chars are replaced with the correct line ending string. - * This is very useful for inserting code without having to handle - * the indent type yourself (Tabs & Spaces mode can be tricky). - * - * ''Warning:'' Make sure all //\t// tab chars in //text// are indented - * as indent widths or alignment, not hard tabs, as those won't be - * preserved. - * - * ''Note:'' This method doesn't scroll the cursor into view afterwards. - * - * @param text Text to insert indented for example as - * 'if (foo)\n\tbar();'. - * @param insert_pos Position to insert text at. - * @param cursor_index If >= 0, the index into //text// to place - * the cursor at. - * @param newline_indent_size Indentation size (in characters) to - * insert for each newline. Use -1 to read - * the indent size from the line with - * //insert_pos// on it. - * @param replace_newlines Whether to replace newlines or not. If - * newlines have been replaced already, this - * should be false, to avoid errors, for - * example on Windows. - */ - /* pos should be unsigned? */ - public void insert_text_block (string text, - int insert_pos, - int cursor_index = -1, - int newline_indent_size = -1, - bool replace_newlines = true); - } - /* reviewed */ - [CCode (cname = "GeanyEncodingIndex", cprefix = "GEANY_ENCODING_", has_type_id = false)] - public enum EncodingID { - ISO_8859_1, - ISO_8859_2, - ISO_8859_3, - ISO_8859_4, - ISO_8859_5, - ISO_8859_6, - ISO_8859_7, - ISO_8859_8, - ISO_8859_8_I, - ISO_8859_9, - ISO_8859_10, - ISO_8859_13, - ISO_8859_14, - ISO_8859_15, - ISO_8859_16, - - UTF_7, - UTF_8, - UTF_16LE, - UTF_16BE, - UCS_2LE, - UCS_2BE, - UTF_32LE, - UTF_32BE, - - ARMSCII_8, - BIG5, - BIG5_HKSCS, - CP_866, - - EUC_JP, - EUC_KR, - EUC_TW, - - GB18030, - GB2312, - GBK, - GEOSTD8, - HZ, - - IBM_850, - IBM_852, - IBM_855, - IBM_857, - IBM_862, - IBM_864, - - ISO_2022_JP, - ISO_2022_KR, - ISO_IR_111, - JOHAB, - KOI8_R, - KOI8_U, - - SHIFT_JIS, - TCVN, - TIS_620, - UHC, - VISCII, - - WINDOWS_1250, - WINDOWS_1251, - WINDOWS_1252, - WINDOWS_1253, - WINDOWS_1254, - WINDOWS_1255, - WINDOWS_1256, - WINDOWS_1257, - WINDOWS_1258, - - NONE, - CP_932 - } - /* reviewed */ - [Compact] - [CCode (cprefix = "encodings_")] - public class Encoding { - [CCode (cname = "idx")] - public EncodingID index; - public unowned string charset; - public unowned string name; - - public static string? convert_to_utf8 (string buffer, size_t size, - out string used_encoding = null); - public static string? convert_to_utf8_from_charset (string buffer, size_t size, - string charset, bool fast); - public static unowned string? get_charset_from_index (EncodingID idx); - } - /* reviewed */ - [CCode (cname = "filetype_id", cprefix = "GEANY_FILETYPES_", has_type_id = false)] - public enum FiletypeID { - NONE, - - PHP, - BASIC, - MATLAB, - RUBY, - LUA, - FERITE, - YAML, - C, - NSIS, - GLSL, - PO, - MAKE, - TCL, - XML, - CSS, - REST, - HASKELL, - JAVA, - CAML, - AS, - R, - DIFF, - HTML, - PYTHON, - CS, - PERL, - VALA, - PASCAL, - LATEX, - ASM, - CONF, - HAXE, - CPP, - SH, - FORTRAN, - SQL, - F77, - DOCBOOK, - D, - JS, - VHDL, - ADA, - CMAKE, - MARKDOWN, - TXT2TAGS, - ABC, - VERILOG, - FORTH, - LISP, - ERLANG, - COBOL, - /* ^ append items here */ - [CCode (cname = "GEANY_MAX_BUILT_IN_FILETYPES")] - MAX_BUILT_IN_FILETYPES - } - /* reviewed */ - [CCode (cprefix = "GEANY_FILETYPE_GROUP_", has_type_id = false)] - public enum FiletypeGroupID - { - NONE, - COMPILED, - SCRIPT, - MARKUP, - MISC, - CUSTOM, - COUNT - } - /* reviewed */ - [Compact] - [CCode (cname = "struct GeanyFiletype", cprefix = "filetypes_")] - public class Filetype { - public string context_action_cmd; - public string? comment_close; - public string? comment_open; - public bool comment_use_indent; - public string? error_regex_string; - - public string? extension; - public FiletypeGroupID group; - public Gdk.Pixbuf? icon; - public FiletypeID id; - public TagManager.LangType lang; - public Filetype lexer_filetype; - public string? mime_type; - public string name; - [CCode (array_length = false, array_null_terminated = true)] - public string[] pattern; - public string title; - - public unowned string display_name { - [CCode (cname = "filetypes_get_display_name")] - get; - } - - public static unowned Filetype detect_from_file (string utf8_filename); - public static unowned Filetype? index (int idx); - public static unowned Filetype? lookup_by_name (string name); - } - /* reviewed */ - [CCode (cname = "filetypes", array_length_cexpr = "GEANY(filetypes_array)->len")] - public unowned Filetype[] filetypes; - /* reviewed */ - [CCode (cname = "filetypes_by_title")] - public GLib.SList filetypes_by_title; - /* reviewed */ - [Compact] - public class Functions { - /* No need to fill-in, the functions are wrapped. - * However, the plugins needs to define geany_functions with this type, - * so we need to have it here. */ - } - /* reviewed */ - [CCode (cprefix = "highlighting_")] - namespace Highlighting { - public unowned LexerStyle get_style (int ft_id, int style_id); - public bool is_code_style (int lexer, int style); - public bool is_comment_style (int lexer, int style); - public bool is_string_style (int lexer, int style); - public void set_styles (Sci sci, Filetype ft); - } - /* reviewed */ - public delegate void KeyCallback (uint key_id); - /* reviewed */ - [CCode (has_type_id = false)] - public struct KeyBinding { - public KeyCallback @callback; - public uint key; - public string label; - public Gtk.Widget? menu_item; - public Gdk.ModifierType mods; - public string name; - } - /* reviewed */ - [CCode (cprefix = "keybindings_")] - namespace Keybindings { - public unowned KeyBinding get_item (KeyGroup group, size_t key_id); - public void send_command (KeyGroupID group_id, KeyBindingID key_id); - public unowned KeyBinding set_item (KeyGroup group, size_t key_id, KeyCallback? cb, - uint key, Gdk.ModifierType mod, string kf_name, - string label, Gtk.Widget? menu_item = null); - } - /* reviewed */ - [CCode (has_type_id = false)] - public struct KeyGroup {} - /* reviewed */ - public delegate bool KeyGroupCallback (uint key_id); - /* reviewed */ - [CCode (cprefix = "GEANY_KEYS_", has_type_id = false)] - public enum KeyBindingID { - EDITOR_TRANSPOSELINE, - DOCUMENT_REMOVE_ERROR_INDICATORS, - FOCUS_SEARCHBAR, - SEARCH_FIND, - FILE_SAVEALL, - GOTO_NEXTMARKER, - NOTEBOOK_SWITCHTABLEFT, - VIEW_ZOOMOUT, - GOTO_LINE, - DOCUMENT_TOGGLEFOLD, - BUILD_COMPILE, - EDITOR_SCROLLTOLINE, - DOCUMENT_UNFOLDALL, - GOTO_MATCHINGBRACE, - SEARCH_FINDDOCUMENTUSAGE, - CLIPBOARD_PASTE, - BUILD_MAKE, - INSERT_ALTWHITESPACE, - EDITOR_SCROLLLINEDOWN, - VIEW_TOGGLEALL, - VIEW_FULLSCREEN, - GOTO_LINEEND, - EDITOR_CALLTIP, - FILE_PRINT, - EDITOR_DUPLICATELINE, - FOCUS_SCRIBBLE, - TOOLS_OPENCOLORCHOOSER, - SEARCH_PREVIOUSMESSAGE, - FILE_CLOSE, - DOCUMENT_REPLACETABS, - FILE_RELOAD, - SEARCH_FINDNEXTSEL, - FOCUS_MESSAGES, - BUILD_RUN, - HELP_HELP, - SETTINGS_PLUGINPREFERENCES, - VIEW_ZOOMRESET, - SELECT_WORD, - FORMAT_INCREASEINDENT, - SETTINGS_PREFERENCES, - FORMAT_SENDTOCMD3, - DOCUMENT_FOLDALL, - FORMAT_SENDTOVTE, - PROJECT_PROPERTIES, - DOCUMENT_LINEWRAP, - EDITOR_MACROLIST, - EDITOR_SUPPRESSSNIPPETCOMPLETION, - FOCUS_SIDEBAR_SYMBOL_LIST, - GOTO_LINESTART, - SEARCH_FINDUSAGE, - FILE_NEW, - EDITOR_SNIPPETNEXTCURSOR, - NOTEBOOK_SWITCHTABRIGHT, - FILE_SAVE, - FORMAT_INCREASEINDENTBYSPACE, - SEARCH_FINDNEXT, - GOTO_TOGGLEMARKER, - GOTO_TAGDEFINITION, - SEARCH_NEXTMESSAGE, - EDITOR_DELETELINETOEND, - FORMAT_AUTOINDENT, - FILE_OPENSELECTED, - GOTO_BACK, - INSERT_DATE, - BUILD_PREVIOUSERROR, - GOTO_LINEENDVISUAL, - DOCUMENT_REPLACESPACES, - FOCUS_EDITOR, - SELECT_WORDPARTRIGHT, - VIEW_MESSAGEWINDOW, - FOCUS_SIDEBAR_DOCUMENT_LIST, - FORMAT_REFLOWPARAGRAPH, - EDITOR_MOVELINEUP, - NOTEBOOK_MOVETABLEFT, - SELECT_LINE, - EDITOR_UNDO, - EDITOR_MOVELINEDOWN, - CLIPBOARD_COPYLINE, - BUILD_MAKEOWNTARGET, - FORMAT_SENDTOCMD2, - SEARCH_MARKALL, - BUILD_LINK, - FILE_CLOSEALL, - GOTO_FORWARD, - CLIPBOARD_CUT, - NOTEBOOK_SWITCHTABLASTUSED, - NOTEBOOK_MOVETABRIGHT, - BUILD_OPTIONS, - GOTO_TAGDECLARATION, - FILE_OPEN, - EDITOR_COMPLETESNIPPET, - FORMAT_UNCOMMENTLINE, - FOCUS_VTE, - FORMAT_SENDTOCMD1, - SELECT_WORDPARTLEFT, - VIEW_ZOOMIN, - DOCUMENT_LINEBREAK, - EDITOR_REDO, - EDITOR_CONTEXTACTION, - SEARCH_FINDPREVSEL, - FORMAT_DECREASEINDENTBYSPACE, - FORMAT_COMMENTLINETOGGLE, - SELECT_ALL, - DOCUMENT_RELOADTAGLIST, - BUILD_NEXTERROR, - NOTEBOOK_MOVETABLAST, - SELECT_PARAGRAPH, - EDITOR_DELETELINE, - CLIPBOARD_COPY, - VIEW_SIDEBAR, - FILE_SAVEAS, - FORMAT_COMMENTLINE, - GOTO_PREVWORDPART, - SEARCH_FINDPREVIOUS, - SEARCH_REPLACE, - EDITOR_WORDPARTCOMPLETION, - EDITOR_AUTOCOMPLETE, - FOCUS_SIDEBAR, - FOCUS_MESSAGE_WINDOW, - NOTEBOOK_MOVETABFIRST, - GOTO_PREVIOUSMARKER, - EDITOR_SCROLLLINEUP, - FOCUS_COMPILER, - FORMAT_TOGGLECASE, - CLIPBOARD_CUTLINE, - DOCUMENT_REMOVE_MARKERS, - BUILD_MAKEOBJECT, - FORMAT_DECREASEINDENT, - FILE_OPENLASTTAB, - SEARCH_FINDINFILES, - GOTO_NEXTWORDPART, - INSERT_LINEAFTER, - INSERT_LINEBEFORE - } - /* reviewed */ - [CCode (cprefix = "GEANY_KEY_GROUP_", has_type_id = false)] - public enum KeyGroupID { - FILE, - PROJECT, - EDITOR, - CLIPBOARD, - SELECT, - FORMAT, - INSERT, - SETTINGS, - SEARCH, - GOTO, - VIEW, - FOCUS, - NOTEBOOK, - DOCUMENT, - BUILD, - TOOLS, - HELP - } - /* reviewed */ - [Compact] - public class LexerStyle { - public int foreground; - public int background; - public bool bold; - public bool italic; - } - /* reviewed */ - [CCode (cprefix = "main_")] - namespace Main { - public void reload_configuration (); - public void locale_init (string locale_dir, string package); - public bool is_realized (); - } - /* reviewed */ - [Compact] - public class MainWidgets { - /* Main */ - /** Gets the main window. */ - [CCode (cname="window")] Gtk.Widget _window; - public Gtk.Window window { - [CCode (cname="geany_vala_plugin_main_widgets_get_main_window")] - get { return _window as Gtk.Window; } - } - - /** Gets the main toolbar. */ - [CCode (cname="toolbar")] Gtk.Widget _toolbar; - public Gtk.Toolbar toolbar { - [CCode (cname="geany_vala_plugin_main_widgets_get_toolbar")] - get { return _toolbar as Gtk.Toolbar; } - } - - /** - * Gets the progress bar widget in the statusbar. - * - * This progress bar can be used to show progress of various - * actions. - */ - [CCode (cname="progressbar")] Gtk.Widget _progressbar; - public Gtk.ProgressBar progressbar { - [CCode (cname="geany_vala_plugin_main_widgets_get_progressbar")] - get { return _progressbar as Gtk.ProgressBar; } - } - - /* Menus */ - /** Gets the popup editor menu. */ - [CCode (cname="editor_menu")] Gtk.Widget _editor_menu; - public Gtk.MenuShell editor_menu { - [CCode (cname="geany_vala_plugin_main_widgets_get_editor_menu")] - get { return _editor_menu as Gtk.MenuShell; } - } - - /** - * Gets the Project menu. - * - * Plugins modifying the project can add their items to the - * Project menu. - */ - [CCode (cname="project_menu")] Gtk.Widget _project_menu; - public Gtk.MenuShell project_menu { - [CCode (cname="geany_vala_plugin_main_widgets_get_project_menu")] - get { return _project_menu as Gtk.MenuShell; } - } - - /** - * Gets the Tools menu. - * - * Most plugins add menu items to the Tools menu. - */ - [CCode (cname="tools_menu")] Gtk.Widget _tools_menu; - public Gtk.MenuShell tools_menu { - [CCode (cname="geany_vala_plugin_main_widgets_get_tools_menu")] - get { return _tools_menu as Gtk.MenuShell; } - } - - /* Notebooks */ - /** Gets the notebook containing the documents. */ - [CCode (cname="notebook")] Gtk.Widget _documents_notebook; - public Gtk.Notebook documents_notebook { - get { return _documents_notebook as Gtk.Notebook; } - } - - /** Gets the bottom message window notebook. */ - [CCode (cname="message_window_notebook")] Gtk.Widget _message_window_notebook; - public Gtk.Notebook message_window_notebook { - [CCode (cname="geany_vala_plugin_main_widgets_get_message_window_notebook")] - get { return _message_window_notebook as Gtk.Notebook; } - } - - /** Gets the sidebar notebook. */ - [CCode (cname="sidebar_notebook")] Gtk.Widget _sidebar_notebook; - public Gtk.Notebook sidebar_notebook { - [CCode (cname="geany_vala_plugin_main_widgets_get_sidebar_notebook")] - get { return _sidebar_notebook as Gtk.Notebook; } - } - } - /* reviewed */ - [CCode (lower_case_cprefix = "msgwin_", cprefix = "msgwin_")] - namespace MessageWindow { - [CCode (cname = "MessageWindowTabNum", has_type_id = false)] - public enum TabID { - STATUS, - COMPILER, - MESSAGE, - SCRATCH, - VTE - } - [CCode (cname = "MsgColors", has_type_id = false)] - public enum Color { - RED, - DARK_RED, - BLACK, - BLUE - } - - public void clear_tab (MessageWindow.TabID tabnum); - [PrintfFormat] - public void compiler_add (MessageWindow.Color msg_color, string format, ...); - [PrintfFormat] - public void msg_add (MessageWindow.Color msg_color, int line, Document? doc, string format, ...); - [PrintfFormat] - public void set_messages_dir (string messages_dir); - public void status_add (string format, ...); - public void switch_tab (MessageWindow.TabID tabnum, bool show); - } - /* reviewed */ - [CCode (cprefix = "navqueue_")] - namespace NavQueue { - public bool goto_line (Document? old_doc, Document new_doc, int line); - } - /* reviewed */ - [Compact] - [CCode (cprefix = "plugin_")] - public class Plugin { - [Compact] - [CCode (cname = "PluginInfo")] - public class Info { - public unowned string name; - public unowned string? description; - public unowned string? version; - public unowned string? author; - - [CCode (cname = "geany_vala_plugin_SET_INFO")] - public void @set (string name, string? description, string? version, string? author) - { - this.name = name; - this.description = description; - this.version = version; - this.author = author; - } - } - [Compact] - [CCode (cname = "PluginCallback")] - public class Callback { - public unowned string signal_name; - public GLib.Callback @callback; - public bool after; - public void *user_data; - } - [Compact] - [Deprecated (replacement = "Ui.add_document_sensitive()")] - [CCode (cname = "PluginFields")] - public class Fields { - public Flags flags; - public Gtk.MenuItem menu_item; - } - [Deprecated (replacement = "Ui.add_document_sensitive()")] - [CCode (cname = "PluginFlags", has_type_id = false)] - public enum Flags { - [CCode (cname = "GEANY_IS_DOCUMENT_SENSITIVE")] - IS_DOCUMENT_SENSITIVE - } - - [CCode (cname = "geany_vala_plugin_VERSION_CHECK")] - public static int version_check (int abi_version, int api_required) { - /* drop-in copy of GEANY_VERSION_CHECK() macro */ - if (abi_version != ABI_VERSION) - return -1; - return (api_required); - } - - [CCode (cname = "GEANY_API_VERSION")] - static int API_VERSION; - [CCode (cname = "GEANY_ABI_VERSION")] - static int ABI_VERSION; - - public Info info; - - public void add_toolbar_item (Gtk.ToolItem item); - public void module_make_resident (); - public void signal_connect (GLib.Object? object, string signal_name, bool after, - GLib.Callback cb, void *user_data = null); - public KeyGroup set_key_group (string section_name, size_t count, KeyGroupCallback cb); - public void show_configure (); - } - /* reviewed */ - [Compact] - public class Project { - public string base_path; - public string description; - public string file_name; - [CCode (array_length = false, array_null_terminated = true)] - public string[] file_patterns; - public string name; - public int type; - } - /* TODO: switch to codebrainz's full wrapper */ - [CCode (cname = "ScintillaObject", cprefix = "scintilla_")] - public class Scintilla : Gtk.Container { - [CCode (cprefix = "SCI_")] - public enum Message { - GETEOLMODE, - LINEDELETE - } - [CCode (cprefix = "SC_EOL_")] - public enum EolMode { - CRLF, - CR, - LF - } - - public Scintilla (); - public long send_message (uint iMessage, ulong wParam = 0, ulong lParam = 0); - } - /* reviewed */ - /* TODO: use proper types for the argument when we get them (enums & co) */ - [CCode (cname = "ScintillaObject", cprefix = "sci_")] - public class Sci : Scintilla { - /** - * Creates a new {@link Sci} widget based on the settings in //editor//. - * - * @param editor The editor who's settings to use the create the - * {@link Sci} widget. - * - * @return A new {@link Sci} widget. - */ - [CCode (cname = "editor_create_widget")] - public Sci (Editor editor) {} - - /* FIXME: we need this to be really implemented for find_text() to be usable */ - public struct TextToFind { - } - - public void delete_marker_at_line (int line_number, int marker); - public void end_undo_action (); - public void ensure_line_is_visible (int line); - public int find_matching_brace (int pos); - public int find_text (int flags, TextToFind ttf); - public char get_char_at (int pos); - public int get_col_from_position (int position); - public string get_contents (int len = this.get_length () + 1); - public string get_contents_range (int start, int end); - public int get_current_line (); - public int get_current_position (); - public int get_length (); - /* make get_line() take an optional second parameter to choose whether - * to include the EOL character */ - [CCode (cname = "sci_get_line")] - private string __get_line_with_eol (int line_num); - [CCode (cname = "geany_vala_plugin_sci_get_line")] - public string get_line (int line_num, bool include_eol = true) { - if (include_eol) { - return this.__get_line_with_eol (line_num); - } else { - return this.get_contents_range (this.get_position_from_line (line_num), - this.get_line_end_position (line_num)); - } - } - public int get_line_count (); - public int get_line_end_position (int line); - public int get_line_from_position (int position); - public int get_line_indentation (int line); - public bool get_line_is_visible (int line); - public int get_line_length (int line); - public int get_position_from_line (int line); - [Deprecated (replacement = "Geany.Sci.get_selection_contents")] - public void get_selected_text (string text); - public int get_selected_text_length (); - public string get_selection_contents (); - public int get_selection_end (); - public int get_selection_mode (); - public int get_selection_start (); - public int get_style_at (int position); - public int get_tab_width (); - public void goto_line (int line, bool unfold = true); - public bool has_selection (); - public void indicator_clear (int start, int end); - public void indicator_set (int indic); - public void insert_text (int pos, string text); - public bool is_marker_set_at_line (int line, int marker); - [CCode (cname = "sci_replace_sel")] - public void replace_selection (string text); - public int replace_target (string text, bool regex = false); - public void scroll_caret (); - /* FIXME: maybe remove this since we have default values for send_message()? */ - [Deprecated (replacement = "Scintilla.send_message")] - public void send_command (int cmd); - public void set_current_position (int position, bool scroll_to_caret = true); - public void set_font (int style, string font, int size); - public void set_line_indentation (int line, int indent); - public void set_marker_at_line (int line_number, int marker); - public void set_selection_end (int position); - public void set_selection_mode (int mode); - public void set_selection_start (int position); - public void set_target_end (int end); - public void set_target_start (int start); - public void set_text (string text); - public void start_undo_action (); - - /* these ones aren't exported in the plugin API or doesn't exist at all */ - [CCode (cname = "geany_vala_plugin_sci_get_eol_mode")] - public int get_eol_mode () { - return (int)this.send_message (Scintilla.Message.GETEOLMODE); - } - [CCode (cname = "geany_vala_plugin_sci_get_eol_char_len")] - public int get_eol_char_len () { - switch (this.get_eol_mode ()) { - case EolMode.CRLF: return 2; - default: return 1; - } - } - } - /* reviewed */ - [CCode (cprefix = "search_")] - namespace Search { - public void show_find_in_files_dialog (string? dir = null); - } - /* reviewed */ - [Compact] - [CCode (cname = "StashGroup", - cprefix = "stash_group_", - free_function = "stash_group_free")] - public class StashGroup { - - public StashGroup (string name); - - public void add_boolean (ref bool setting, string key_name, bool default_value); - public void add_combo_box (ref int setting, string key_name, int default_value, void *widget_id); - public void add_combo_box_entry (ref string setting, string key_name, string default_value, - void *widget_id); - public void add_entry (ref string setting, string key_name, string default_value, - void *widget_id); - public void add_integer (ref int setting, string key_name, int default_value); - public void add_radio_buttons (ref int setting, string key_name, int default_value, - void *widget_id, int enum_id, ...); - public void add_spin_button_integer (ref int setting, string key_name, int default_value, - void *widget_id); - public void add_string (ref string setting, string key_name, string? default_value); - public void add_string_vector (ref string[] setting, string key_name, string[]? default_value); - public void add_toggle_button (ref bool setting, string key_name, bool default_value, - void *widget_id); - public void add_widget_property (void *setting, string key_name, void *default_value, - void *widget_id, string property_name, GLib.Type type); - public void display (Gtk.Widget? owner); - public bool load_from_file (string filename); - public void load_from_key_file (GLib.KeyFile keyfile); - public int save_to_file (string filename, GLib.KeyFileFlags flags = GLib.KeyFileFlags.NONE); - public void save_to_key_file (GLib.KeyFile keyfile); - public void update (Gtk.Widget? owner); - } - /* reviewed */ - [CCode (cprefix = "symbols_")] - namespace Symbols { - public unowned string get_context_separator (FiletypeID ft_id); - } - /* reviewed */ - [CCode (cprefix = "templates_")] - namespace Templates { - public string get_template_fileheader (int filetype_idx, string fname); - } - /* reviewed */ - [CCode (cprefix = "TM", lower_case_cprefix = "tm_")] - namespace TagManager { - /* TODO: add TMFileEntry? not sure it's useful */ - [Compact] - [CCode (free_function = "tm_work_object_free")] - public class WorkObject { - public uint type; - public string file_name; - public string short_name; - public WorkObject? parent; - public time_t analyze_time; - public GLib.PtrArray tags_array; - } - [Compact] - public class Workspace : WorkObject { - public GLib.PtrArray global_tags; - public GLib.PtrArray work_objects; - - public static bool add_object (WorkObject work_object); - public static bool remove_object (WorkObject w, bool do_free, bool update); - } - [Compact] - public class SourceFile : WorkObject { - /** - * Programming language used - */ - public LangType lang; - /** - * Whether this file should be scanned for tags - */ - public bool inactive; - - /* Methods */ - - public SourceFile (string? file_name, bool update, string? name = null); - public bool update (bool force = true, bool recurse = true, bool update_parent = true); - } - [Compact] - public class Project : WorkObject { - /** - * Top project directory - */ - public string dir; - /** - * Extensions for source files (wildcards, NULL terminated) - */ - [CCode (array_length = false, array_null_terminated = true)] - public string[] sources; - /** - * File patters to ignore - */ - [CCode (array_length = false, array_null_terminated = true)] - public string[] ignore; - /** - * Array of {@link TagManager.SourceFile}s present in the project - */ - public GLib.PtrArray file_list; - } - [SimpleType] - [IntegerType] - [CCode (cname = "langType")] - public struct LangType : int { - } - [Flags] - [CCode (has_type_id = false)] - public enum TagType { - [CCode (cname = "tm_tag_undef_t")] - UNDEF, - [CCode (cname = "tm_tag_class_t")] - CLASS, - [CCode (cname = "tm_tag_enum_t")] - ENUM, - [CCode (cname = "tm_tag_enumerator_t")] - ENUMERATOR, - [CCode (cname = "tm_tag_field_t")] - FIELD, - [CCode (cname = "tm_tag_function_t")] - FUNCTION, - [CCode (cname = "tm_tag_interface_t")] - INTERFACE, - [CCode (cname = "tm_tag_member_t")] - MEMBER, - [CCode (cname = "tm_tag_method_t")] - METHOD, - [CCode (cname = "tm_tag_namespace_t")] - NAMESPACE, - [CCode (cname = "tm_tag_package_t")] - PACKAGE, - [CCode (cname = "tm_tag_prototype_t")] - PROTOTYPE, - [CCode (cname = "tm_tag_struct_t")] - STRUCT, - [CCode (cname = "tm_tag_typedef_t")] - TYPEDEF, - [CCode (cname = "tm_tag_union_t")] - UNION, - [CCode (cname = "tm_tag_variable_t")] - VARIABLE, - [CCode (cname = "tm_tag_externvar_t")] - EXTERNVAR, - [CCode (cname = "tm_tag_macro_t")] - MACRO, - [CCode (cname = "tm_tag_macro_with_arg_t")] - MACRO_WITH_ARG, - [CCode (cname = "tm_tag_file_t")] - FILE, - [CCode (cname = "tm_tag_other_t")] - OTHER, - [CCode (cname = "tm_tag_max_t")] - MAX - } - [Flags] - [CCode (has_type_id = false)] - public enum TagAttrType { - [CCode (cname = "tm_tag_attr_none_t")] - NONE, - [CCode (cname = "tm_tag_attr_name_t")] - NAME, - [CCode (cname = "tm_tag_attr_type_t")] - TYPE, - [CCode (cname = "tm_tag_attr_file_t")] - FILE, - [CCode (cname = "tm_tag_attr_line_t")] - LINE, - [CCode (cname = "tm_tag_attr_pos_t")] - POS, - [CCode (cname = "tm_tag_attr_scope_t")] - SCOPE, - [CCode (cname = "tm_tag_attr_inheritance_t")] - INHERITANCE, - [CCode (cname = "tm_tag_attr_arglist_t")] - ARGLIST, - [CCode (cname = "tm_tag_attr_local_t")] - LOCAL, - [CCode (cname = "tm_tag_attr_time_t")] - TIME, - [CCode (cname = "tm_tag_attr_vartype_t")] - VARTYPE, - [CCode (cname = "tm_tag_attr_access_t")] - ACCESS, - [CCode (cname = "tm_tag_attr_impl_t")] - IMPL, - [CCode (cname = "tm_tag_attr_lang_t")] - LANG, - [CCode (cname = "tm_tag_attr_inactive_t")] - INACTIVE, - [CCode (cname = "tm_tag_attr_pointer_t")] - POINTER, - [CCode (cname = "tm_tag_attr_max_t")] - MAX - } - [CCode (cprefix = "TAG_ACCESS_")] - namespace TagAccess { - char PUBLIC; /*!< Public member */ - char PROTECTED; /*!< Protected member */ - char PRIVATE; /*!< Private member */ - char FRIEND; /*!< Friend members/functions */ - char DEFAULT; /*!< Default access (Java) */ - char UNKNOWN; /*!< Unknown access type */ - } - [CCode (cprefix = "TAG_IMPL_")] - namespace TagImplementation { - char VIRTUAL; /*!< Virtual implementation */ - char UNKNOWN; /*!< Unknown implementation */ - } - /* this is a dummy proxy structure because Vala doesn't support inline anonymous structs */ - [CCode (cname = "__GeanyValaPluginTMTagAttributesEntry")] - public struct TagAttributesEntry { - public SourceFile file; - public ulong line; - public bool local; - [CCode (cname = "pointerOrder")] - public uint pointer_order; - public string? arglist; - public string? scope; - public string? inheritance; - public string? var_type; - public char access; - public char impl; - } - /* this is a dummy proxy structure because Vala doesn't support inline anonymous structs */ - [CCode (cname = "__GeanyValaPluginTMTagAttributesFile")] - public struct TagAttributesFile { - public time_t timestamp; - public LangType lang; - public bool inactive; - } - /* this is a dummy proxy structure because Vala doesn't support inline anonymous structs */ - [CCode (cname = "__GeanyValaPluginTMTagAttributes")] - public struct TagAttributes { - public TagAttributesEntry entry; - public TagAttributesFile file; - } - [Compact] - [CCode (cname = "TMTag", cprefix = "tm_tag_")] - public class Tag { - public string name; - public TagType type; - [CCode (cname = "atts")] - public TagAttributes attributes; - } - /* this is a dummy proxy structure because Vala doesn't support inline anonymous structs */ - [CCode (cname = "__GeanyValaPluginTMSymbolInfo")] - public struct SymbolInfo { - /** - * Array of child symbols - */ - public GLib.PtrArray children; - /** - * Prototype tag for functions - */ - public Tag equiv; - } - [Compact] - [CCode (cname = "TMSymbol", cprefix = "tm_symbol_tree_" /*, free_function = "tm_symbol_tree_free"*/)] - public class Symbol { - /** - * The tag corresponding to this symbol - */ - public Tag tag; - /** - * Parent class/struct for functions/variables - */ - public Symbol? parent; - public SymbolInfo info; - } - - public string get_real_path (string file_name); - } - /* reviewed */ - [CCode (cprefix = "ui_", lower_case_cprefix = "ui_")] - namespace Ui { - [CCode (cname = "GtkButton", type_id = "GTK_TYPE_BUTTON")] - public class Button : Gtk.Button { - public Button.with_image (string stock_id, string text); - } - [CCode (cname = "GtkImageMenuItem", type_id = "GTK_TYPE_IMAGE_MENU_ITEM")] - public class ImageMenuItem : Gtk.ImageMenuItem { - public ImageMenuItem (string stock_id, string label); - } - [CCode (cname = "GtkHBox", type_id = "GTK_TYPE_HBOX")] - public class PathBox : Gtk.HBox { - public PathBox (string? title, Gtk.FileChooserAction action, Gtk.Entry entry); - } - [CCode (cname = "GtkVBox", type_id = "GTK_TYPE_VBOX")] - public class DialogVBox : Gtk.VBox { - public DialogVBox (Gtk.Dialog dialog); - } - [CCode (cname = "GtkFrame", type_id = "GTK_TYPE_FRAME")] - public class Frame : Gtk.Frame { - public Frame.with_alignment (string label_text, out Gtk.Alignment alignment); - } - - public void hookup_widget (Gtk.Widget owner, Gtk.Widget widget, string name); - public void add_document_sensitive (Gtk.Widget widget); - /*public Gtk.Button button_new_with_image (string stock_id, string text);*/ - public void combo_box_add_to_history (Gtk.ComboBoxEntry combo_entry, string? text, - int history_len = 0); - /*public Gtk.VBox dialog_vbox_new (Gtk.Dialog dialog);*/ - public void entry_add_clear_icon (Gtk.Entry entry); - /*public Gtk.Frame frame_new_with_alignment (string label_text, out Gtk.Alignment alignment);*/ - public int get_gtk_settings_integer (string property_name, int default_value); - /*public Gtk.ImageMenuItem image_menu_item_new (string stock_id, string label);*/ - public bool is_keyval_enter_or_return (uint keyval); - public unowned Gtk.Widget? lookup_widget (Gtk.Widget widget, string widget_name); - public void menu_add_document_items (Gtk.Menu menu, Document? active, GLib.Callback cb); - /*public Gtk.HBox path_box_new (string? title, Gtk.FileChooserAction action, Gtk.Entry entry);*/ - public void progress_bar_start (string? text); - public void progress_bar_stop (); - [PrintfFormat] - public void set_statusbar (bool log, string format, ...); - public void table_add_row (Gtk.Table table, int row, ...); - public void widget_modify_font_from_string (Gtk.Widget widget, string str); - public void widget_set_tooltip_text (Gtk.Widget widget, string text); - } - /* reviewed */ - [CCode (cprefix = "utils_", lower_case_cprefix = "utils_")] - namespace Utils { - [CCode (array_length = false, array_null_terminated = true)] - public string[] copy_environment ([CCode (array_length = false, array_null_terminated = true)] - string[]? exclude_vars, string first_varname, ...); - public string? find_open_xml_tag (string sel, int size); - public string get_date_time (string format, time_t? time_to_use = null); - public GLib.SList? get_file_list (string path, out uint length = null) throws GLib.Error; - public GLib.SList? get_file_list_full (string path, bool full_path = false, bool sort = false) - throws GLib.Error; - public string get_locale_from_utf8 (string utf8_text); - public bool get_setting_boolean (GLib.KeyFile config, string section, - string key, bool default_value); - public int get_setting_integer (GLib.KeyFile config, string section, - string key, int default_value); - public string get_setting_string (GLib.KeyFile config, string section, - string key, string default_value); - public string get_utf8_from_locale (string locale_text); - public int mkdir (string path, bool create_parent_dirs = true); - public void open_browser (string uri); - public string remove_ext_from_filename (string filename); - public bool spawn_async (string? dir, - [CCode (array_length = false, array_null_terminated = true)] string[] argv, - [CCode (array_length = false, array_null_terminated = true)] string[]? env = null, - GLib.SpawnFlags flags = 0, GLib.SpawnChildSetupFunc? child_setup = null, - out GLib.Pid child_pid = null) throws GLib.Error; - public bool spawn_sync (string? dir, - [CCode (array_length = false, array_null_terminated = true)] string[] argv, - [CCode (array_length = false, array_null_terminated = true)] string[]? env = null, - GLib.SpawnFlags flags = 0, GLib.SpawnChildSetupFunc? child_setup = null, - out string std_out = null, out string std_err = null, - out int exit_status = null) throws GLib.Error; - public int str_casecmp (string? s1, string? s2); - /* utils_str_equal() -> no need, Vala has "==" for this */ - public string str_middle_truncate (string str, uint truncate_length); - /* wrap str_remove_chars() to return a copy of the string to fit Vala's - * conventions, and because I can't find the right binding for all cases */ - [CCode (cname = "utils_str_remove_chars")] - private unowned string __str_remove_chars (string str, string chars); - [CCode (cname = "geany_vala_plugin_utils_str_remove_chars")] - public string str_remove_chars (string str, string chars) { - var copy = str; - __str_remove_chars (copy, chars); - return copy; - } - public uint string_replace_all (GLib.StringBuilder haystack, string needle, string replace); - public uint string_replace_first (GLib.StringBuilder haystack, string needle, string replace); - public int write_file (string filename, string text); - } - /* reviewed */ - [CCode (cprefix = "GEANY_INDENT_TYPE_", has_type_id = false)] - public enum IndentType { - SPACES, - TABS, - BOTH - } - /* reviewed */ - [CCode (cprefix = "GEANY_AUTOINDENT_", has_type_id = false)] - public enum AutoIndent { - NONE, - BASIC, - CURRENTCHARS, - MATCHBRACES - } - /* reviewed */ - [CCode (cprefix = "GEANY_VIRTUAL_SPACE_", has_type_id = false)] - public enum VirtualSpace { - DISABLED, - SELECTION, - ALWAYS - } -} diff -Nru geany-plugins-1.24.0+20140222+git/NEWS geany-plugins-1.24.1+dfsg/NEWS --- geany-plugins-1.24.0+20140222+git/NEWS 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/NEWS 2014-04-13 16:42:54.000000000 +0000 @@ -1,3 +1,112 @@ +Geany Plugins 1.24 (2014-04-13) + + Known issues + * If the Geanypy plugin is closed when any Python plugins are still + running it may cause a crash. + * Closing Geany having GeanyLaTeX and Devhelp-plugin active, might + cause a not clean shutdown of Geany + + General: + * Depend on Geany 1.24 + * New plugin Pohelper + * New plugin PairTagHighlighter + * New plugin Autoclose + * New plugin Geanypy (Python bindings) + * New plugin Defineformat + * Build system improvements + + Commander: + * Add Gtk3 support + + Debugger: + * Fixing a crash when re-loading plugin + + GeanyGenDoc: + * Add Gtk3 support + * Fix a memory leak + + GeanyExtraSel: + * Add "Toggle Rectangular/Stream" + + GeanyInsertNum: + * Add Gtk3 support + * Increase maxlines to 250000 + + GeanyLipsum: + * Add Gtk3 support + * Ensure whitespace between repetitions of Lorem Ipsum text + + GeanyLua: + * Add Gtk3 support + * Re-enable build with C89 + + GeanyMiniScript: + * Add Gtk3 support + + GeanyPG: + * Improve portability and check for system requirements + + GeanyVC: + * Add support for Subversion 1.7 + * Limit the display of diff output to 16 KB to not freeze the UI on + huge commit-diffs + * Show line and column of the cursor in the commit + message text window + + GProject: + * Add Gtk3 support + * Display content-type-specific icons for files in the sidebar + * Make toolbar buttons insensitive when no files displayed + * Smaller fixes and improvements + + Markdown: + * Add Gtk3 support + * Fix scroll jumping behavior + + Multiterm: + * Implement the other config VTE properties + + Prettyprinter: + * Add Gtk3 support + + Scope: + * Add Gtk3 support + * Add support for registers + * Various fixes and improvements + + Shiftcolumn: + * Removed default keybindings + + Spellcheck: + * Add Gtk3 support + * Fix check for default language if LANG contains UTF-8 + * Remove check while typing idle callback when unloading the plugin + (closing #96) + * Improve stripping of whitespace and punctuation characters + (fixes #98) + * Fix crash when closing a document quickly after modifying it + + Tableconvert: + * Add support for HTML tables in markdown files + + TreeBrowser: + * Add Gtk3 support + * Don't collapse expanded child of node when node gets selected + * Add and improve some keybindings + * Add a way to open newly created files + * Focus editor on file open + + Updatechecker: + * Fix comparing major versions + + WebHelper: + * Add Gtk3 support + + Internationalization: + * Update translations: de, es, fr, nl, ru, tr + * New translations: it + + Geany Plugins 1.23 (2013-03-10) * Depend on Geany 1.23 diff -Nru geany-plugins-1.24.0+20140222+git/pairtaghighlighter/Makefile.in geany-plugins-1.24.1+dfsg/pairtaghighlighter/Makefile.in --- geany-plugins-1.24.0+20140222+git/pairtaghighlighter/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pairtaghighlighter/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = pairtaghighlighter +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = pairtaghighlighter +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pairtaghighlighter/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pairtaghighlighter/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pairtaghighlighter/src/Makefile.in geany-plugins-1.24.1+dfsg/pairtaghighlighter/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/pairtaghighlighter/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pairtaghighlighter/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = pairtaghighlighter/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +pairtaghighlighter_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_pairtaghighlighter_la_OBJECTS = pair_tag_highlighter.lo +pairtaghighlighter_la_OBJECTS = $(am_pairtaghighlighter_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(pairtaghighlighter_la_SOURCES) +DIST_SOURCES = $(pairtaghighlighter_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = pairtaghighlighter.la +pairtaghighlighter_la_SOURCES = pair_tag_highlighter.c +pairtaghighlighter_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pairtaghighlighter/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pairtaghighlighter/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +pairtaghighlighter.la: $(pairtaghighlighter_la_OBJECTS) $(pairtaghighlighter_la_DEPENDENCIES) $(EXTRA_pairtaghighlighter_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(pairtaghighlighter_la_OBJECTS) $(pairtaghighlighter_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pair_tag_highlighter.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/po/be.po geany-plugins-1.24.1+dfsg/po/be.po --- geany-plugins-1.24.0+20140222+git/po/be.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/be.po 2014-04-12 14:28:39.000000000 +0000 @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2009-06-11 10:15+0200\n" "Last-Translator: Yura Siamshka >\n" "Language-Team: Belarusian \n" @@ -37,12 +37,12 @@ msgid "Contents" msgstr "" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "" @@ -80,15 +80,15 @@ msgid "Context:" msgstr "" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -156,11 +156,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "" @@ -247,6 +248,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "" @@ -311,8 +320,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "" @@ -448,7 +457,7 @@ msgid "Target" msgstr "" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "" @@ -485,22 +494,22 @@ msgstr "" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "" @@ -509,7 +518,7 @@ msgstr "" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "" #: ../debugger/src/watch_model.c:220 @@ -540,6 +549,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 #, fuzzy @@ -651,7 +668,7 @@ msgstr "" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "" @@ -780,13 +797,13 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 #, fuzzy msgid "_File" msgstr "Дадаць файл" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "" @@ -970,58 +987,67 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 #, fuzzy msgid "Select to line" msgstr "Выдаліць праэкт" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Выдаліць праэкт" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 #, fuzzy msgid "Select to _Anchor" msgstr "Выдаліць праэкт" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 #, fuzzy msgid "Select to anchor" msgstr "Выдаліць праэкт" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1416,78 +1442,78 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 #, fuzzy msgid "Insert Numbers" msgstr "Наладкі" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 #, fuzzy msgid "_Base:" msgstr "Базавы шлях:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 #, fuzzy msgid "Insert _Numbers" msgstr "Наладкі" @@ -1926,20 +1952,20 @@ msgid "BibTeX reference name:" msgstr "Наладкі" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "" @@ -1947,79 +1973,79 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 #, fuzzy msgid "Date:" msgstr "Імя:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2027,267 +2053,267 @@ msgstr "" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " "before." msgstr "" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 #, fuzzy msgid "Insert BibTeX reference dialog" msgstr "Наладкі" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" "Please report all bugs or feature requests to one of the authors." msgstr "" -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 #, fuzzy msgid "Insert _Reference" msgstr "Наладкі" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 #, fuzzy msgid "Insert P_ackage" msgstr "Наладкі" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 #, fuzzy msgid "Insert B_ibTeX reference" msgstr "Наладкі" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "" @@ -2443,16 +2469,16 @@ msgid "Creating dummy text with Geany" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "" @@ -2576,19 +2602,19 @@ msgid "Browse..." msgstr "" -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "" -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "" @@ -2613,7 +2639,7 @@ "not enough arguments for command \"%s\".\n" msgstr "" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2649,14 +2675,14 @@ msgid "Save file" msgstr "Выдаліць файл" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2695,21 +2721,21 @@ "Please check your installation." msgstr "" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3070,6 +3096,19 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Выдаліць праэкт" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "" @@ -3270,12 +3309,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "" @@ -3292,7 +3331,7 @@ msgid "Search for contents of clipboard" msgstr "" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "" @@ -3326,59 +3365,59 @@ msgid "Text:" msgstr "" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "Выдаліць праэкт" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3397,6 +3436,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3405,112 +3471,111 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "Выдаліць праэкт" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "Інтэрактыўная даведка" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "Новы Праэкт" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" msgstr "" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3518,54 +3583,54 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Выдаліць праэкт" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Выдаліць праэкт" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3581,7 +3646,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3662,36 +3727,36 @@ msgstr "Выдаліць праэкт" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3701,8 +3766,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "" @@ -3858,7 +3923,7 @@ msgstr "" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Праэкт" @@ -3887,7 +3952,7 @@ msgid "C_reate" msgstr "Стварыць" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 #, fuzzy msgid "Name:" msgstr "Імя:" @@ -3968,7 +4033,7 @@ msgid "Remove File" msgstr "Выдаліць файл" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Схаваць сайдбар" @@ -3977,6 +4042,48 @@ msgid "Project \"%s\" opened." msgstr "Праэкт \"%s\" адчынен." +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "" @@ -3995,42 +4102,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4041,28 +4148,28 @@ "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4080,339 +4187,358 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "" -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "" -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " "configuration. Error message was: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " "could cause a big number of annoying \"Do you want to save\"-dialogs." msgstr "" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "" -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "" #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "" @@ -4560,100 +4686,251 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 #, fuzzy msgid "Find File" msgstr "Дадаць файл" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 #, fuzzy msgid "Find in Files" msgstr "Знайсьці і праэкце" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Лакацыя:" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 #, fuzzy msgid "Sidebar" msgstr "Схаваць сайдбар" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "Выдаліць праэкт" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +msgid "Go to previous string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to next string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "Інтэрактыўная даведка" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1124 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4989,255 +5266,318 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 +msgid "_Watch Expression" +msgstr "" + +#: ../scope/data/scope.glade.h:67 #, fuzzy msgid "_Inspect Variable" msgstr "Выдаліць праэкт" -#: ../scope/data/scope.glade.h:67 -msgid "Program Terminal" -msgstr "" - #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 msgid "Stack" msgstr "" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 msgid "Enter gdb command:" msgstr "" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 msgid "Convert _UTF-8 to locale" msgstr "" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 msgid "_Frame" msgstr "" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" msgstr "" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 msgid "En_vironment:" msgstr "" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 msgid "Open on" msgstr "" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 msgid "Update all _views" msgstr "" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" msgstr "" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 msgid "and" msgstr "" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 msgid "_argument" msgstr "" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 msgid "names" msgstr "" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" msgstr "" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 msgid "Show _tooltips" msgstr "" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 msgid "Options" msgstr "" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 msgid "_Import" msgstr "" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" msgstr "" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 msgid "Object:" msgstr "" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 #, fuzzy msgid "Frame:" msgstr "Імя:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 msgid "Start:" msgstr "" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" msgstr "" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +msgid "breakpoint" +msgstr "" + +#: ../scope/src/break.c:98 +msgid "hardware breakpoint" +msgstr "" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "" @@ -5249,7 +5589,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "" @@ -5268,61 +5609,62 @@ msgid "Program terminated." msgstr "" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "" -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "Выдаліць праэкт" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5336,34 +5678,26 @@ msgid "Select File" msgstr "Выдаліць праэкт" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5371,15 +5705,15 @@ "Continue?" msgstr "" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5388,159 +5722,171 @@ msgstr "" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 msgid "Run to source" msgstr "" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" msgstr "" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, c-format -msgid "%s: error %lu." +msgid "%s: %s" msgstr "" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Каманда 0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 #, fuzzy msgid "Try: " msgstr "Тып:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" @@ -5631,17 +5977,17 @@ msgid "Ignore All" msgstr "" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "" @@ -5672,177 +6018,182 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "" -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 #, fuzzy msgid "NewDirectory" msgstr "Выдаліць праэкт" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 #, fuzzy msgid "NewFile" msgstr "Дадаць файл" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" msgstr "" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "Знайсьці і праэкце" + +#: ../treebrowser/src/treebrowser.c:1241 #, fuzzy msgid "Create new directory" msgstr "Выдаліць праэкт" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 #, fuzzy msgid "Delete" msgstr "Выдаліць праэкт" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" msgstr "" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 #, fuzzy msgid "Track path" msgstr "Базавы шлях:" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 #, fuzzy msgid "Hide bars" msgstr "Схаваць сайдбар" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -5852,100 +6203,108 @@ "filename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 #, fuzzy msgid "Base" msgstr "Базавы шлях:" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" msgstr "" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 #, fuzzy msgid "Reverse filter" msgstr "Выдаліць файл" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +msgid "Open new files" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 #, fuzzy msgid "Create New File" msgstr "Выдаліць праэкт" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 #, fuzzy msgid "Create New Directory" msgstr "Выдаліць праэкт" @@ -6012,44 +6371,44 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" diff -Nru geany-plugins-1.24.0+20140222+git/po/ca.po geany-plugins-1.24.1+dfsg/po/ca.po --- geany-plugins-1.24.0+20140222+git/po/ca.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/ca.po 2014-04-12 14:28:39.000000000 +0000 @@ -6,9 +6,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-03 05:19+0000\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2013-03-07 23:48+0100\n" "Last-Translator: Toni Garcia-Navarro \n" "Language-Team: ca \n" @@ -30,20 +30,17 @@ msgid "No." msgstr "No." -#: ../addons/src/ao_bookmarklist.c:341 -#: ../devhelp/src/dhp-object.c:494 +#: ../addons/src/ao_bookmarklist.c:341 ../devhelp/src/dhp-object.c:494 #: ../devhelp/devhelp/dh-window.c:1142 msgid "Contents" msgstr "Continguts" -#: ../addons/src/ao_bookmarklist.c:374 -#: ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Marcadors" #. complete update -#: ../addons/src/ao_tasks.c:373 -#: ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "Act_ualitza" @@ -51,13 +48,11 @@ msgid "_Hide Message Window" msgstr "_Amaga la Finestra de Missatges" -#: ../addons/src/ao_tasks.c:412 -#: ../debugger/src/stree.c:387 +#: ../addons/src/ao_tasks.c:412 ../debugger/src/stree.c:387 msgid "File" msgstr "Fitxer" -#: ../addons/src/ao_tasks.c:423 -#: ../debugger/src/bptree.c:702 +#: ../addons/src/ao_tasks.c:423 ../debugger/src/bptree.c:702 #: ../debugger/src/stree.c:394 msgid "Line" msgstr "Línia" @@ -65,10 +60,8 @@ #. i18n: in the programming language context, if you don't #. * have an ESTABLISHED term for it, leave it #. * untranslated. -#: ../addons/src/ao_tasks.c:434 -#: ../debugger/src/vtree.c:204 -#: ../devhelp/devhelp/dh-link.c:287 -#: ../geanylatex/src/bibtexlabels.c:68 +#: ../addons/src/ao_tasks.c:434 ../debugger/src/vtree.c:204 +#: ../devhelp/devhelp/dh-link.c:287 ../geanylatex/src/bibtexlabels.c:68 msgid "Type" msgstr "Tipus" @@ -84,17 +77,19 @@ msgid "Context:" msgstr "Context:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nom de la etiqueta a inserir:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format -msgid "%s will be replaced with your current selection. Please keep care on your selection" +msgid "" +"%s will be replaced with your current selection. Please keep care on your " +"selection" msgstr "" #: ../addons/src/ao_openuri.c:165 @@ -158,15 +153,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 -#: ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 -#: ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 -#: ../geanyvc/src/geanyvc.c:1798 -#: ../geniuspaste/src/geniuspaste.c:140 -#: ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 +#: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "No s'ha pogut crear el directori de configuració de connectors." @@ -212,7 +204,9 @@ msgstr "" #: ../addons/src/addons.c:504 -msgid "Whether to show the tasks of all open documents in the list or only those of the current document." +msgid "" +"Whether to show the tasks of all open documents in the list or only those of " +"the current document." msgstr "" #: ../addons/src/addons.c:511 @@ -251,6 +245,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navegació del codi" @@ -264,8 +266,7 @@ msgstr "" #. Add the menu item, sensitive only when a document is opened -#: ../codenav/src/goto_file.c:57 -#: ../codenav/src/goto_file.c:71 +#: ../codenav/src/goto_file.c:57 ../codenav/src/goto_file.c:71 msgid "Goto file" msgstr "Ves al fitxer" @@ -276,8 +277,7 @@ #. Add the menu item and make it sensitive only when a document is opened #. Frame, which is the returned widget -#: ../codenav/src/switch_head_impl.c:85 -#: ../codenav/src/switch_head_impl.c:99 +#: ../codenav/src/switch_head_impl.c:85 ../codenav/src/switch_head_impl.c:99 #: ../codenav/src/switch_head_impl.c:461 msgid "Switch header/implementation" msgstr "Canvia entre capçalera/implementació" @@ -315,20 +315,16 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 -#: ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:16 -#: ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Depuració" -#: ../debugger/src/vtree.c:173 -#: ../debugger/src/envtree.c:417 +#: ../debugger/src/vtree.c:173 ../debugger/src/envtree.c:417 msgid "Name" msgstr "Nom" -#: ../debugger/src/vtree.c:196 -#: ../debugger/src/envtree.c:422 +#: ../debugger/src/vtree.c:196 ../debugger/src/envtree.c:422 msgid "Value" msgstr "Valor" @@ -361,8 +357,7 @@ msgstr "Variables d'Entorn" #. if name is empty - offer to delete variable -#: ../debugger/src/envtree.c:260 -#: ../debugger/src/envtree.c:364 +#: ../debugger/src/envtree.c:260 ../debugger/src/envtree.c:364 #: ../debugger/src/debug.c:254 msgid "Delete variable?" msgstr "Elimina la variable?" @@ -398,9 +393,7 @@ msgstr "" #: ../debugger/src/dbm_gdb.c:782 -msgid "" -"~\"Loading target file.\\n" -"\"" +msgid "~\"Loading target file.\\n\"" msgstr "" #: ../debugger/src/dbm_gdb.c:782 @@ -410,8 +403,7 @@ #. setting asyncronous mode #. setting null-stop array printing #. enable pretty printing -#: ../debugger/src/dbm_gdb.c:786 -#: ../debugger/src/dbm_gdb.c:789 +#: ../debugger/src/dbm_gdb.c:786 ../debugger/src/dbm_gdb.c:789 #: ../debugger/src/dbm_gdb.c:792 msgid "Error configuring GDB" msgstr "S'ha produït un error en configurar GDB" @@ -436,16 +428,14 @@ msgid "Click an arrow to switch to a frame" msgstr "" -#: ../debugger/src/stree.c:363 -#: ../geanylatex/src/bibtexlabels.c:46 +#: ../debugger/src/stree.c:363 ../geanylatex/src/bibtexlabels.c:46 msgid "Address" msgstr "Adreça" #. i18n: in the programming language context, if you don't #. * have an ESTABLISHED term for it, leave it #. * untranslated. -#: ../debugger/src/stree.c:381 -#: ../devhelp/devhelp/dh-link.c:267 +#: ../debugger/src/stree.c:381 ../devhelp/devhelp/dh-link.c:267 msgid "Function" msgstr "Funció" @@ -458,8 +448,7 @@ msgid "Target" msgstr "Objectiu" -#: ../debugger/src/tabs.c:135 -#: ../scope/data/scope.glade.h:12 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Punts de ruptura" @@ -487,37 +476,31 @@ msgid "Run / Continue" msgstr "Executa / Continua" -#: ../debugger/src/keys.c:50 -#: ../debugger/src/btnpanel.c:101 +#: ../debugger/src/keys.c:50 ../debugger/src/btnpanel.c:101 msgid "Stop" msgstr "Atura" -#: ../debugger/src/keys.c:51 -#: ../debugger/src/btnpanel.c:98 +#: ../debugger/src/keys.c:51 ../debugger/src/btnpanel.c:98 msgid "Restart" msgstr "Reinicia" -#: ../debugger/src/keys.c:52 -#: ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "Pas avant" -#: ../debugger/src/keys.c:53 -#: ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" -#: ../debugger/src/keys.c:54 -#: ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "Pas enrere" -#: ../debugger/src/keys.c:55 -#: ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "" @@ -526,7 +509,8 @@ msgstr "Afegeix / Suprimeix el punt de ruptura" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +#, fuzzy +msgid "Jump to the current instruction" msgstr "Salta a la instrucció actual" #: ../debugger/src/watch_model.c:220 @@ -537,8 +521,7 @@ msgid "To edit source files stop debugging session" msgstr "" -#: ../debugger/src/btnpanel.c:90 -#: ../debugger/src/btnpanel.c:159 +#: ../debugger/src/btnpanel.c:90 ../debugger/src/btnpanel.c:159 msgid "Run" msgstr "Executa" @@ -558,6 +541,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -573,10 +564,8 @@ #. i18n: Please don't translate "Devhelp" (it's marked as translatable #. * for transliteration only) -#: ../devhelp/src/dhp-object.c:390 -#: ../devhelp/src/dhp-object.c:503 -#: ../devhelp/devhelp/dh-window.c:727 -#: ../devhelp/devhelp/dh-window.c:1034 +#: ../devhelp/src/dhp-object.c:390 ../devhelp/src/dhp-object.c:503 +#: ../devhelp/devhelp/dh-window.c:727 ../devhelp/devhelp/dh-window.c:1034 #: ../devhelp/devhelp/dh-window.c:1863 msgid "Devhelp" msgstr "" @@ -601,8 +590,7 @@ msgid "Zoom out" msgstr "Allunya" -#: ../devhelp/src/dhp-object.c:497 -#: ../devhelp/devhelp/dh-window.c:1152 +#: ../devhelp/src/dhp-object.c:497 ../devhelp/devhelp/dh-window.c:1152 msgid "Search" msgstr "Cerca" @@ -616,7 +604,9 @@ msgstr "" #: ../devhelp/src/dhp-plugin.c:43 -msgid "Adds support for looking up documentation in Devhelp, manual pages, and Google Code Search in the integrated viewer." +msgid "" +"Adds support for looking up documentation in Devhelp, manual pages, and " +"Google Code Search in the integrated viewer." msgstr "" #: ../devhelp/src/dhp-plugin.c:119 @@ -668,8 +658,7 @@ msgstr "Llibre:" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 -#: ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Llibre" @@ -705,10 +694,8 @@ msgid "Enum" msgstr "Enum" -#: ../devhelp/devhelp/dh-parser.c:91 -#: ../devhelp/devhelp/dh-parser.c:185 -#: ../devhelp/devhelp/dh-parser.c:249 -#: ../devhelp/devhelp/dh-parser.c:259 +#: ../devhelp/devhelp/dh-parser.c:91 ../devhelp/devhelp/dh-parser.c:185 +#: ../devhelp/devhelp/dh-parser.c:249 ../devhelp/devhelp/dh-parser.c:259 #, c-format msgid "Expected '%s', got '%s' at line %d, column %d" msgstr "S'esperava '%s', però s'ha obtingut '%s' a la línia %d, columna %d" @@ -720,17 +707,21 @@ #: ../devhelp/devhelp/dh-parser.c:136 #, c-format -msgid "\"title\", \"name\" and \"link\" elements are required at line %d, column %d" +msgid "" +"\"title\", \"name\" and \"link\" elements are required at line %d, column %d" msgstr "" #: ../devhelp/devhelp/dh-parser.c:204 #, c-format -msgid "\"name\" and \"link\" elements are required inside on line %d, column %d" +msgid "" +"\"name\" and \"link\" elements are required inside on line %d, column " +"%d" msgstr "" #: ../devhelp/devhelp/dh-parser.c:284 #, c-format -msgid "\"name\" and \"link\" elements are required inside '%s' on line %d, column %d" +msgid "" +"\"name\" and \"link\" elements are required inside '%s' on line %d, column %d" msgstr "" #: ../devhelp/devhelp/dh-parser.c:297 @@ -795,14 +786,12 @@ msgid "A developers' help browser for GNOME" msgstr "Un navegador d'ajuda per a desenvolupadors per al GNOME" -#: ../devhelp/devhelp/dh-window.c:759 -#: ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Fitxer" -#: ../devhelp/devhelp/dh-window.c:760 -#: ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "_Edita" @@ -831,13 +820,11 @@ msgid "_Print…" msgstr "Im_primir..." -#: ../devhelp/devhelp/dh-window.c:782 -#: ../devhelp/devhelp/eggfindbar.c:342 +#: ../devhelp/devhelp/dh-window.c:782 ../devhelp/devhelp/eggfindbar.c:342 msgid "Find Next" msgstr "Cerca el Següent" -#: ../devhelp/devhelp/dh-window.c:784 -#: ../devhelp/devhelp/eggfindbar.c:329 +#: ../devhelp/devhelp/dh-window.c:784 ../devhelp/devhelp/eggfindbar.c:329 msgid "Find Previous" msgstr "Cerca l'Anterior" @@ -915,8 +902,7 @@ msgid "Error opening the requested link." msgstr "S'ha produït un error en obrir l'enllaç." -#: ../devhelp/devhelp/dh-window.c:1649 -#: ../devhelp/devhelp/dh-window.c:1891 +#: ../devhelp/devhelp/dh-window.c:1649 ../devhelp/devhelp/dh-window.c:1891 msgid "Empty Page" msgstr "Pàgina Buida" @@ -924,13 +910,11 @@ msgid "Find:" msgstr "Cerca:" -#: ../devhelp/devhelp/eggfindbar.c:333 -#: ../devhelp/devhelp/eggfindbar.c:336 +#: ../devhelp/devhelp/eggfindbar.c:333 ../devhelp/devhelp/eggfindbar.c:336 msgid "Find previous occurrence of the search string" msgstr "Cerca l'anterior ocurrència de la cadena de cerca" -#: ../devhelp/devhelp/eggfindbar.c:346 -#: ../devhelp/devhelp/eggfindbar.c:349 +#: ../devhelp/devhelp/eggfindbar.c:346 ../devhelp/devhelp/eggfindbar.c:349 msgid "Find next occurrence of the search string" msgstr "Cerca la següent ocurrència de cadena de cerca" @@ -938,14 +922,12 @@ msgid "C_ase Sensitive" msgstr "_Diferencia entre Majúscules i Minúscules" -#: ../devhelp/devhelp/eggfindbar.c:362 -#: ../devhelp/devhelp/eggfindbar.c:365 +#: ../devhelp/devhelp/eggfindbar.c:362 ../devhelp/devhelp/eggfindbar.c:365 msgid "Toggle case sensitive search" msgstr "Commuta a una cerca que distingeixi entre majúscules i minúscules" #. All plugins must set name, description, version and author. -#: ../geanydoc/src/geanydoc.c:50 -#: ../geanydoc/src/geanydoc.c:347 +#: ../geanydoc/src/geanydoc.c:50 ../geanydoc/src/geanydoc.c:347 msgid "Doc" msgstr "Document" @@ -953,8 +935,7 @@ msgid "Call documentation viewer on current symbol." msgstr "" -#: ../geanydoc/src/geanydoc.c:170 -#: ../geanyvc/src/geanyvc.c:416 +#: ../geanydoc/src/geanydoc.c:170 ../geanyvc/src/geanyvc.c:416 msgid "Could not parse the output of command" msgstr "No s'ha pogut llegir l'eixida de l'ordre" @@ -990,55 +971,64 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Selecció A_ddicional" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "Modalitat de _Columna" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Modalitat de columna" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Selecciona Fins a la _Línia" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Selecciona fins a la línia" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Vés al Parèntesi _Corresponent" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Vés al parèntesi corresponent" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Converteix la selecció en una taula" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1217,7 +1207,9 @@ #: ../geanygendoc/src/ggd-plugin.c:318 #, c-format msgid "Failed to find configuration file for file type \"%s\": %s" -msgstr "No s'ha pogut trobar un fitxer de configuració per al tipus de fitxer \"%s\": %s" +msgstr "" +"No s'ha pogut trobar un fitxer de configuració per al tipus de fitxer \"%s" +"\": %s" #: ../geanygendoc/src/ggd-plugin.c:330 msgid "" @@ -1231,8 +1223,7 @@ msgid "Failed to load file \"%s\": %s" msgstr "No s'ha pogut carregar el fitxer \"%s\": %s" -#: ../geanygendoc/src/ggd-plugin.c:415 -#: ../geanygendoc/src/ggd-plugin.c:426 +#: ../geanygendoc/src/ggd-plugin.c:415 ../geanygendoc/src/ggd-plugin.c:426 msgid "Insert Documentation Comment" msgstr "" @@ -1292,7 +1283,13 @@ msgstr "De_sar el fitxer abans de generar la documentació" #: ../geanygendoc/src/ggd-plugin.c:627 -msgid "Whether the current document should be saved to disc before generating the documentation. This is a technical detail, but it is currently needed to have an up-to-date tag list. If you disable this option and ask for documentation generation on a modified document, the behavior may be surprising since the comment will be generated for the last saved state of this document and not the current one." +msgid "" +"Whether the current document should be saved to disc before generating the " +"documentation. This is a technical detail, but it is currently needed to " +"have an up-to-date tag list. If you disable this option and ask for " +"documentation generation on a modified document, the behavior may be " +"surprising since the comment will be generated for the last saved state of " +"this document and not the current one." msgstr "" #. indent @@ -1301,7 +1298,9 @@ msgstr "" #: ../geanygendoc/src/ggd-plugin.c:639 -msgid "Whether the inserted documentation should be indented to fit the indentation at the insertion position." +msgid "" +"Whether the inserted documentation should be indented to fit the indentation " +"at the insertion position." msgstr "" #. Documentation type @@ -1311,7 +1310,10 @@ msgstr "Tipus de documentació" #: ../geanygendoc/src/ggd-plugin.c:656 -msgid "Choose the documentation type to use with each file type. The special language \"All\" on top of the list is used to choose the default documentation type, used for all languages that haven't one set." +msgid "" +"Choose the documentation type to use with each file type. The special " +"language \"All\" on top of the list is used to choose the default " +"documentation type, used for all languages that haven't one set." msgstr "" #. Environ editor @@ -1320,11 +1322,12 @@ msgstr "Entorn global" #: ../geanygendoc/src/ggd-plugin.c:664 -msgid "Global environment overrides and additions. This environment will be merged with the file-type-specific ones." +msgid "" +"Global environment overrides and additions. This environment will be merged " +"with the file-type-specific ones." msgstr "" -#: ../geanygendoc/src/ggd-utils.c:184 -#: ../geanygendoc/src/ggd-utils.c:195 +#: ../geanygendoc/src/ggd-utils.c:184 ../geanygendoc/src/ggd-utils.c:195 #, c-format msgid "File \"%s\" exists but is not a regular file" msgstr "El fitxer \"%s\" existeix però no és un fitxer normal" @@ -1341,7 +1344,8 @@ #: ../geanygendoc/src/ggd.c:114 #, c-format -msgid "Argument parsing regular expression did not match (argument list was: \"%s\")" +msgid "" +"Argument parsing regular expression did not match (argument list was: \"%s\")" msgstr "" #: ../geanygendoc/src/ggd.c:248 @@ -1378,7 +1382,9 @@ msgstr "Opció desconeguda" #: ../geanygendoc/src/ggd-options.c:335 -msgid "Invalid option or proxy: either the proxy's property or the option type is incompatible." +msgid "" +"Invalid option or proxy: either the proxy's property or the option type is " +"incompatible." msgstr "" #: ../geanygendoc/src/ggd-options.c:512 @@ -1411,77 +1417,76 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 -#: ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Insereix Números" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Comptant..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "S'està preparant..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Inserint..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Inici:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Pas:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Cartes:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "S_uperior" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "_Inferior" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "Prefix base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Separació:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Zero" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Insereix _Números" @@ -1726,7 +1731,9 @@ msgstr "" #: ../geanylatex/src/bibtexlabels.c:115 -msgid "Hidden field used for specifying or overriding the alphabetical order of entries" +msgid "" +"Hidden field used for specifying or overriding the alphabetical order of " +"entries" msgstr "" #: ../geanylatex/src/bibtexlabels.c:116 @@ -1805,18 +1812,15 @@ msgid "Underlines selected text" msgstr "Subratlla el text seleccionat" -#: ../geanylatex/src/geanylatex.c:120 -#: ../geanylatex/src/formatpatterns.c:45 +#: ../geanylatex/src/geanylatex.c:120 ../geanylatex/src/formatpatterns.c:45 msgid "Centered" msgstr "Centrat" -#: ../geanylatex/src/geanylatex.c:121 -#: ../geanylatex/src/formatpatterns.c:46 +#: ../geanylatex/src/geanylatex.c:121 ../geanylatex/src/formatpatterns.c:46 msgid "Left side oriented" msgstr "" -#: ../geanylatex/src/geanylatex.c:122 -#: ../geanylatex/src/formatpatterns.c:47 +#: ../geanylatex/src/geanylatex.c:122 ../geanylatex/src/formatpatterns.c:47 msgid "Right side oriented" msgstr "" @@ -1912,20 +1916,20 @@ msgid "BibTeX reference name:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "Benvolgut / Benvolguda" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "Assitent LaTeX" @@ -1933,338 +1937,342 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 -#: ../markdown/src/conf.c:668 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Plantilla:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "Predeterminat" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Article" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Informe" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Carta (8,5 x 11 polzades)" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Presentació" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "Codificació:" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "Definiu la codificació per al nou document" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "Mida de la font" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Autor:" -#: ../geanylatex/src/geanylatex.c:1819 -msgid "Sets the value of the \\author command. In most cases this should be your name" +#: ../geanylatex/src/geanylatex.c:1818 +msgid "" +"Sets the value of the \\author command. In most cases this should be your " +"name" msgstr "" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "Data:" -#: ../geanylatex/src/geanylatex.c:1836 -msgid "Sets the value of the \\date command inside header of your new created LaTeX-document. Keeping it at \\today is a good decision if you don't need any fixed date." +#: ../geanylatex/src/geanylatex.c:1835 +msgid "" +"Sets the value of the \\date command inside header of your new created LaTeX-" +"document. Keeping it at \\today is a good decision if you don't need any " +"fixed date." msgstr "" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "Títol:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "Mida del paper:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "Orientació del Paper:" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" -"Keep in mind: To compile your document these classes have to be installed before." +"Keep in mind: To compile your document these classes have to be installed " +"before." msgstr "" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "Usa mode d'esborrany" -#: ../geanylatex/src/geanylatex.c:1911 -msgid "Set the draft flag inside new created documents to get documents with a number of debugging helpers" +#: ../geanylatex/src/geanylatex.c:1910 +msgid "" +"Set the draft flag inside new created documents to get documents with a " +"number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "Executa l'assistent per a LaTeX" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "Insereix \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "Insereix \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "Insereix salt de línia \\\\" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "Insereix una ordre" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "Reemplaça els caràcters especials HTML" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "Insereix \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "Insereix \\usepackage{}" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" "Please report all bugs or feature requests to one of the authors." msgstr "" -#: ../geanylatex/src/geanylatex.c:2026 -msgid "glatex_set_autocompletion_contextsize has been initialized with an invalid value. Default value taken. Please check your configuration file" +#: ../geanylatex/src/geanylatex.c:2025 +msgid "" +"glatex_set_autocompletion_contextsize has been initialized with an invalid " +"value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 -#: ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "pàgina \\pageref{{{reference}}}" -#: ../geanylatex/src/geanylatex.c:2052 -#: ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "\\ref{{{reference}}}, pàgina \\pageref{{{reference}}}" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 -#: ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "_Assistent LaTeX" -#: ../geanylatex/src/geanylatex.c:2119 -#: ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "I_nsereix Caràcter E_special" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "Insereix _Referència" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "Insereix referències al document" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "Insereix E_tiqueta" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "Insereix _Entorn" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "Insereix P_aquet" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 -#: ../scope/data/scope.glade.h:82 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Format" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "Mida de la font" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "_Reemplaçament de Caràcters Especials HTML" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "Reemplaçament en _Massa de Caràcters Especial HTML" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "Activa/Desactiva el Reemplaçament de Caràcters Especials HTML" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "Insereix _Ordre" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "Insereix referència B_ibTeX" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "" @@ -2420,16 +2428,16 @@ msgid "Creating dummy text with Geany" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Introduïu la longitud del text Lipsum" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2441,8 +2449,7 @@ msgid "Insert Lipsum text" msgstr "Insereix text Lipsum" -#: ../geanylua/glspi.h:100 -#: ../geanylua/gsdlg_lua.c:95 +#: ../geanylua/glspi.h:100 ../geanylua/gsdlg_lua.c:95 #: ../geanylua/glspi_kfile.c:54 #, c-format msgid "" @@ -2457,8 +2464,7 @@ " expected type \"%s\" or \"%s\" for argument #%d\n" msgstr "" -#: ../geanylua/glspi.h:128 -#: ../geanylua/gsdlg_lua.c:108 +#: ../geanylua/glspi.h:128 ../geanylua/gsdlg_lua.c:108 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2482,8 +2488,7 @@ msgid "Lua Script Plugin" msgstr "" -#: ../geanylua/glspi_run.c:90 -#: ../geanylua/glspi_run.c:97 +#: ../geanylua/glspi_run.c:90 ../geanylua/glspi_run.c:97 msgid "Lua script error:" msgstr "" @@ -2544,8 +2549,7 @@ "to add your own custom configuration dialog." msgstr "" -#: ../geanylua/gsdlg.c:103 -#: ../geanylua/glspi_dlg.c:420 +#: ../geanylua/gsdlg.c:103 ../geanylua/glspi_dlg.c:420 msgid "Open file" msgstr "Obre un Fitxer" @@ -2557,19 +2561,19 @@ msgid "Browse..." msgstr "Navega..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Selecciona un Color" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Tria..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Tria la font" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Selecciona..." @@ -2594,8 +2598,7 @@ "not enough arguments for command \"%s\".\n" msgstr "" -#: ../geanylua/glspi_sci.c:652 -#: ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2630,14 +2633,14 @@ msgid "Save file" msgstr "Desa el Fitxer" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2676,21 +2679,21 @@ "Please check your installation." msgstr "" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -2838,7 +2841,9 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:93 -msgid "Move Cursor to 1st non-whitespace character of line, or 1st character of line if already at 1st non-whitespace character" +msgid "" +"Move Cursor to 1st non-whitespace character of line, or 1st character of " +"line if already at 1st non-whitespace character" msgstr "" #: ../geanymacro/src/geanymacro.c:95 @@ -2922,7 +2927,9 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:116 -msgid "Extend Selection to 1st non-whitespace character of line, or 1st character of line if already at 1st non-whitespace character" +msgid "" +"Extend Selection to 1st non-whitespace character of line, or 1st character " +"of line if already at 1st non-whitespace character" msgstr "" #: ../geanymacro/src/geanymacro.c:118 @@ -2974,7 +2981,9 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:131 -msgid "Extend Rectangular Selection to 1st non-whitespace character of line, or 1st character of line if already at 1st non-whitespace character" +msgid "" +"Extend Rectangular Selection to 1st non-whitespace character of line, or 1st " +"character of line if already at 1st non-whitespace character" msgstr "" #: ../geanymacro/src/geanymacro.c:134 @@ -2985,8 +2994,7 @@ msgid "Toggle Insert/Overwrite mode" msgstr "Commuta entre el mode d'Inserció i el mode de Sobreescriptura" -#: ../geanymacro/src/geanymacro.c:137 -#: ../pretty-printer/src/ConfigUI.c:239 +#: ../geanymacro/src/geanymacro.c:137 ../pretty-printer/src/ConfigUI.c:239 msgid "Tab" msgstr "Tabulador" @@ -2994,8 +3002,7 @@ msgid "Newline" msgstr "Línia nova" -#: ../geanymacro/src/geanymacro.c:140 -#: ../geanymacro/src/geanymacro.c:1625 +#: ../geanymacro/src/geanymacro.c:140 ../geanymacro/src/geanymacro.c:1625 #, c-format msgid "Insert/replace with \"\"" msgstr "" @@ -3017,7 +3024,23 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:147 -msgid "Insert duplicate of selected text after selection. If nothing selected, duplicate line" +msgid "" +"Insert duplicate of selected text after selection. If nothing selected, " +"duplicate line" +msgstr "" + +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "Cerca:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "Concorda al començament de la paraula" + +#: ../geanymacro/src/geanymacro.c:152 +msgid "Set start of search to beginning of selection" msgstr "" #: ../geanymacro/src/geanymacro.c:181 @@ -3063,23 +3086,34 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:857 -msgid "These are sequences of actions that can then be repeated with a single key combination. " +msgid "" +"These are sequences of actions that can then be repeated with a single key " +"combination. " msgstr "" #: ../geanymacro/src/geanymacro.c:858 -msgid "So if you had dozens of lines where you wanted to delete the last 2 characters, you could simply start recording, press End, Backspace, Backspace, down line and then stop recording. " +msgid "" +"So if you had dozens of lines where you wanted to delete the last 2 " +"characters, you could simply start recording, press End, Backspace, " +"Backspace, down line and then stop recording. " msgstr "" #: ../geanymacro/src/geanymacro.c:860 -msgid "Then simply trigger the macro and it would automatically edit the line and move to the next. " +msgid "" +"Then simply trigger the macro and it would automatically edit the line and " +"move to the next. " msgstr "" #: ../geanymacro/src/geanymacro.c:861 -msgid "Select Record Macro from the Tools menu and you will be prompted with a dialog box. " +msgid "" +"Select Record Macro from the Tools menu and you will be prompted with a " +"dialog box. " msgstr "" #: ../geanymacro/src/geanymacro.c:862 -msgid "You need to specify a key combination that isn't being used, and a name for the macro to help you identify it. " +msgid "" +"You need to specify a key combination that isn't being used, and a name for " +"the macro to help you identify it. " msgstr "" #: ../geanymacro/src/geanymacro.c:864 @@ -3087,7 +3121,9 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:865 -msgid "What you do in the editor is then recorded until you select Stop Recording Macro from the Tools menu. " +msgid "" +"What you do in the editor is then recorded until you select Stop Recording " +"Macro from the Tools menu. " msgstr "" #: ../geanymacro/src/geanymacro.c:867 @@ -3103,27 +3139,37 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:870 -msgid "You can also click on a macro's name and change it, or the key combination and re-define that assuming that it's not already in use. " +msgid "" +"You can also click on a macro's name and change it, or the key combination " +"and re-define that assuming that it's not already in use. " msgstr "" #: ../geanymacro/src/geanymacro.c:872 -msgid "Selecting the edit option allows you to view all the individual elements that make up the macro. " +msgid "" +"Selecting the edit option allows you to view all the individual elements " +"that make up the macro. " msgstr "" #: ../geanymacro/src/geanymacro.c:874 msgid "" -"You can select a diferent command for each element, move them, add new elements, delete elements, or if it's replace/insert, you can edit the text that replaces the selected text, or is inserted.\n" +"You can select a diferent command for each element, move them, add new " +"elements, delete elements, or if it's replace/insert, you can edit the text " +"that replaces the selected text, or is inserted.\n" "\n" msgstr "" #: ../geanymacro/src/geanymacro.c:878 msgid "" -"The only thing to bear in mind is that undo and redo actions are not recorded, and won't be replayed when the macro is re-run.\n" +"The only thing to bear in mind is that undo and redo actions are not " +"recorded, and won't be replayed when the macro is re-run.\n" "\n" msgstr "" #: ../geanymacro/src/geanymacro.c:881 -msgid "You can alter the default behaviour of this plugin by selecting Plugin Manager under the Tools menu, selecting this plugin, and cliking Preferences. " +msgid "" +"You can alter the default behaviour of this plugin by selecting Plugin " +"Manager under the Tools menu, selecting this plugin, and cliking " +"Preferences. " msgstr "" #: ../geanymacro/src/geanymacro.c:883 @@ -3131,11 +3177,19 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:884 -msgid "Save Macros when close Geany - If this is selected then Geany will save any recorded macros and reload them for use the next time you open Geany, if not they will be lost when Geany is closed.\n" +msgid "" +"Save Macros when close Geany - If this is selected then Geany will save any " +"recorded macros and reload them for use the next time you open Geany, if not " +"they will be lost when Geany is closed.\n" msgstr "" #: ../geanymacro/src/geanymacro.c:887 -msgid "Ask before replaceing existing Macros - If this is selected then if you try recording a macro over an existing one it will check before over-writing it, giving you the option of trying a different name or key trigger combination, otherwise it will simply erase any existing macros with the same name, or the same key trigger combination." +msgid "" +"Ask before replaceing existing Macros - If this is selected then if you try " +"recording a macro over an existing one it will check before over-writing it, " +"giving you the option of trying a different name or key trigger combination, " +"otherwise it will simply erase any existing macros with the same name, or " +"the same key trigger combination." msgstr "" #. create dialog box @@ -3190,16 +3244,13 @@ msgstr "Opcions de Cerca:" #. create buttons -#: ../geanymacro/src/geanymacro.c:1393 -#: ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 -#: ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "_D'acord" -#: ../geanymacro/src/geanymacro.c:1394 -#: ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "_Cancel·la" @@ -3216,8 +3267,7 @@ msgid "Search for contents of clipboard" msgstr "" -#: ../geanymacro/src/geanymacro.c:1424 -#: ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Cerca:" @@ -3251,60 +3301,58 @@ msgid "Text:" msgstr "Text:" -#: ../geanymacro/src/geanymacro.c:1571 -#: ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "Edita: %s" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "Esdeveniment" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "Mou Am_unt" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "Mou A_vall" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 -#: ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" msgstr "_Elimina" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "Edita les Macros" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "Nom de la Macro" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3324,18 +3372,18 @@ msgstr "_Edita les Macros" #. *< \brief It's the information message about geany mini script -#: ../geanyminiscript/src/gms_gui.c:130 +#: ../geanyminiscript/src/gms_gui.c:129 msgid "" "GMS : Geany Mini-Script filter Plugin\n" -"This plugin is a tool to apply a script filter on :\n" +"This plugin is a tool to apply a script filter on:\n" " o the text selection,\n" " o the current document,\n" " o all documents of the current session.\n" "\n" -"The filter type can be : \n" -" o Unix shell script, \n" -" o perl script, \n" -" o python script, \n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" " o sed commands,\n" " o awk script.\n" "\n" @@ -3350,79 +3398,79 @@ "or (at your option) any later version." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:254 +#: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:311 +#: ../geanyminiscript/src/gms_gui.c:310 msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:420 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:448 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:453 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:458 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:463 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:471 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:504 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "selecció" -#: ../geanyminiscript/src/gms_gui.c:511 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "document" -#: ../geanyminiscript/src/gms_gui.c:512 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "sessió" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:523 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:529 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:530 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:751 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" @@ -3431,7 +3479,8 @@ msgstr "" #: ../geanyminiscript/src/gms.c:59 -msgid "A tool to apply a script filter on a text selection or current document(s)" +msgid "" +"A tool to apply a script filter on a text selection or current document(s)" msgstr "" #: ../geanyminiscript/src/gms.c:60 @@ -3461,7 +3510,8 @@ #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" -"'%s' has been edited since it was last saved by geany. Marker positions may be unreliable and will not be loaded.\n" +"'%s' has been edited since it was last saved by geany. Marker positions may " +"be unreliable and will not be loaded.\n" "Press Ignore to try an load markers anyway." msgstr "" @@ -3512,17 +3562,25 @@ #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" -"This Plugin implements Numbered Bookmarks in Geany, as well as remembering the state of folds, and positions of standard non-numbered bookmarks when a file is saved.\n" +"This Plugin implements Numbered Bookmarks in Geany, as well as remembering " +"the state of folds, and positions of standard non-numbered bookmarks when a " +"file is saved.\n" "\n" -"It allows you to use up to 10 numbered bookmarks. To set a numbered bookmark press Ctrl+Shift+a number from 0 to 9. You will see a marker apear next to the line number. If you press Ctrl+Shift+a number on a line that already has that bookmark number then it removes the bookmark, otherwise it will move the bookmark there if it was set on a different line, or create it if it had not already been set. Only the most recently set bookmark on a line will be shown, but you can have more than one bookmark per line. To move to a previously set bookmark, press Ctrl+a number from 0 to 9." +"It allows you to use up to 10 numbered bookmarks. To set a numbered bookmark " +"press Ctrl+Shift+a number from 0 to 9. You will see a marker apear next to " +"the line number. If you press Ctrl+Shift+a number on a line that already has " +"that bookmark number then it removes the bookmark, otherwise it will move " +"the bookmark there if it was set on a different line, or create it if it had " +"not already been set. Only the most recently set bookmark on a line will be " +"shown, but you can have more than one bookmark per line. To move to a " +"previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" -#: ../geanypg/src/decrypt_cb.c:33 -#: ../geanypg/src/encrypt_cb.c:32 +#: ../geanypg/src/decrypt_cb.c:33 ../geanypg/src/encrypt_cb.c:32 #: ../geanypg/src/sign_cb.c:33 msgid "couldn't create tempfile" msgstr "" @@ -3532,7 +3590,8 @@ msgid "" "The key with user ID \"%s\" has validity \"%s\".\n" "\n" -"WARNING: It is NOT certain that the key belongs to the person named in the user ID.\n" +"WARNING: It is NOT certain that the key belongs to the person named in the " +"user ID.\n" "\n" "Are you *really* sure you want to use this key anyway?" msgstr "" @@ -3555,8 +3614,7 @@ msgid "Using libgpgme version:" msgstr "" -#: ../geanypg/src/geanypg.c:60 -#: ../geanypg/src/geanypg.c:61 +#: ../geanypg/src/geanypg.c:60 ../geanypg/src/geanypg.c:61 msgid "Error from" msgstr "" @@ -3597,46 +3655,47 @@ msgstr "Selecciona el signador" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Contrasenya" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "Introduïu la contrasenya per a" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 -msgid "Error, Passphrase input without using gpg-agent is not supported on Windows yet." +#: ../geanypg/src/pinentry.c:199 +msgid "" +"Error, Passphrase input without using gpg-agent is not supported on Windows " +"yet." msgstr "" #: ../geanypg/src/verify_aux.c:53 msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 -#: ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "desconegut" @@ -3660,8 +3719,7 @@ msgid "ultimate" msgstr "" -#: ../geanypg/src/verify_aux.c:72 -#: ../geanypg/src/verify_aux.c:74 +#: ../geanypg/src/verify_aux.c:72 ../geanypg/src/verify_aux.c:74 msgid "[bad validity value]" msgstr "" @@ -3726,62 +3784,49 @@ "notations .: %s\n" msgstr "" -#: ../geanypg/src/verify_aux.c:119 -#: ../geanypg/src/verify_aux.c:124 +#: ../geanypg/src/verify_aux.c:119 ../geanypg/src/verify_aux.c:124 msgid "Unknown\n" msgstr "Desconegut\n" -#: ../geanypg/src/verify_aux.c:129 -#: ../geanypg/src/verify_aux.c:136 -#: ../geanypg/src/verify_aux.c:147 -#: ../geanypg/src/verify_aux.c:154 +#: ../geanypg/src/verify_aux.c:129 ../geanypg/src/verify_aux.c:136 +#: ../geanypg/src/verify_aux.c:147 ../geanypg/src/verify_aux.c:154 msgid "[None]" msgstr "[Cap]" -#: ../geanypg/src/verify_aux.c:134 -#: ../geanypg/src/verify_aux.c:135 -#: ../geanypg/src/verify_aux.c:152 -#: ../geanypg/src/verify_aux.c:153 +#: ../geanypg/src/verify_aux.c:134 ../geanypg/src/verify_aux.c:135 +#: ../geanypg/src/verify_aux.c:152 ../geanypg/src/verify_aux.c:153 msgid "Unknown" msgstr "Desconegut" -#: ../geanypg/src/verify_aux.c:137 -#: ../geanypg/src/verify_aux.c:155 +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "n/a" msgstr "n/d" -#: ../geanypg/src/verify_aux.c:137 -#: ../geanypg/src/verify_aux.c:155 +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "bad" msgstr "incorrecte" -#: ../geanypg/src/verify_aux.c:137 -#: ../geanypg/src/verify_aux.c:155 +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "okay" msgstr "" -#: ../geanypg/src/verify_aux.c:137 -#: ../geanypg/src/verify_aux.c:155 +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "RFU" msgstr "" -#: ../geanypg/src/verify_aux.c:138 -#: ../geanypg/src/verify_aux.c:156 +#: ../geanypg/src/verify_aux.c:138 ../geanypg/src/verify_aux.c:156 msgid " wrong-key-usage" msgstr " us-de-clau-incorrecte" -#: ../geanypg/src/verify_aux.c:139 -#: ../geanypg/src/verify_aux.c:156 +#: ../geanypg/src/verify_aux.c:139 ../geanypg/src/verify_aux.c:156 msgid " chain-model" msgstr " model-de-cadena" -#: ../geanypg/src/verify_aux.c:140 -#: ../geanypg/src/verify_aux.c:157 +#: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 msgid "yes" msgstr "sí" -#: ../geanypg/src/verify_aux.c:140 -#: ../geanypg/src/verify_aux.c:157 +#: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 msgid "no" msgstr "no" @@ -3805,9 +3850,8 @@ msgid "Open a signature file" msgstr "Obre un fitxer de signatura" -#: ../geanyprj/src/geanyprj.c:38 -#: ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Projecte" @@ -3827,8 +3871,7 @@ msgid "Project Preferences" msgstr "Preferències del Projecte" -#: ../geanyprj/src/menu.c:101 -#: ../geanyprj/src/menu.c:377 +#: ../geanyprj/src/menu.c:101 ../geanyprj/src/menu.c:377 #: ../geanyprj/src/sidebar.c:172 msgid "New Project" msgstr "Projecte Nou" @@ -3837,8 +3880,7 @@ msgid "C_reate" msgstr "C_rea" -#: ../geanyprj/src/menu.c:123 -#: ../scope/data/scope.glade.h:29 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nom:" @@ -3855,8 +3897,14 @@ msgstr "Directori base:" #: ../geanyprj/src/menu.c:160 -msgid "Base directory of all files that make up the project. This can be a new path, or an existing directory tree. You can use paths relative to the project filename." -msgstr "Directori base per a tots els fitxers que formen part del projecte. Pot ser un directori nou, o un ja existent. Podeu usar directoris relatius al fitxer de projecte." +msgid "" +"Base directory of all files that make up the project. This can be a new " +"path, or an existing directory tree. You can use paths relative to the " +"project filename." +msgstr "" +"Directori base per a tots els fitxers que formen part del projecte. Pot ser " +"un directori nou, o un ja existent. Podeu usar directoris relatius al fitxer " +"de projecte." #: ../geanyprj/src/menu.c:163 msgid "Choose Project Base Path" @@ -3867,7 +3915,10 @@ msgstr "" #: ../geanyprj/src/menu.c:172 -msgid "Automatically add files that match project type on project load automatically. You can't manually add/remove files if you checked this option, since your modification will be lost on on next project load" +msgid "" +"Automatically add files that match project type on project load " +"automatically. You can't manually add/remove files if you checked this " +"option, since your modification will be lost on on next project load" msgstr "" #: ../geanyprj/src/menu.c:180 @@ -3883,23 +3934,19 @@ msgid "_Project" msgstr "_Projecte" -#: ../geanyprj/src/menu.c:386 -#: ../geanyprj/src/sidebar.c:181 +#: ../geanyprj/src/menu.c:386 ../geanyprj/src/sidebar.c:181 msgid "Delete Project" msgstr "Elimina el Pojecte" -#: ../geanyprj/src/menu.c:397 -#: ../geanyprj/src/sidebar.c:194 +#: ../geanyprj/src/menu.c:397 ../geanyprj/src/sidebar.c:194 msgid "Add File" msgstr "Afegeix un Fitxer" -#: ../geanyprj/src/menu.c:408 -#: ../geanyprj/src/sidebar.c:216 +#: ../geanyprj/src/menu.c:408 ../geanyprj/src/sidebar.c:216 msgid "Preferences" msgstr "Preferències" -#: ../geanyprj/src/menu.c:419 -#: ../geanyprj/src/sidebar.c:229 +#: ../geanyprj/src/menu.c:419 ../geanyprj/src/sidebar.c:229 msgid "Find in Project" msgstr "Cerca en el Projecte" @@ -3907,8 +3954,7 @@ msgid "Remove File" msgstr "Elimina un Fitxer" -#: ../geanyprj/src/sidebar.c:240 -#: ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Amaga la Barra _Lateral" @@ -3917,12 +3963,57 @@ msgid "Project \"%s\" opened." msgstr "S'ha obert el projecte \"%s\"." +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "No s'ha pogut crear el directori de configuració '%s'" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "No s'ha trobat el directori %s!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "No s'ha pogut crear el directori de configuració '%s'" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "" #: ../geanysendmail/src/geanysendmail.c:44 -msgid "A little plugin to send the current file as attachment by user's favorite mailer" +msgid "" +"A little plugin to send the current file as attachment by user's favorite " +"mailer" msgstr "" #: ../geanysendmail/src/geanysendmail.c:98 @@ -3933,40 +4024,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "Introduïu l'adreça electrònica del destinatari:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:142 -msgid "Recipient address placeholder not found. The executed command might have failed." +#: ../geanysendmail/src/geanysendmail.c:144 +msgid "" +"Recipient address placeholder not found. The executed command might have " +"failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Correu" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Envia per correu" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Ruta i opcions per al programa de correu:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -3977,29 +4070,30 @@ "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Mostra les icones de les barres d'eines" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Envia el fitxer per correu" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Envia el docu_ment per correu electrònic" -#: ../geanysendmail/src/geanysendmail.c:382 -msgid "Sends the opened file as unzipped attachment by any mailer from your $PATH" +#: ../geanysendmail/src/geanysendmail.c:386 +msgid "" +"Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" #: ../geanyvc/src/geanyvc.c:53 @@ -4015,337 +4109,358 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:609 -#: ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" -#: ../geanyvc/src/geanyvc.c:646 -#: ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "No s'han fet canvis." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "No hi ha cap historial disponible" -#: ../geanyvc/src/geanyvc.c:916 -#: ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Esteu segurs de voler revertir: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Esteu segurs de voler afegir: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Esteu segurs de voler eliminar: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Esteu segurs de voler actualitzar?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Estat" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Directori base" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Confirmació" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "" -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format -msgid "Error while setting up language for spellchecking. Please check configuration. Error message was: %s" +msgid "" +"Error while setting up language for spellchecking. Please check " +"configuration. Error message was: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" -#: ../geanyvc/src/geanyvc.c:1837 -msgid "If this option is activated, every new by the VC-plugin created document tab will be marked as changed. Even this option is useful in some cases, it could cause a big number of annoying \"Do you want to save\"-dialogs." +#: ../geanyvc/src/geanyvc.c:1893 +msgid "" +"If this option is activated, every new by the VC-plugin created document tab " +"will be marked as changed. Even this option is useful in some cases, it " +"could cause a big number of annoying \"Do you want to save\"-dialogs." msgstr "" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "Annexar el menú a la barra d'eines" -#: ../geanyvc/src/geanyvc.c:1878 -msgid "Whether menu for this plugin are getting placed either inside tools menu or directly inside Geany's menubar.Will take in account after next start of GeanyVC" +#: ../geanyvc/src/geanyvc.c:1934 +msgid "" +"Whether menu for this plugin are getting placed either inside tools menu or " +"directly inside Geany's menubar.Will take in account after next start of " +"GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Activa CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Activa GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Activa SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Activa SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Activa Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Activa Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 -#: ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diferències" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 -#: ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Reverteix" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 -#: ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Original" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Afegeix el fitxer al repositori." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Elimina el fitxer del repositori." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Directori" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Directori _Base" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Mostra diferències entre fitxers" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Mostra diferències entre directoris" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Mostra diferències entre directoris base" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Mostra l'estat" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Actualitza el fitxer" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "Control de _Versions" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "_Estat" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Mostra l'estat." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Actualitza des dels repositoris." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "Publica els _canvis" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Publica els canvis." @@ -4405,8 +4520,7 @@ msgid "_Paste it!" msgstr "" -#: ../gproject/src/gproject-main.c:36 -#: ../gproject/src/gproject-project.c:455 +#: ../gproject/src/gproject-main.c:36 ../gproject/src/gproject-project.c:455 msgid "GProject" msgstr "" @@ -4447,7 +4561,8 @@ msgstr "Patrons de fitxers de codi font:" #: ../gproject/src/gproject-project.c:412 -msgid "Space separated list of patterns that are used to identify source files." +msgid "" +"Space separated list of patterns that are used to identify source files." msgstr "" #: ../gproject/src/gproject-project.c:417 @@ -4455,7 +4570,9 @@ msgstr "Patrons de fitxers de capçalera:" #: ../gproject/src/gproject-project.c:423 -msgid "Space separated list of patterns that are used to identify headers. Used mainly for header/source swapping." +msgid "" +"Space separated list of patterns that are used to identify headers. Used " +"mainly for header/source swapping." msgstr "" #: ../gproject/src/gproject-project.c:429 @@ -4463,7 +4580,9 @@ msgstr "" #: ../gproject/src/gproject-project.c:435 -msgid "Space separated list of patterns that are used to identify directories that are not scanned for source files." +msgid "" +"Space separated list of patterns that are used to identify directories that " +"are not scanned for source files." msgstr "" #: ../gproject/src/gproject-project.c:443 @@ -4471,87 +4590,91 @@ msgstr "" #: ../gproject/src/gproject-project.c:445 -msgid "Generate tag list for all project files instead of only for the currently opened files. Too slow for big projects (>1000 files) and should be disabled in this case." +msgid "" +"Generate tag list for all project files instead of only for the currently " +"opened files. Too slow for big projects (>1000 files) and should be disabled " +"in this case." msgstr "" #: ../gproject/src/gproject-project.c:451 -msgid "Note: set the patterns of files belonging to the project under the Project tab." +msgid "" +"Note: set the patterns of files belonging to the project under the Project " +"tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Sensible a m_ajúscules" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Actualitza tot" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Expandeix-ho tot" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Tanca-ho Tot" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Expandeix-ho Tot" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Cerca en els Fitxers" #. POSITION OF VIEW -#: ../markdown/src/conf.c:572 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "Posició:" -#: ../markdown/src/conf.c:578 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "Barra Lateral" -#: ../markdown/src/conf.c:586 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "Finestra de missatges" -#: ../markdown/src/conf.c:600 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "Font:" -#: ../markdown/src/conf.c:618 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "Tipus de Lletra per a Codi:" -#: ../markdown/src/conf.c:636 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "Color del Fons:" -#: ../markdown/src/conf.c:653 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "Color del Primer Pla:" -#: ../markdown/src/conf.c:672 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "" @@ -4567,6 +4690,161 @@ msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "Vés a la pàgina anterior" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "Vés a la pàgina següent" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +msgid "Toggle current translation fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "No s'ha pogut carregar la configuració: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" +"No s'ha pogut trobar un fitxer de configuració per al tipus de fitxer \"%s" +"\": %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "No s'ha pogut desar la configuració: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4590,7 +4868,8 @@ #: ../pretty-printer/src/PluginEntry.c:159 msgid "" -"Unable to process PrettyPrinting on the specified XML because some features are not supported.\n" +"Unable to process PrettyPrinting on the specified XML because some features " +"are not supported.\n" "\n" "See Help > Debug messages for more details..." msgstr "" @@ -4599,20 +4878,17 @@ msgid "Comments" msgstr "Comentaris" -#: ../pretty-printer/src/ConfigUI.c:73 -#: ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 #: ../pretty-printer/src/ConfigUI.c:75 msgid "Put on one line" msgstr "" -#: ../pretty-printer/src/ConfigUI.c:73 -#: ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 #: ../pretty-printer/src/ConfigUI.c:75 msgid "Inline if possible" msgstr "" -#: ../pretty-printer/src/ConfigUI.c:73 -#: ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 #: ../pretty-printer/src/ConfigUI.c:75 msgid "Alignment" msgstr "Alineació" @@ -4654,506 +4930,574 @@ msgstr "Salt de línia" #: ../scope/data/scope.glade.h:1 -msgid "-" -msgstr "-" +msgid "Debu_g" +msgstr "" #: ../scope/data/scope.glade.h:2 -msgid "Inspect" -msgstr "Inspecciona" +msgid "_Setup Program" +msgstr "" #: ../scope/data/scope.glade.h:3 -msgid "Others" -msgstr "Altres" +msgid "Recent _Programs" +msgstr "_Programes Recents" #: ../scope/data/scope.glade.h:4 -msgid "Panel" -msgstr "Quadre" +msgid "_Run/Continue" +msgstr "E_xecuta/Continua" #: ../scope/data/scope.glade.h:5 -msgid "Values" -msgstr "Valors" +msgid "Run to _Cursor" +msgstr "Executa fins al _Cursor" #: ../scope/data/scope.glade.h:6 -msgid "@" -msgstr "@" +msgid "Run to _Source" +msgstr "" #: ../scope/data/scope.glade.h:7 -msgid "Add _Break" -msgstr "" +msgid "Step _Into" +msgstr "Pas _Enrere" #: ../scope/data/scope.glade.h:8 -msgid "Add _Watch" -msgstr "Afegeix Punt de _Vigilància" +msgid "Step _Over" +msgstr "Passa al _Següent" #: ../scope/data/scope.glade.h:9 -msgid "Apply on _Run" -msgstr "" +msgid "Step O_ut" +msgstr "Pas _Avant" #: ../scope/data/scope.glade.h:10 -msgid "Auto _Hide" -msgstr "_Ocultar Automàticament" +msgid "_Terminate" +msgstr "_Finalitza" #: ../scope/data/scope.glade.h:11 -msgid "Auto _run program/exit gdb" -msgstr "" +msgid "Toggle _Breakpoint" +msgstr "Commuta el Punt de _Ruptura" + +#: ../scope/data/scope.glade.h:12 +msgid "_GDB Command" +msgstr "Ordre _GDB" #: ../scope/data/scope.glade.h:13 -msgid "Convert _UTF-8 to locale" -msgstr "" +msgid "_More" +msgstr "_Més" #: ../scope/data/scope.glade.h:14 -msgid "Count:" -msgstr "Recompte:" +msgid "_Show Terminal" +msgstr "_Mostra el terminal" #: ../scope/data/scope.glade.h:15 -msgid "Debu_g" +msgid "_Reset Markers" +msgstr "Elimina les Ma_rques" + +#: ../scope/data/scope.glade.h:16 +msgid "_Cleanup Files" msgstr "" #: ../scope/data/scope.glade.h:17 -msgid "Debug Console" -msgstr "Consola de Depuració" +msgid "_Feed" +msgstr "_Canal" #: ../scope/data/scope.glade.h:18 -msgid "Default 8-bit text mode:" -msgstr "" +msgid "_Window" +msgstr "_Finestra" #: ../scope/data/scope.glade.h:19 -msgid "Display" -msgstr "Visualització" +msgid "_Auto Show" +msgstr "" #: ../scope/data/scope.glade.h:20 -msgid "E_xpand on apply" -msgstr "" +msgid "Auto _Hide" +msgstr "_Ocultar Automàticament" #: ../scope/data/scope.glade.h:21 -msgid "En_vironment:" -msgstr "En_torn:" +msgid "Show on _Error" +msgstr "" #: ../scope/data/scope.glade.h:22 -msgid "Enter assignment expression:" -msgstr "" +msgid "_Unsorted" +msgstr "Sense _ordre" #: ../scope/data/scope.glade.h:23 -msgid "Enter gdb command:" -msgstr "" +msgid "_View Source" +msgstr "_Visualitza el Codi Font" #: ../scope/data/scope.glade.h:24 -msgid "Expand" -msgstr "Expandeix" +msgid "S_ynchronize" +msgstr "S_incronitza" #: ../scope/data/scope.glade.h:25 -msgid "Frame:" -msgstr "Fotograma:" +msgid "_Interrupt" +msgstr "_Interromp" #: ../scope/data/scope.glade.h:26 -msgid "Inspect" -msgstr "Inspecciona" +msgid "_Send Signal" +msgstr "En_via Senyal" #: ../scope/data/scope.glade.h:27 -msgid "Locals" -msgstr "Locals" +msgid "S_elect on" +msgstr "" #: ../scope/data/scope.glade.h:28 -msgid "Memory" -msgstr "Memòria" +msgid "_Running" +msgstr "En e_xecució" + +#: ../scope/data/scope.glade.h:29 +msgid "_Stopped" +msgstr "A_turat" #: ../scope/data/scope.glade.h:30 -msgid "Object:" -msgstr "Objecte:" +msgid "_Exited" +msgstr "" #: ../scope/data/scope.glade.h:31 -msgid "Open on" -msgstr "Obre a" +msgid "_Follow" +msgstr "Se_gueix" #: ../scope/data/scope.glade.h:32 -msgid "Options" -msgstr "Opcions" +msgid "_Columns" +msgstr "_Columnes" #: ../scope/data/scope.glade.h:33 -#: ../scope/src/prefs.c:337 -msgid "Program" -msgstr "Programa" +msgid "Show _Group" +msgstr "" #: ../scope/data/scope.glade.h:34 -msgid "Program Terminal" -msgstr "Programa del Terminal" +msgid "Show _Core" +msgstr "" #: ../scope/data/scope.glade.h:35 -msgid "R_ead" +msgid "Add _Break" msgstr "" #: ../scope/data/scope.glade.h:36 -msgid "Recent _Programs" -msgstr "_Programes Recents" +msgid "Add _Watch" +msgstr "Afegeix Punt de _Vigilància" #: ../scope/data/scope.glade.h:37 -msgid "Run to _Cursor" -msgstr "Executa fins al _Cursor" +msgid "Apply on _Run" +msgstr "" #: ../scope/data/scope.glade.h:38 -msgid "Run to _Source" +msgid "_Show @entry" msgstr "" #: ../scope/data/scope.glade.h:39 -msgid "S_elect on" +msgid "Show _Address" msgstr "" #: ../scope/data/scope.glade.h:40 -msgid "S_how" -msgstr "_Mostra" +msgid "_Modify" +msgstr "_Modifica" #: ../scope/data/scope.glade.h:41 -msgid "S_ynchronize" -msgstr "S_incronitza" +msgid "_Watch" +msgstr "_Mira" #: ../scope/data/scope.glade.h:42 -msgid "Setup Program" -msgstr "" +msgid "_Inspect" +msgstr "_Inspecciona" #: ../scope/data/scope.glade.h:43 -msgid "Show =li_brary messages" -msgstr "" +msgid "_8-bit mode" +msgstr "_8-bit mode" #: ../scope/data/scope.glade.h:44 -msgid "Show _Address" -msgstr "" +msgid "_Default" +msgstr "Per _defecte" #: ../scope/data/scope.glade.h:45 -msgid "Show _Core" -msgstr "" +msgid "_7 bit" +msgstr "_7 bit" #: ../scope/data/scope.glade.h:46 -msgid "Show _Group" -msgstr "" +msgid "_Locale" +msgstr "_Localització" #: ../scope/data/scope.glade.h:47 -msgid "Show _tooltips" -msgstr "Mostra _consells" +msgid "_UTF-8" +msgstr "_UTF-8" #: ../scope/data/scope.glade.h:48 -msgid "Show on _Error" -msgstr "" +msgid "_Show .names" +msgstr "_Mostra .noms" #: ../scope/data/scope.glade.h:49 -msgid "Stack" -msgstr "Pila" +msgid "R_ead" +msgstr "" #: ../scope/data/scope.glade.h:50 -msgid "Start:" -msgstr "Inici:" +msgid "_Group by" +msgstr "A_grupa per" #: ../scope/data/scope.glade.h:51 -msgid "Step O_ut" -msgstr "Pas _Avant" +msgid "_1" +msgstr "_1" #: ../scope/data/scope.glade.h:52 -msgid "Step _Into" -msgstr "Pas _Enrere" +msgid "_2" +msgstr "_2" #: ../scope/data/scope.glade.h:53 -msgid "Step _Over" -msgstr "Passa al _Següent" +msgid "_4" +msgstr "_4" #: ../scope/data/scope.glade.h:54 -msgid "Threads" -msgstr "Fils d'execució" +msgid "_8" +msgstr "_8" #: ../scope/data/scope.glade.h:55 -msgid "Toggle _Breakpoint" -msgstr "Commuta el Punt de _Ruptura" +msgid "_Jump To" +msgstr "_Vés a" #: ../scope/data/scope.glade.h:56 -msgid "Update all _views" -msgstr "Actualitza _totes les vistes" +msgid "_Apply" +msgstr "_Aplica" #: ../scope/data/scope.glade.h:57 -msgid "Watches" -msgstr "Punts de vigilància" - -#: ../scope/data/scope.glade.h:58 -msgid "_1" -msgstr "_1" +msgid "_Expand" +msgstr "_Expandeix" #: ../scope/data/scope.glade.h:59 -msgid "_2" -msgstr "_2" +msgid "_Natural" +msgstr "_Natural" #: ../scope/data/scope.glade.h:60 -msgid "_4" -msgstr "_4" +msgid "_Decimal" +msgstr "_Decimal" #: ../scope/data/scope.glade.h:61 -msgid "_7 bit" -msgstr "_7 bit" +msgid "_Hex" +msgstr "_Hex" #: ../scope/data/scope.glade.h:62 -msgid "" -"_7-bit \\n" -"nn" -msgstr "" -"_7-bit \\n" -"nn" +msgid "_Octal" +msgstr "_Octal" #: ../scope/data/scope.glade.h:63 -msgid "_8" -msgstr "_8" +msgid "_Binary" +msgstr "_Binari" #: ../scope/data/scope.glade.h:64 -msgid "_8-bit mode" -msgstr "_8-bit mode" +msgid "_Raw" +msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Apply" -msgstr "_Aplica" +msgid "_Evaluate/Modify" +msgstr "" #: ../scope/data/scope.glade.h:66 -msgid "_Apply on run" +msgid "_Watch Expression" msgstr "" #: ../scope/data/scope.glade.h:67 -msgid "_Arguments:" -msgstr "_Arguments:" +msgid "_Inspect Variable" +msgstr "" #: ../scope/data/scope.glade.h:68 -msgid "_Auto Show" -msgstr "" +msgid "Threads" +msgstr "Fils d'execució" #: ../scope/data/scope.glade.h:69 -msgid "_Binary" -msgstr "_Binari" +msgid "Stack" +msgstr "Pila" #: ../scope/data/scope.glade.h:70 -msgid "_Cleanup Files" -msgstr "" +msgid "Locals" +msgstr "Locals" #: ../scope/data/scope.glade.h:71 -msgid "_Columns" -msgstr "_Columnes" +msgid "Watches" +msgstr "Punts de vigilància" #: ../scope/data/scope.glade.h:72 -msgid "_Decimal" -msgstr "_Decimal" +msgid "Memory" +msgstr "Memòria" #: ../scope/data/scope.glade.h:73 -msgid "_Default" -msgstr "Per _defecte" +msgid "Enter gdb command:" +msgstr "" #: ../scope/data/scope.glade.h:74 -msgid "_Delete all breakpoints, watches and inspects" +msgid "Convert _UTF-8 to locale" msgstr "" #: ../scope/data/scope.glade.h:75 -msgid "_Evaluate/Modify" -msgstr "" +msgid "_Thread" +msgstr "_Fil d'execució" #: ../scope/data/scope.glade.h:76 -msgid "_Executable:" -msgstr "_Executable:" +msgid "_Group" +msgstr "_Grup" #: ../scope/data/scope.glade.h:77 -msgid "_Exited" -msgstr "" +msgid "_Frame" +msgstr "_Marc" #: ../scope/data/scope.glade.h:78 -msgid "_Expand" -msgstr "_Expandeix" +msgid "Setup Program" +msgstr "" #: ../scope/data/scope.glade.h:79 -msgid "_Expand on apply" -msgstr "" +msgid "_Executable:" +msgstr "_Executable:" #: ../scope/data/scope.glade.h:80 -msgid "_Feed" -msgstr "_Canal" +msgid "_Arguments:" +msgstr "_Arguments:" #: ../scope/data/scope.glade.h:81 -msgid "_Follow" -msgstr "Se_gueix" +msgid "En_vironment:" +msgstr "En_torn:" + +#: ../scope/data/scope.glade.h:82 +msgid "_Working dir:" +msgstr "" #: ../scope/data/scope.glade.h:83 -msgid "_Frame" -msgstr "_Marc" +msgid "_Load script:" +msgstr "" #: ../scope/data/scope.glade.h:84 -msgid "_GDB Command" -msgstr "Ordre _GDB" +msgid "Auto _run program/exit gdb" +msgstr "" #: ../scope/data/scope.glade.h:85 -msgid "_Group" -msgstr "_Grup" +msgid "_Non-stop mode" +msgstr "" #: ../scope/data/scope.glade.h:86 -msgid "_Group by" -msgstr "A_grupa per" +msgid "_Temporary breakpoint on load at:" +msgstr "" #: ../scope/data/scope.glade.h:87 -msgid "_Hex" -msgstr "_Hex" +msgid "_Delete all breakpoints, watches, inspects and registers" +msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Import" -msgstr "_Importa" +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 +msgid "Program" +msgstr "Programa" #: ../scope/data/scope.glade.h:89 -msgid "_Inspect" -msgstr "_Inspecciona" +msgid "Open on" +msgstr "Obre a" #: ../scope/data/scope.glade.h:90 -msgid "_Inspect Variable" +msgid "g_db load" msgstr "" #: ../scope/data/scope.glade.h:91 -msgid "_Interrupt" -msgstr "_Interromp" +msgid "p_rogram start" +msgstr "" #: ../scope/data/scope.glade.h:92 -msgid "_Jump To" -msgstr "_Vés a" +msgid "Update all _views" +msgstr "Actualitza _totes les vistes" #: ../scope/data/scope.glade.h:93 -msgid "_Load script:" -msgstr "" +msgid "Panel" +msgstr "Quadre" #: ../scope/data/scope.glade.h:94 -msgid "_Locale" -msgstr "_Localització" +msgid "Default 8-bit text mode:" +msgstr "" #: ../scope/data/scope.glade.h:95 -msgid "_Modify" -msgstr "_Modifica" +msgid "_7-bit \\nnn" +msgstr "_7-bit \\nnn" #: ../scope/data/scope.glade.h:96 -msgid "_More" -msgstr "_Més" +msgid "Display" +msgstr "Visualització" #: ../scope/data/scope.glade.h:97 -msgid "_Natural" -msgstr "_Natural" +msgid "_member" +msgstr "_membre" #: ../scope/data/scope.glade.h:98 -msgid "_Non-stop mode" -msgstr "" +msgid "and" +msgstr "i" #: ../scope/data/scope.glade.h:99 -msgid "_Octal" -msgstr "_Octal" +msgid "_argument" +msgstr "_argument" #: ../scope/data/scope.glade.h:100 -msgid "_Reset Markers" -msgstr "Elimina les Ma_rques" +msgid "names" +msgstr "noms" #: ../scope/data/scope.glade.h:101 -msgid "_Run/Continue" -msgstr "E_xecuta/Continua" +msgid "Values" +msgstr "Valors" #: ../scope/data/scope.glade.h:102 -msgid "_Running" -msgstr "En e_xecució" +msgid "E_xpand on apply" +msgstr "" #: ../scope/data/scope.glade.h:103 -msgid "_Send Signal" -msgstr "En_via Senyal" +msgid "S_how" +msgstr "_Mostra" #: ../scope/data/scope.glade.h:104 -msgid "_Setup Program" -msgstr "" +msgid "children" +msgstr "fills" #: ../scope/data/scope.glade.h:105 -msgid "_Show .names" -msgstr "_Mostra .noms" +msgid "Inspect" +msgstr "Inspecciona" #: ../scope/data/scope.glade.h:106 -msgid "_Show @entry" +msgid "Show =li_brary messages" msgstr "" #: ../scope/data/scope.glade.h:107 -msgid "_Show Terminal" -msgstr "_Mostra el terminal" +msgid "Show _tooltips" +msgstr "Mostra _consells" #: ../scope/data/scope.glade.h:108 -msgid "_Stopped" -msgstr "A_turat" +msgid "Others" +msgstr "Altres" #: ../scope/data/scope.glade.h:109 -msgid "_Temporary breakpoint at:" -msgstr "" +msgid "Options" +msgstr "Opcions" #: ../scope/data/scope.glade.h:110 -msgid "_Terminate" -msgstr "_Finalitza" +msgid "_Import" +msgstr "_Importa" #: ../scope/data/scope.glade.h:111 -msgid "_Thread" -msgstr "_Fil d'execució" +msgid "Enter assignment expression:" +msgstr "" #: ../scope/data/scope.glade.h:112 -msgid "_UTF-8" -msgstr "_UTF-8" +msgid "Inspect" +msgstr "Inspecciona" #: ../scope/data/scope.glade.h:113 -msgid "_Unsorted" -msgstr "Sense _ordre" - -#: ../scope/data/scope.glade.h:114 -msgid "_View Source" -msgstr "_Visualitza el Codi Font" +msgid "Object:" +msgstr "Objecte:" #: ../scope/data/scope.glade.h:115 -msgid "_Watch" -msgstr "_Mira" +msgid "-" +msgstr "-" #: ../scope/data/scope.glade.h:116 -msgid "_Watch Expression" -msgstr "" +msgid "Frame:" +msgstr "Fotograma:" #: ../scope/data/scope.glade.h:117 -msgid "_Window" -msgstr "_Finestra" +msgid "@" +msgstr "@" #: ../scope/data/scope.glade.h:118 -msgid "_Working dir:" +msgid "_Apply on run" msgstr "" #: ../scope/data/scope.glade.h:119 -msgid "_argument" -msgstr "_argument" +msgid "Expand" +msgstr "Expandeix" #: ../scope/data/scope.glade.h:120 -msgid "_member" -msgstr "_membre" +msgid "Start:" +msgstr "Inici:" #: ../scope/data/scope.glade.h:121 -msgid "and" -msgstr "i" +msgid "Count:" +msgstr "Recompte:" #: ../scope/data/scope.glade.h:122 -msgid "children" -msgstr "fills" - -#: ../scope/data/scope.glade.h:123 -msgid "g_db load" +msgid "_Expand on apply" msgstr "" -#: ../scope/data/scope.glade.h:124 -msgid "names" -msgstr "noms" +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "Programa del Terminal" #: ../scope/data/scope.glade.h:125 -msgid "p_rogram start" +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Punts de ruptura" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Commuta el punt de ruptura" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "Punts de ruptura" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "Afegeix Punt de Vigilància" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "Afegeix Punt de Vigilància" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "Afegeix Punt de Vigilància" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "Afegeix Punt de Vigilància" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" msgstr "" -#: ../scope/src/break.c:947 +#: ../scope/src/break.c:136 +#, fuzzy +msgid "unsupported MI" +msgstr "Sense _ordre" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "carregat" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Executa fins al _Cursor" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "Afegeix Punt de Ruptura" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "Afegeix Punt de Vigilància" @@ -5165,15 +5509,13 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 -#: ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "" -#: ../scope/src/debug.c:115 -#: ../scope/src/debug.c:120 -#: ../scope/src/utils.c:37 +#: ../scope/src/debug.c:115 ../scope/src/debug.c:120 ../scope/src/utils.c:37 #, c-format msgid "%s: %s." msgstr "%s: %s." @@ -5187,61 +5529,61 @@ msgid "Program terminated." msgstr "El programa ha finalitzat." -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 -#: ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "Modifica" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "Avalua/modifica" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 msgid "Inspect variable" msgstr "Inspecciona la variable" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5253,35 +5595,26 @@ msgid "Select File" msgstr "Selecciona Fitxer" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "Consola" - -#: ../scope/src/prefs.c:347 -#: ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5289,15 +5622,15 @@ "Continue?" msgstr "" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5306,158 +5639,169 @@ msgstr "" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "Executa/continua" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 msgid "Run to source" msgstr "" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "Finalitza" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" msgstr "Commuta el punt de ruptura" -#: ../scope/src/scope.c:73 -#: ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "ordre GDB" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "Mostra el terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "Ocupat" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "Preparat" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "Penja" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "Carrega" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Consola" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "Consola de Depuració" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr " ha sortit" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr " amb el codi %s" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "Envia Senyal" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "En execució" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "Aturat" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "%s: error %lu." +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "%s: %s." -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "…" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "_Envia" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "_Ocupat" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 msgid "GDB Command" msgstr "Ordre GDB" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Prova:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Verificant" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" @@ -5507,7 +5851,9 @@ msgstr "_Directori per als fitxers de diccionari:" #: ../spellcheck/src/scplugin.c:295 -msgid "Read additional dictionary files from this directory. For now, this only works with myspell dictionaries." +msgid "" +"Read additional dictionary files from this directory. For now, this only " +"works with myspell dictionaries." msgstr "" #: ../spellcheck/src/gui.c:76 @@ -5545,17 +5891,17 @@ msgid "Ignore All" msgstr "Ignora-ho Tot" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Predeterminat (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Suggeriments d'Ortografia" @@ -5567,13 +5913,11 @@ msgid "Shift a selection left and right" msgstr "" -#: ../shiftcolumn/src/shiftcolumn.c:380 -#: ../shiftcolumn/src/shiftcolumn.c:400 +#: ../shiftcolumn/src/shiftcolumn.c:380 ../shiftcolumn/src/shiftcolumn.c:400 msgid "Shift Left" msgstr "" -#: ../shiftcolumn/src/shiftcolumn.c:387 -#: ../shiftcolumn/src/shiftcolumn.c:402 +#: ../shiftcolumn/src/shiftcolumn.c:387 ../shiftcolumn/src/shiftcolumn.c:402 msgid "Shift Right" msgstr "" @@ -5588,272 +5932,291 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Converteix la selecció en una taula" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "_Converteix en taula" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "" -#: ../treebrowser/src/treebrowser.c:121 -msgid "This plugin adds a tree browser to Geany, allowing the user to browse files using a tree view of the directory being browsed." +#: ../treebrowser/src/treebrowser.c:125 +msgid "" +"This plugin adds a tree browser to Geany, allowing the user to browse files " +"using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: no existeix el directori." -#: ../treebrowser/src/treebrowser.c:526 -#: ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Buit)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "No s'ha pogut executar l'ordre externa '%s' (%s)." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NouDirectori" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NouFitxer" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Esteu segurs de voler eliminar '%s'?" -#: ../treebrowser/src/treebrowser.c:1208 -#: ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Vés cap a dalt" -#: ../treebrowser/src/treebrowser.c:1212 -#: ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Especifica el directori pel document" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" msgstr "Obre externament" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Obre el terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Instal·la com a superusuari" -#: ../treebrowser/src/treebrowser.c:1230 -#: ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Actualitza" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "Cerca en els Fitxers" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Crea un directori nou" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Crea un nou fitxer" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Reanomena" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Elimina" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Tanca: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "Tanca els Documents Fills" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +#, fuzzy +msgid "_Copy full path to clipboard" msgstr "Copia la ruta completa al porta-retalls" -#: ../treebrowser/src/treebrowser.c:1293 -#: ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Mostra les adreces d'interès" -#: ../treebrowser/src/treebrowser.c:1298 -#: ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Mostra els fitxers ocults" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "Mostra les barres d'eines" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Ja existeix un fitxer anomenat \"%s\", voleu reemplaçar-lo?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Inici" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Amaga les barres" -#: ../treebrowser/src/treebrowser.c:1727 -msgid "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' reverse try for example this '!;*.c;*.h;*.cpp'" +#: ../treebrowser/src/treebrowser.c:1773 +msgid "" +"Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " +"reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Ordre externa per obrir" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" -"The command to execute when using \"Open with\". You can use %f and %d wildcards.\n" +"The command to execute when using \"Open with\". You can use %f and %d " +"wildcards.\n" "%f will be replaced with the filename including full path\n" -"%d will be replaced with the path name of the selected file without the filename" +"%d will be replaced with the path name of the selected file without the " +"filename" msgstr "" -"L'ordre a executar quan s'usa \"Obre amb\". Podeu usar els comodins %f i %d.\n" +"L'ordre a executar quan s'usa \"Obre amb\". Podeu usar els comodins %f i " +"%d.\n" "%f serà substituit amb el nom del fitxer, incloent la ruta completa\n" "%d serà substituit amb la ruta completa, sense el nom del fitxer" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "Barra d'Eines" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "Ocult" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "Part superior" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "Part inferior" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "Mostra les icones" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "Cap" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "Base" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "Tipus de continguts" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Amaga els fitxers objecte" -#: ../treebrowser/src/treebrowser.c:1940 -msgid "Don't show generated object files in the file browser, this includes *.o, *.obj. *.so, *.dll, *.a, *.lib" +#: ../treebrowser/src/treebrowser.c:1993 +msgid "" +"Don't show generated object files in the file browser, this includes *.o, *." +"obj. *.so, *.dll, *.a, *.lib" msgstr "" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Inverteix el filtre" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Segueix el document actual" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Doble clic obre els directoris" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Mostra les línies de l'arbre" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "Obre un Fitxer" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "Enfoca la Llista de Fitxers" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "Reanomena Objecte" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "Crea un Fitxer Nou" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "Crea un Directori Nou" @@ -5862,7 +6225,8 @@ msgstr "" #: ../updatechecker/src/updatechecker.c:42 -msgid "A plugin which is checking whether there are updates for Geany available." +msgid "" +"A plugin which is checking whether there are updates for Geany available." msgstr "" #: ../updatechecker/src/updatechecker.c:190 @@ -5917,45 +6281,44 @@ msgid "utility" msgstr "utilitat" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Zoom" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "Canvia la orientació dels panells" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Enrere" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "Reenvia" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Cancel·la la càrrega" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Actualitza la pàgina actual" -#: ../webhelper/src/gwh-browser.c:833 -#: ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Inspector web" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Habilita l'inspector web" @@ -5964,7 +6327,10 @@ msgstr "" #: ../webhelper/src/gwh-plugin.c:51 -msgid "Display a preview web page that gets updated upon document saving and provide web analysis and debugging tools (aka Web Inspector), all using WebKit." +msgid "" +"Display a preview web page that gets updated upon document saving and " +"provide web analysis and debugging tools (aka Web Inspector), all using " +"WebKit." msgstr "" #: ../webhelper/src/gwh-plugin.c:141 @@ -6040,7 +6406,9 @@ msgstr "" #: ../webhelper/src/gwh-plugin.c:350 -msgid "Whether to tell the window manager not to show the secondary windows in the task bar" +msgid "" +"Whether to tell the window manager not to show the secondary windows in the " +"task bar" msgstr "" #: ../webhelper/src/gwh-plugin.c:355 @@ -6085,15 +6453,15 @@ msgid "Autocompletes XML/HTML tags using snippets." msgstr "" +#~ msgid "%s: error %lu." +#~ msgstr "%s: error %lu." + #~ msgid "Unknown signal" #~ msgstr "Senyal desconeguda" #~ msgid "(unknown)" #~ msgstr "(desconegut)" -#~ msgid "Directory %s not found!\n" -#~ msgstr "No s'ha trobat el directori %s!\n" - #~ msgid "Killing target program.\n" #~ msgstr "Matant el programa.\n" @@ -6156,9 +6524,6 @@ #~ msgid "(no program)" #~ msgstr "(cap programa)" -#~ msgid "loaded" -#~ msgstr "carregat" - #~ msgid "Error:" #~ msgstr "Error:" diff -Nru geany-plugins-1.24.0+20140222+git/po/da.po geany-plugins-1.24.1+dfsg/po/da.po --- geany-plugins-1.24.0+20140222+git/po/da.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/da.po 2014-04-12 14:28:39.000000000 +0000 @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2009-06-11 10:15+0200\n" "Last-Translator: Andrew L Janke \n" "Language-Team: Danish \n" @@ -34,12 +34,12 @@ msgid "Contents" msgstr "" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "" @@ -76,15 +76,15 @@ msgid "Context:" msgstr "" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -152,11 +152,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "" @@ -243,6 +244,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "" @@ -305,8 +314,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "" @@ -438,7 +447,7 @@ msgid "Target" msgstr "" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "" @@ -475,22 +484,22 @@ msgstr "" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "" @@ -499,7 +508,7 @@ msgstr "" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "" #: ../debugger/src/watch_model.c:220 @@ -530,6 +539,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -639,7 +656,7 @@ msgstr "" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "" @@ -767,12 +784,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "" @@ -952,55 +969,64 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Flyt det valgte til højre/venstre" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1387,76 +1413,76 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "" @@ -1886,20 +1912,20 @@ msgid "BibTeX reference name:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "" @@ -1907,78 +1933,78 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -1986,265 +2012,265 @@ msgstr "" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " "before." msgstr "" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 #, fuzzy msgid "Format selection left-aligned" msgstr "Flyt det valgte til højre/venstre" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 #, fuzzy msgid "Format selection right-aligned" msgstr "Flyt det valgte til højre/venstre" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" "Please report all bugs or feature requests to one of the authors." msgstr "" -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "" @@ -2400,16 +2426,16 @@ msgid "Creating dummy text with Geany" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "" @@ -2533,19 +2559,19 @@ msgid "Browse..." msgstr "" -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "" -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "" @@ -2570,7 +2596,7 @@ "not enough arguments for command \"%s\".\n" msgstr "" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2605,14 +2631,14 @@ msgid "Save file" msgstr "" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2651,21 +2677,21 @@ "Please check your installation." msgstr "" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3031,6 +3057,19 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Flyt det valgte til højre/venstre" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "" @@ -3230,12 +3269,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "" @@ -3252,7 +3291,7 @@ msgid "Search for contents of clipboard" msgstr "" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "" @@ -3286,58 +3325,58 @@ msgid "Text:" msgstr "" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3356,6 +3395,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3364,109 +3430,108 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" msgstr "" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3474,54 +3539,54 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Flyt det valgte til højre/venstre" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Flyt det valgte til højre/venstre" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3537,7 +3602,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3616,36 +3681,36 @@ msgstr "" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3655,8 +3720,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "" @@ -3812,7 +3877,7 @@ msgstr "" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "" @@ -3841,7 +3906,7 @@ msgid "C_reate" msgstr "" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "" @@ -3912,7 +3977,7 @@ msgid "Remove File" msgstr "" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "" @@ -3921,6 +3986,48 @@ msgid "Project \"%s\" opened." msgstr "" +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "" @@ -3939,42 +4046,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -3985,28 +4092,28 @@ "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4024,339 +4131,358 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "" -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "" -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " "configuration. Error message was: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " "could cause a big number of annoying \"Do you want to save\"-dialogs." msgstr "" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "" -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "" #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "" @@ -4498,95 +4624,245 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +msgid "Go to previous string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to next string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +msgid "Toggle current translation fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1124 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4921,254 +5197,317 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -msgid "_Inspect Variable" +msgid "_Watch Expression" msgstr "" #: ../scope/data/scope.glade.h:67 -msgid "Program Terminal" +msgid "_Inspect Variable" msgstr "" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 msgid "Stack" msgstr "" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 msgid "Enter gdb command:" msgstr "" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "Flyt det valgte til højre/venstre" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 msgid "_Frame" msgstr "" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" msgstr "" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 msgid "En_vironment:" msgstr "" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 msgid "Open on" msgstr "" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 msgid "Update all _views" msgstr "" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" msgstr "" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 msgid "and" msgstr "" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 msgid "_argument" msgstr "" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 msgid "names" msgstr "" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" msgstr "" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 msgid "Show _tooltips" msgstr "" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 msgid "Options" msgstr "" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 msgid "_Import" msgstr "" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" msgstr "" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 msgid "Object:" msgstr "" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 msgid "Frame:" msgstr "" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 msgid "Start:" msgstr "" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" msgstr "" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +msgid "breakpoint" +msgstr "" + +#: ../scope/src/break.c:98 +msgid "hardware breakpoint" +msgstr "" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "" @@ -5180,7 +5519,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "" @@ -5199,60 +5539,61 @@ msgid "Program terminated." msgstr "" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "" -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 msgid "Inspect variable" msgstr "" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5264,34 +5605,26 @@ msgid "Select File" msgstr "" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5299,15 +5632,15 @@ "Continue?" msgstr "" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5316,157 +5649,169 @@ msgstr "" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 msgid "Run to source" msgstr "" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" msgstr "" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, c-format -msgid "%s: error %lu." +msgid "%s: %s" msgstr "" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 msgid "GDB Command" msgstr "" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" @@ -5556,17 +5901,17 @@ msgid "Ignore All" msgstr "" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "" @@ -5597,172 +5942,176 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 #, fuzzy msgid "Convert selection to table" msgstr "Flyt det valgte til højre/venstre" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "" -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" msgstr "" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +msgid "_Find in Files" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" msgstr "" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -5772,97 +6121,105 @@ "filename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" msgstr "" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +msgid "Open new files" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "" @@ -5927,44 +6284,44 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" diff -Nru geany-plugins-1.24.0+20140222+git/po/de.po geany-plugins-1.24.1+dfsg/po/de.po --- geany-plugins-1.24.0+20140222+git/po/de.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/de.po 2014-04-12 14:28:39.000000000 +0000 @@ -1,8 +1,8 @@ # German translation for geany-plugins -# Copyright (C) 2009-2011 THE PACKAGE'S COPYRIGHT HOLDER +# Copyright (C) 2009-2014 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the geany-plugins package. # Andrew Janke , 2009 -# Frank Lanitz , 2009-2013 +# Frank Lanitz , 2009-2014 # Dominic Hopf , 2009 # Michael Spahn , 2009 # Fabian Nowak , 2012 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-10-27 11:36+0100\n" +"POT-Creation-Date: 2014-04-06 18:49+0200\n" "PO-Revision-Date: 2013-10-28 12:05+0100\n" "Last-Translator: Frank Lanitz \n" "Language-Team: German \n" @@ -83,15 +83,15 @@ msgid "Context:" msgstr "Kontext:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "XML-Tagging" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Tag zum Einfügen:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -160,12 +160,12 @@ msgid "Run XML tagging" msgstr "XML-Tagging ausführen" -#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:886 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 #: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 -#: ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1854 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1935 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "" @@ -342,7 +342,7 @@ msgstr "Verschiedene Debugger-Integrationen" #: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:228 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Debug" @@ -476,7 +476,7 @@ msgid "Target" msgstr "Ziel" -#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:526 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Haltepunkte" @@ -575,7 +575,7 @@ #: ../defineformat/src/defineformat.c:56 msgid "Define formatter" -msgstr "" +msgstr "#Define-Formatierer" #: ../defineformat/src/defineformat.c:57 msgid "Automatically align backslash in multi-line defines" @@ -2532,24 +2532,24 @@ msgid "Creating dummy text with Geany" msgstr "Platzhaltertexte erstellen mit Geany" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Lorem-ipsum-Generator" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Bitte die Länge des Platzhaltertextes eingeben" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:161 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" -#: ../geanylipsum/src/geanylipsum.c:162 +#: ../geanylipsum/src/geanylipsum.c:165 msgid "Include Pseudotext to your code" msgstr "Fügt Platzhaltertexte in das Dokument ein" -#: ../geanylipsum/src/geanylipsum.c:176 +#: ../geanylipsum/src/geanylipsum.c:179 msgid "Insert Lipsum text" msgstr "Fügt Platzhaltertexte ein" @@ -2761,7 +2761,7 @@ msgid "Save file" msgstr "Datei speichern" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2770,7 +2770,7 @@ "Fehler in Modul »%s« in Funktion pickfile():\n" "Konnte die zu filternde Zeichenkette nicht verarbeiten; Argument #3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -3462,7 +3462,7 @@ msgid "Search for contents of clipboard" msgstr "Suchen nach Inhalten aus der Zwischenablage" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:93 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Suchen nach:" @@ -3944,8 +3944,8 @@ msgid "a key with fingerprint" msgstr "ein Schlüssel mit Fingerabdruck" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "Unbekannt" @@ -4112,7 +4112,7 @@ msgstr "Eine Signaturendatei öffnen" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:826 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Projekt" @@ -4219,7 +4219,7 @@ msgid "Remove File" msgstr "Datei entfernen" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:805 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Seitenleiste _verstecken" @@ -4228,44 +4228,45 @@ msgid "Project \"%s\" opened." msgstr "Projekt »%s« geöffnet." -#: ../geanypy/src/geanypy-plugin.c:32 +#: ../geanypy/src/geanypy-plugin.c:34 msgid "GeanyPy" msgstr "GeanyPy" -#: ../geanypy/src/geanypy-plugin.c:33 +#: ../geanypy/src/geanypy-plugin.c:35 msgid "Python plugins support" msgstr "Python für Plugins" -#: ../geanypy/src/geanypy-plugin.c:75 +#: ../geanypy/src/geanypy-plugin.c:77 #, c-format msgid "Unable to pre-load Python library: %s." msgstr "Python-Bibliothek konnte nicht geladen werden: %s" -#: ../geanypy/src/geanypy-plugin.c:155 +#: ../geanypy/src/geanypy-plugin.c:157 msgid "Failed to import manager module" msgstr "Konnte manager-Modul nicht importieren" -#: ../geanypy/src/geanypy-plugin.c:164 +#: ../geanypy/src/geanypy-plugin.c:166 msgid "Failed to retrieve PluginManager from manager module" msgstr "Konnte den PluginManager aus dem manager-Modul nicht laden" -#: ../geanypy/src/geanypy-plugin.c:180 +#: ../geanypy/src/geanypy-plugin.c:182 msgid "System plugin directory not found." msgstr "Systemweites Plugin-Verzeichnis konnte nicht gefunden werden" -#: ../geanypy/src/geanypy-plugin.c:209 +#: ../geanypy/src/geanypy-plugin.c:211 msgid "Unable to instantiate new PluginManager" msgstr "Konnte keine neue Instanz der Plugin-Verwaltung anlegen." -#: ../geanypy/src/geanypy-plugin.c:225 +#: ../geanypy/src/geanypy-plugin.c:227 msgid "Unable to get show_all() method on plugin manager" msgstr "Konnte die Methode show_all() der Plugin-Verwaltung nicht finden." -#: ../geanypy/src/geanypy-plugin.c:253 +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format msgid "Unable to create Python plugins directory: %s: %s" msgstr "Konnte das Python-Plugin-Verzeichnis nicht anlegen: %s: %s" -#: ../geanypy/src/geanypy-plugin.c:264 +#: ../geanypy/src/geanypy-plugin.c:266 msgid "Python Plugin Manager" msgstr "Python Plugin-Verwaltung" @@ -4291,13 +4292,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "E-Mail-Adresse des Empfängers:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "Konnte den Platzhalter für den Dateinamen nicht finden. Der angegebene " "Befehl könnte nicht korrekt ausgeführt worden sein." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4305,34 +4306,34 @@ "Konnte den Platzhalter für den E-Mail-Empfänger nicht finden. Der angegebene " "Befehl könnte nicht korrekt ausgeführt worden sein." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Konnte das E-Mail-Programm nicht aufrufen. Bitte überprüfen Sie Ihre " "Einstellungen." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Bitte ein E-Mail-Programm angeben!" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Die Datei muss vor dem Senden gespeichert werden." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "E-Mail" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Per E-Mail senden" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Pfad und Optionen für das E-Mail-Programm:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4350,32 +4351,32 @@ "\tsylpheed --attach \"%f\" --compose \"%r\"\n" "\tmutt -s \"Sending %b'\" -a \"%f\" \"%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Werkzeugleistensymbol anzeigen" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Zeigt ein Symbol in der Werkzeugleiste an, sodass eine Datei einfacher " "versendet werden kann." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" "Dialog zum Eingeben der E-Mail-Adresse des Empfängers der zu sendenden Datei " "anzeigen" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Per Mail senden" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "_Dokument versenden" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4440,12 +4441,10 @@ "To view the differences, cancel this dialog and open the differences in " "Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." msgstr "" -"Die Veränderungen können hier nicht angezeigt werden, da sie zu viele " -"sind. Andernfalls könnte es passieren, dass die Anzeige unbenutzbar " -"wird.\n" -"Um sich dennoch die Änderungen anzeigen zu lessen, benutzen Sie " -"einfach die Diff-Funktion aus dem GeanyVC-Unterpunktes innerhalb des " -"Werkzeuge-Menüs." +"Die Veränderungen können hier nicht angezeigt werden, da sie zu viele sind. " +"Andernfalls könnte es passieren, dass die Anzeige unbenutzbar wird.\n" +"Um sich dennoch die Änderungen anzeigen zu lessen, benutzen Sie einfach die " +"Diff-Funktion aus dem GeanyVC-Unterpunktes innerhalb des Werkzeuge-Menüs." #: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" @@ -4930,46 +4929,46 @@ "Anmerkung: Die Muster der Dateien, die zu einem Projekt gehören, können im " "Projekttab gesetzt werden." -#: ../gproject/src/gproject-sidebar.c:82 -#: ../gproject/src/gproject-sidebar.c:794 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Datei suchen" -#: ../gproject/src/gproject-sidebar.c:109 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Suchen in:" -#: ../gproject/src/gproject-sidebar.c:121 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "_Groß-/Kleinschreibung beachten" -#: ../gproject/src/gproject-sidebar.c:124 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "Im vollen Pfad suchen" -#: ../gproject/src/gproject-sidebar.c:704 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Alle neuladen" -#: ../gproject/src/gproject-sidebar.c:713 -#: ../treebrowser/src/treebrowser.c:1281 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1283 msgid "Expand all" msgstr "Alle ausklappen" -#: ../gproject/src/gproject-sidebar.c:719 -#: ../treebrowser/src/treebrowser.c:1285 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1287 msgid "Collapse all" msgstr "Alle einklappen" -#: ../gproject/src/gproject-sidebar.c:728 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "Aktiven Editor folgen" -#: ../gproject/src/gproject-sidebar.c:776 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Alle ausklappen" -#: ../gproject/src/gproject-sidebar.c:785 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "In Dateien finden" @@ -5018,11 +5017,11 @@ msgid "The current document does not have a Markdown filetype." msgstr "Das aktuelle Dokument ist nicht vom Markdown-Dateityp." -#: ../pairtaghighlighter/src/pair_tag_highlighter.c:33 +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 msgid "Pair Tag Highlighter" -msgstr "" +msgstr "PairTagHighlighter" -#: ../pairtaghighlighter/src/pair_tag_highlighter.c:34 +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 msgid "Finds and highlights matching opening/closing HTML tag" msgstr "Findet und hebt passende öffende und schließende HTML-Tags" @@ -5034,7 +5033,7 @@ msgid "_Previous String" msgstr "_Vorheriger String" -#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1034 msgid "Go to previous string" msgstr "Zum vorherigen String gehen" @@ -5042,7 +5041,7 @@ msgid "_Next String" msgstr "_Nächster String" -#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1037 msgid "Go to next string" msgstr "Zur nächsten String gehen" @@ -5050,7 +5049,7 @@ msgid "Pre_vious Untranslated" msgstr "_Vorheringe nicht übersetze Zeichenkette" -#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1040 msgid "Go to previous untranslated string" msgstr "Geht zu der vorherigen, noch nicht übersetzen Zeichenkette." @@ -5058,23 +5057,23 @@ msgid "Next _Untranslated" msgstr "Nächste nicht übersetzte Zeichenkette" -#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1043 msgid "Go to next untranslated string" msgstr "Geht zu der nächsten, noch nicht übersetzten Zeichenkette." #: ../pohelper/data/menus.ui.h:10 msgid "Previous Fu_zzy" -msgstr "" +msgstr "Vorhergehende unklare Übersetzung" -#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1046 msgid "Go to previous fuzzily translated string" -msgstr "" +msgstr "Springt zur vorhergehenden, unklaren (fuzzy) Übersetzung" #: ../pohelper/data/menus.ui.h:12 msgid "Next _Fuzzy" msgstr "Nächste _unklare Übersetzung" -#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1049 msgid "Go to next fuzzily translated string" msgstr "Gehe zur nächsten unklaren Übersetzung" @@ -5082,36 +5081,37 @@ msgid "Previous Untranslated or Fuzz_y" msgstr "Vorherige u_nübersetzt oder -klar." -#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1052 msgid "Go to previous untranslated or fuzzy string" msgstr "Gehe zum vorherigen unklaren oder unübersetzen String" #: ../pohelper/data/menus.ui.h:16 msgid "Next Untranslated _or Fuzzy" -msgstr "" +msgstr "Nächste unübersetzte oder -klare Übersetzung" -#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1056 msgid "Go to next untranslated or fuzzy string" -msgstr "" +msgstr "Springt zum nächsten unklaren (fuzzy) oder unübersetzen String" -#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 -#, fuzzy +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1067 msgid "Toggle current translation fuzziness" -msgstr "Dokumentationsreiter umschalten" +msgstr "Status der Übersetzungung umschalten (Fuzzy)" #: ../pohelper/data/menus.ui.h:19 msgid "_Toggle Fuzziness" -msgstr "" +msgstr "_Status tauschen" #: ../pohelper/data/menus.ui.h:20 msgid "Paste _Message as Translation" -msgstr "" +msgstr "Originalstring als Übersetzung verwenden" #: ../pohelper/data/menus.ui.h:21 msgid "Paste the original untranslated string to the translation" msgstr "" +"Benutzt die unübersetze Ausgabe, um diese auch in der übersetzen Form " +"anzuzeigen." -#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1064 msgid "Reflow the current translation string" msgstr "Aktuelle Übersetzungen neu umbrechen" @@ -5124,10 +5124,12 @@ "Whether to update the translation headers (author, revision date, ...) upon " "file save" msgstr "" +"Legt fest, ob die Metadaten der Übersetzungsdatei (Autor, Datum ... ) beim " +"Speichern aktualisiert werden sollen." #: ../pohelper/data/menus.ui.h:25 msgid "Update _Headers Upon Save" -msgstr "" +msgstr "Metadaten beim Speichern aktualisieren" #: ../pohelper/src/gph-plugin.c:41 msgid "Translation Helper" @@ -5137,40 +5139,42 @@ msgid "Improves support for GetText translation files." msgstr "Verbessert die Unterstützung für GetText-Übersetzungsdateien" -#: ../pohelper/src/gph-plugin.c:1057 +#: ../pohelper/src/gph-plugin.c:1060 msgid "Paste original untranslated string to translation" -msgstr "" +msgstr "Orignalen String als Übersetzung nutzen" -#: ../pohelper/src/gph-plugin.c:1099 -#, fuzzy, c-format +#: ../pohelper/src/gph-plugin.c:1102 +#, c-format msgid "Failed to load configuration file: %s" msgstr "Konnte Konfiguration nicht laden: %s" -#: ../pohelper/src/gph-plugin.c:1124 -#, fuzzy, c-format +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format msgid "Failed to create configuration directory \"%s\": %s" -msgstr "Konnte keine Konfigurationsdateien für den Typ »%s« finden: %s" +msgstr "Konnte das Konfigurationsverzeichnis »%s« nicht anelgen: %s" -#: ../pohelper/src/gph-plugin.c:1127 -#, fuzzy, c-format +#: ../pohelper/src/gph-plugin.c:1130 +#, c-format msgid "Failed to save configuration file: %s" msgstr "Konnte Konfiguration nicht speichern: %s" -#: ../pohelper/src/gph-plugin.c:1182 -#, fuzzy, c-format +#: ../pohelper/src/gph-plugin.c:1185 +#, c-format msgid "" "Failed to load UI definition, please check your installation. The error was: " "%s" msgstr "" -"Das Plugin »%s« konnte nicht korrekt geladen werden.\n" -"Bitte überprüfen Sie Ihre Installation." +"Das grafische Elemente des Plugins konnte nicht korrekt geladen werden.\n" +"Bitte überprüfen Sie Ihre Installation. Der Fehler war: %s" -#: ../pohelper/src/gph-plugin.c:1222 +#: ../pohelper/src/gph-plugin.c:1225 #, c-format msgid "" "Cannot find widget \"%s\" in the UI definition, please check your " "installation." msgstr "" +"Konnte das Widget »%s« in der Defintion der graphischen Oberfläche nicht " +"finden. Bitte prüfen Sie die Installation" #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" @@ -5267,7 +5271,7 @@ #: ../scope/data/scope.glade.h:2 msgid "_Setup Program" -msgstr "" +msgstr "_Setup" #: ../scope/data/scope.glade.h:3 msgid "Recent _Programs" @@ -5333,7 +5337,7 @@ #: ../scope/data/scope.glade.h:17 msgid "_Feed" -msgstr "" +msgstr "Feed" #: ../scope/data/scope.glade.h:18 msgid "_Window" @@ -5341,23 +5345,23 @@ #: ../scope/data/scope.glade.h:19 msgid "_Auto Show" -msgstr "" +msgstr "_Automatisches Zeigen" #: ../scope/data/scope.glade.h:20 msgid "Auto _Hide" -msgstr "" +msgstr "Automatisches _Verstecken" #: ../scope/data/scope.glade.h:21 msgid "Show on _Error" -msgstr "" +msgstr "Bei _Fehler anzeigen" #: ../scope/data/scope.glade.h:22 msgid "_Unsorted" -msgstr "" +msgstr "_Unsortiert" #: ../scope/data/scope.glade.h:23 msgid "_View Source" -msgstr "" +msgstr "_Quellen anzeigen" #: ../scope/data/scope.glade.h:24 msgid "S_ynchronize" @@ -5373,7 +5377,7 @@ #: ../scope/data/scope.glade.h:27 msgid "S_elect on" -msgstr "" +msgstr "Auswahl _bei" #: ../scope/data/scope.glade.h:28 msgid "_Running" @@ -5385,7 +5389,7 @@ #: ../scope/data/scope.glade.h:30 msgid "_Exited" -msgstr "" +msgstr "_Beendet" #: ../scope/data/scope.glade.h:31 msgid "_Follow" @@ -5408,44 +5412,40 @@ msgstr "Haltepunkt _hinzufügen" #: ../scope/data/scope.glade.h:36 -#, fuzzy msgid "Add _Watch" -msgstr "Beobachten" +msgstr "Beobachtungspunkt hinzufügen" #: ../scope/data/scope.glade.h:37 msgid "Apply on _Run" -msgstr "" +msgstr "Beim Ausführen _anwenden" #: ../scope/data/scope.glade.h:38 msgid "_Show @entry" -msgstr "" +msgstr "@Entry a_nzeigen" #: ../scope/data/scope.glade.h:39 -#, fuzzy msgid "Show _Address" -msgstr "Adresse" +msgstr "Adresse anze_igen" #: ../scope/data/scope.glade.h:40 msgid "_Modify" -msgstr "" +msgstr "_Bearbeiten" #: ../scope/data/scope.glade.h:41 -#, fuzzy msgid "_Watch" -msgstr "Beobachten" +msgstr "_Beobachten" #: ../scope/data/scope.glade.h:42 msgid "_Inspect" -msgstr "" +msgstr "_Erkunden" #: ../scope/data/scope.glade.h:43 msgid "_8-bit mode" msgstr "8-bit-Modus" #: ../scope/data/scope.glade.h:44 -#, fuzzy msgid "_Default" -msgstr "Vorgabe" +msgstr "_Vorgabe" #: ../scope/data/scope.glade.h:45 msgid "_7 bit" @@ -5496,17 +5496,16 @@ msgstr "_Anwenden" #: ../scope/data/scope.glade.h:57 -#, fuzzy msgid "_Expand" -msgstr "Alle ausklappen" +msgstr "_Ausklappen" #: ../scope/data/scope.glade.h:59 msgid "_Natural" -msgstr "" +msgstr "_Natürlich" #: ../scope/data/scope.glade.h:60 msgid "_Decimal" -msgstr "" +msgstr "_Dezimale" #: ../scope/data/scope.glade.h:61 msgid "_Hex" @@ -5522,51 +5521,47 @@ #: ../scope/data/scope.glade.h:64 msgid "_Raw" -msgstr "" +msgstr "_Raw" #: ../scope/data/scope.glade.h:65 msgid "_Evaluate/Modify" -msgstr "" +msgstr "_Evaluieren/Modifizieren" #: ../scope/data/scope.glade.h:66 msgid "_Watch Expression" -msgstr "" +msgstr "_Ausdruck ansehen" #: ../scope/data/scope.glade.h:67 msgid "_Inspect Variable" -msgstr "" +msgstr "_Veriable untersuchen" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "Zweige" #: ../scope/data/scope.glade.h:69 -#, fuzzy msgid "Stack" -msgstr "Ausführungsstapel" +msgstr "Ausführungsstapel (Stack)" #: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "Lokal" #: ../scope/data/scope.glade.h:71 -#, fuzzy msgid "Watches" -msgstr "Beobachten" +msgstr "Beobachtungspunkte" #: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "Speicher" #: ../scope/data/scope.glade.h:73 -#, fuzzy msgid "Enter gdb command:" -msgstr "Befehl einfügen" +msgstr "Befehl für gdb:" #: ../scope/data/scope.glade.h:74 -#, fuzzy msgid "Convert _UTF-8 to locale" -msgstr "In _Tabelle umwandeln" +msgstr "Von _UTF-8 nach Lokale umwandeln" #: ../scope/data/scope.glade.h:75 msgid "_Thread" @@ -5581,9 +5576,8 @@ msgstr "_Rahmen" #: ../scope/data/scope.glade.h:78 -#, fuzzy msgid "Setup Program" -msgstr "Kein Programm" +msgstr "Programmeinstellungen" #: ../scope/data/scope.glade.h:79 msgid "_Executable:" @@ -5615,14 +5609,14 @@ msgstr "" #: ../scope/data/scope.glade.h:86 -msgid "_Temporary breakpoint at:" +msgid "_Temporary breakpoint on load at:" msgstr "" #: ../scope/data/scope.glade.h:87 msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:524 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "Programm" @@ -5776,7 +5770,7 @@ msgid "_Expand on apply" msgstr "Alle ausklappen" -#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:524 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 msgid "Program Terminal" msgstr "" @@ -5784,8 +5778,59 @@ msgid "Registers" msgstr "" -#: ../scope/src/break.c:905 -#, fuzzy, c-format +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Haltepunkte" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Haltepunkt" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "Haltepunkte" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "Beobachtungspunkt schrieben" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "Auf Beobachtungspunkt zugreifen" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "Beobachtungspunkt auslesen" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "CLI" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "Bis zum Cursor ausführen" + +#: ../scope/src/break.c:1013 +# c-format msgid "" "There are two or more breakpoints at %s:%d.\n" "\n" @@ -5794,13 +5839,21 @@ "Es existieren zwei oder mehr Haltepunkte bei %s:%d.\n" "Benutzen Sie die Liste der Haltepunkte um den exakten zu entfernen." -#: ../scope/src/break.c:1151 -#, fuzzy +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr ", %s" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "func %s" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "Haltepunkt hinzufügen" -#: ../scope/src/break.c:1166 -#, fuzzy +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "Beobachtungspunkt hinzufügen" @@ -5813,7 +5866,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:509 ../scope/src/scope.c:552 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "»%s« schließen" @@ -5826,31 +5880,28 @@ #: ../scope/src/debug.c:363 #, c-format msgid "GDB died unexpectedly with status %d." -msgstr "" +msgstr "GDB wurde unerwartet beendet. Status: %d" #: ../scope/src/debug.c:365 -#, fuzzy msgid "Program terminated." -msgstr "abgebrochen" +msgstr "Programm abgebrochen" #: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "Keine Haltepunkte - Hängend" #: ../scope/src/debug.c:598 ../scope/src/thread.c:92 -#, fuzzy, c-format +# c-format msgid "%s." -msgstr "%s:" +msgstr "%s." #: ../scope/src/inspect.c:66 -#, fuzzy msgid "..." -msgstr "Mehr ..." +msgstr "..." #: ../scope/src/inspect.c:339 -#, fuzzy msgid "invalid data" -msgstr "Ungültige Markierung" +msgstr "ungültige Daten" #: ../scope/src/inspect.c:371 msgid "no children in range" @@ -5906,7 +5957,7 @@ msgid "Select File" msgstr "Datei auswählen" -#: ../scope/src/prefs.c:294 ../scope/src/utils.c:437 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" @@ -5991,41 +6042,41 @@ msgid "Show terminal" msgstr "In Terminal ausführen" -#: ../scope/src/scope.c:228 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:228 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "Fertig" -#: ../scope/src/scope.c:229 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:229 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:229 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "Laden" -#: ../scope/src/scope.c:423 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/scope.c:526 +#: ../scope/src/scope.c:524 #, fuzzy msgid "Breaks" msgstr "Haltepunkte" -#: ../scope/src/scope.c:528 +#: ../scope/src/scope.c:526 #, fuzzy msgid "Console" msgstr "Konsole:" -#: ../scope/src/scope.c:528 +#: ../scope/src/scope.c:526 #, fuzzy msgid "Debug Console" msgstr "Konsole:" @@ -6086,19 +6137,19 @@ msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:523 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:546 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:546 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:555 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Befehl 0:" @@ -6227,19 +6278,19 @@ msgid "Ignore All" msgstr "Alle ignorieren" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Vorgabe (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" "»Rechtschreibung beim Tippen überprüfen« ein-/ausschalten (Aktuelle Sprache: " "%s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Rechtschreibvorschläge" @@ -6308,20 +6359,20 @@ msgid "(Empty)" msgstr "(leer)" -#: ../treebrowser/src/treebrowser.c:971 +#: ../treebrowser/src/treebrowser.c:973 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Konnte das eingestellte externe Werkzeug »%s« nicht ausführen (%s)." -#: ../treebrowser/src/treebrowser.c:1042 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewDirectory" msgstr "Neues Verzeichnis" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1046 msgid "NewFile" msgstr "Neue Datei" -#: ../treebrowser/src/treebrowser.c:1049 +#: ../treebrowser/src/treebrowser.c:1051 #, c-format msgid "" "Target file '%s' exists\n" @@ -6330,121 +6381,121 @@ "Zieldatei »%s« existiert bereits.\n" "Möchten Sie diese wirklich mit einer leeren Datei ersetzen?" -#: ../treebrowser/src/treebrowser.c:1095 +#: ../treebrowser/src/treebrowser.c:1097 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Soll »%s« wirklich gelöscht werden?" -#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 +#: ../treebrowser/src/treebrowser.c:1209 ../treebrowser/src/treebrowser.c:1740 msgid "Go up" msgstr "Aufwärts" -#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 +#: ../treebrowser/src/treebrowser.c:1213 ../treebrowser/src/treebrowser.c:1755 msgid "Set path from document" msgstr "Pfad des Dokumentes übernehmen" -#: ../treebrowser/src/treebrowser.c:1215 +#: ../treebrowser/src/treebrowser.c:1217 #, fuzzy msgid "_Open externally" msgstr "Extern öffnen" -#: ../treebrowser/src/treebrowser.c:1220 +#: ../treebrowser/src/treebrowser.c:1222 msgid "Open Terminal" msgstr "In Terminal ausführen" -#: ../treebrowser/src/treebrowser.c:1224 +#: ../treebrowser/src/treebrowser.c:1226 msgid "Set as root" msgstr "Als Wurzel festlegen" -#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 -#: ../treebrowser/src/treebrowser.c:2123 +#: ../treebrowser/src/treebrowser.c:1231 ../treebrowser/src/treebrowser.c:1745 +#: ../treebrowser/src/treebrowser.c:2125 msgid "Refresh" msgstr "Auffrischen" -#: ../treebrowser/src/treebrowser.c:1233 +#: ../treebrowser/src/treebrowser.c:1235 #, fuzzy msgid "_Find in Files" msgstr "In Dateien finden" -#: ../treebrowser/src/treebrowser.c:1241 +#: ../treebrowser/src/treebrowser.c:1243 msgid "Create new directory" msgstr "Neues Verzeichnis anlegen" -#: ../treebrowser/src/treebrowser.c:1245 +#: ../treebrowser/src/treebrowser.c:1247 msgid "Create new file" msgstr "Neue Datei erstellen" -#: ../treebrowser/src/treebrowser.c:1249 +#: ../treebrowser/src/treebrowser.c:1251 msgid "Rename" msgstr "Umbenennen" -#: ../treebrowser/src/treebrowser.c:1254 +#: ../treebrowser/src/treebrowser.c:1256 msgid "Delete" msgstr "Löschen" -#: ../treebrowser/src/treebrowser.c:1262 +#: ../treebrowser/src/treebrowser.c:1264 #, c-format msgid "Close: %s" msgstr "»%s« schließen" -#: ../treebrowser/src/treebrowser.c:1267 +#: ../treebrowser/src/treebrowser.c:1269 #, c-format msgid "Close Child Documents " msgstr "Kinderdokumente schließen" -#: ../treebrowser/src/treebrowser.c:1272 +#: ../treebrowser/src/treebrowser.c:1274 #, fuzzy msgid "_Copy full path to clipboard" msgstr "Den vollständigen Pfad in die Zwischenablage kopieren" -#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 +#: ../treebrowser/src/treebrowser.c:1294 ../treebrowser/src/treebrowser.c:2034 msgid "Show bookmarks" msgstr "Lesezeichen anzeigen" -#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 +#: ../treebrowser/src/treebrowser.c:1299 ../treebrowser/src/treebrowser.c:1983 msgid "Show hidden files" msgstr "Versteckte Dateien anzeigen" -#: ../treebrowser/src/treebrowser.c:1302 +#: ../treebrowser/src/treebrowser.c:1304 msgid "Show toolbars" msgstr "Werkzeugleisten anzeigen" -#: ../treebrowser/src/treebrowser.c:1621 +#: ../treebrowser/src/treebrowser.c:1623 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Zieldatei »%s« existiert bereits. Möchten Sie diese wirklich ersetzen?" -#: ../treebrowser/src/treebrowser.c:1748 +#: ../treebrowser/src/treebrowser.c:1750 msgid "Home" msgstr "Ausgabe" -#: ../treebrowser/src/treebrowser.c:1758 +#: ../treebrowser/src/treebrowser.c:1760 msgid "Track path" msgstr "Pfad aufzeichnen" -#: ../treebrowser/src/treebrowser.c:1763 +#: ../treebrowser/src/treebrowser.c:1765 msgid "Hide bars" msgstr "Leisten verbergen" -#: ../treebrowser/src/treebrowser.c:1773 +#: ../treebrowser/src/treebrowser.c:1775 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "Filter (*.c;*.h;*.cpp). Die Nutzung von ! invertiert das Ergebnis." -#: ../treebrowser/src/treebrowser.c:1781 +#: ../treebrowser/src/treebrowser.c:1783 msgid "Addressbar for example '/projects/my-project'" msgstr "Adressleiste. Zum Beispiel »/projects/my-project«" -#: ../treebrowser/src/treebrowser.c:1806 +#: ../treebrowser/src/treebrowser.c:1808 msgid "Tree Browser" msgstr "Baumnavigator" -#: ../treebrowser/src/treebrowser.c:1945 +#: ../treebrowser/src/treebrowser.c:1947 msgid "External open command" msgstr "Externer Öffnen-Befehl" -#: ../treebrowser/src/treebrowser.c:1950 +#: ../treebrowser/src/treebrowser.c:1952 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6458,53 +6509,53 @@ "%f wird mit dem Dateinamen ersetzt, der den kompletten Pfad beinhaltet.\n" "%d wird mit dem Pfad des Verzeichnisses der aktuellen Datei ersetzt." -#: ../treebrowser/src/treebrowser.c:1958 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Toolbar" msgstr "Werkzeugleiste:" -#: ../treebrowser/src/treebrowser.c:1960 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Hidden" msgstr "Versteckt" -#: ../treebrowser/src/treebrowser.c:1961 +#: ../treebrowser/src/treebrowser.c:1963 msgid "Top" msgstr "Oben" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:1964 msgid "Bottom" msgstr "Unten" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:1969 msgid "If position is changed, the option require plugin restart." msgstr "Bei einer Veränderung der Position muss das Plugin neu geladen werden." -#: ../treebrowser/src/treebrowser.c:1971 +#: ../treebrowser/src/treebrowser.c:1973 msgid "Show icons" msgstr "Symbole anzeigen:" -#: ../treebrowser/src/treebrowser.c:1973 +#: ../treebrowser/src/treebrowser.c:1975 msgid "None" msgstr "Keines" -#: ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1976 msgid "Base" msgstr "Basis" -#: ../treebrowser/src/treebrowser.c:1975 +#: ../treebrowser/src/treebrowser.c:1977 msgid "Content-type" msgstr "Inhaltsart" -#: ../treebrowser/src/treebrowser.c:1986 +#: ../treebrowser/src/treebrowser.c:1988 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "Unter Windows versteckt dies nur Dateien, die mit einem ».« (Punkt) " "beginnen. " -#: ../treebrowser/src/treebrowser.c:1988 +#: ../treebrowser/src/treebrowser.c:1990 msgid "Hide object files" msgstr "Objektdateien verbergen" -#: ../treebrowser/src/treebrowser.c:1993 +#: ../treebrowser/src/treebrowser.c:1995 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6512,56 +6563,56 @@ "Keine generierten Objektdateien anzeigen. Dies bezieht *.o, *.obj. *.so, *." "dll, *.a, *.lib mit ein." -#: ../treebrowser/src/treebrowser.c:1995 +#: ../treebrowser/src/treebrowser.c:1997 msgid "Reverse filter" msgstr "Filter zurücksetzen" -#: ../treebrowser/src/treebrowser.c:2000 +#: ../treebrowser/src/treebrowser.c:2002 msgid "Follow current document" msgstr "Dem aktuellen Dokument folgen" -#: ../treebrowser/src/treebrowser.c:2005 +#: ../treebrowser/src/treebrowser.c:2007 msgid "Single click, open document and focus it" msgstr "Einzelklick öffnet Dokument und fokussiert es" -#: ../treebrowser/src/treebrowser.c:2010 +#: ../treebrowser/src/treebrowser.c:2012 msgid "Double click open directory" msgstr "Doppelklick öffnet ein Verzeichnis" -#: ../treebrowser/src/treebrowser.c:2015 +#: ../treebrowser/src/treebrowser.c:2017 msgid "On delete file, close it if is opened" msgstr "Datei schließen, wenn sie gelöscht wird" -#: ../treebrowser/src/treebrowser.c:2020 +#: ../treebrowser/src/treebrowser.c:2022 msgid "Focus editor on file open" msgstr "" -#: ../treebrowser/src/treebrowser.c:2025 +#: ../treebrowser/src/treebrowser.c:2027 msgid "Show tree lines" msgstr "Leere Zeilen anzeigen" -#: ../treebrowser/src/treebrowser.c:2037 +#: ../treebrowser/src/treebrowser.c:2039 #, fuzzy msgid "Open new files" msgstr "Datei öffnen" -#: ../treebrowser/src/treebrowser.c:2113 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus File List" msgstr "Dateiliste fokussieren" -#: ../treebrowser/src/treebrowser.c:2115 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Focus Path Entry" msgstr "Pfadeintrag fokussieren" -#: ../treebrowser/src/treebrowser.c:2117 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Rename Object" msgstr "Objekt umbenennen" -#: ../treebrowser/src/treebrowser.c:2119 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New File" msgstr "Neue Datei erstellen" -#: ../treebrowser/src/treebrowser.c:2121 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Create New Directory" msgstr "Neues Verzeichnis erstellen" diff -Nru geany-plugins-1.24.0+20140222+git/po/es.po geany-plugins-1.24.1+dfsg/po/es.po --- geany-plugins-1.24.0+20140222+git/po/es.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/es.po 2014-04-12 14:28:39.000000000 +0000 @@ -1,23 +1,24 @@ # translation of es.po to # Spanish translation for geany-plugins -# Copyright (C) 2009 - 2011 THE PACKAGE'S COPYRIGHT HOLDER +# Copyright (C) 2009 - 2014 Lucas Vieites # This file is distributed under the same license as the geany-plugins package. # Andrew Janke , 2009 -# Lucas Vieites , 2009 - 2013 +# Lucas Vieites , 2009 - 2014. # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-25 05:19+0000\n" -"PO-Revision-Date: 2013-02-26 12:07+0100\n" +"POT-Creation-Date: 2014-03-31 03:19+0000\n" +"PO-Revision-Date: 2014-04-07 21:25+0200\n" "Last-Translator: Lucas Vieites \n" -"Language-Team: \n" +"Language-Team: Spanish; Castilian <>\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.5.4\n" +"X-Generator: Gtranslator 2.91.6\n" #: ../addons/src/ao_bookmarklist.c:182 msgid "(Empty Line)" @@ -36,12 +37,12 @@ msgid "Contents" msgstr "Contenido" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Marcadores" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "_Actualizar" @@ -78,15 +79,15 @@ msgid "Context:" msgstr "Contexto:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "Etiquetado XML" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nombre de etiqueta para insertar:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -155,11 +156,12 @@ msgid "Run XML tagging" msgstr "Ejecutar etiquetado de XML" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "No se ha podido crear el directorio de configuración del complemento." @@ -250,6 +252,14 @@ msgstr "" "Incluir selección automáticamente (sin pulsar una combinación de teclas)" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "Autocierre" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "Auto-cerrar paréntesis y corchetes con multitud de opciones" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navegación por el código" @@ -319,8 +329,8 @@ msgid "Various debuggers integration." msgstr "Integración de varios depuradores." -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:16 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Depurar" @@ -456,7 +466,7 @@ msgid "Target" msgstr "Objetivo" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:12 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Puntos de ruptura" @@ -493,22 +503,22 @@ msgstr "Reiniciar" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "Entrar" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "Saltar" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "Salir" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "Ejecutar hasta cursor" @@ -517,7 +527,7 @@ msgstr "Añadir/eliminar punto de ruptura" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "Saltar a la instrucción actual" #: ../debugger/src/watch_model.c:220 @@ -548,6 +558,14 @@ msgid "Save debug session data to a project" msgstr "Guardar los datos de la sesión de depuración en un proyecto" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "Definir formateador" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "Alinear la barra invertida automáticamente en ´define´s multilínea" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -659,7 +677,7 @@ msgstr "Libro:" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1757 msgid "Book" msgstr "Libro" @@ -797,12 +815,12 @@ msgid "A developers' help browser for GNOME" msgstr "Un visor de ayuda para el desarrollador de Gnome" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Archivo" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "_Editar" @@ -982,55 +1000,63 @@ msgid "Column mode, select to line / brace / anchor." msgstr "Modo columna, seleccionar hasta la línea/corchete/ancla." -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Selección e_xtra" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "Modo _columna" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Modo columna" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Seleccionar hasta _línea" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Seleccionar hasta línea" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Seleccionar hasta _corchete correspondiente" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Seleccionar hasta corchete correspondiente" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "In_tercambiar flujo/rectangular" + +#: ../geanyextrasel/src/extrasel.c:532 +msgid "Convert selection" +msgstr "Convertir selección" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "Fijar an_cla" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "Fijar ancla" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "Seleccionar hasta _ancla" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "Seleccionar hasta ancla" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "Seleccionar en _rectángulo hasta ancla" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "Seleccionar en rectángulo hasta ancla" @@ -1445,76 +1471,76 @@ "Tipo de documentación por defecto para los lenguajes que no tienen un tipo " "especificado" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Insertar números" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Insertar/Rellenar columnas con números" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Contando..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Preparando..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Insertando..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Para base 11 y superiores" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Inicio:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Paso:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Letras:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "Mayúsc_ulas" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "Minúscu_las" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "_Prefijo base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "0 para octal, 0x para hex, + para decimal positivo" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Relleno:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Esp_acio" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Cero" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Insertar _números" @@ -1948,20 +1974,20 @@ msgid "BibTeX reference name:" msgstr "Nombre de referencia BibTeX:" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1677 msgid "Dear Sir or Madame" msgstr "Estimado Señor o Señora" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1678 msgid "With kind regards" msgstr "Saludos cordiales" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1686 msgid "No template assigned. Aborting" msgstr "No se asignó ninguna plantilla. Cancelando" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1713 msgid "LaTeX-Wizard" msgstr "Asistente LaTeX" @@ -1969,67 +1995,67 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1728 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Plantilla:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1732 msgid "Set the template which should be used for creating the new document" msgstr "Establezca la plantilla que se usará para crear el nuevo documento" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1741 msgid "Default" msgstr "Por defecto" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1752 msgid "Documentclass:" msgstr "Clase de documento:" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1755 msgid "Choose the kind of document you want to write" msgstr "Elija el tipo de documento que desea escribir" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1759 msgid "Article" msgstr "Artículo" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Report" msgstr "Informe" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Letter" msgstr "Carta" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Presentation" msgstr "Presentación" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1775 msgid "Encoding:" msgstr "Codificación:" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1779 msgid "Set the encoding for your new document" msgstr "Establezca la codificación para su nuevo documento" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1795 msgid "Font size" msgstr "Tamaño de letra" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1801 msgid "Set the default font size of your new document" msgstr "Establezca el tamaño de letra por defecto de su nuevo documento" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1813 msgid "Author:" msgstr "Autor:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1816 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" @@ -2038,11 +2064,11 @@ "debería ser su nombre" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1830 msgid "Date:" msgstr "Fecha:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1833 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2053,37 +2079,37 @@ "si usted no necesita ninguna fecha fija." #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1845 msgid "Title:" msgstr "Título:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1848 msgid "Sets the title of your new document." msgstr "Establece el título de su nuevo documento." #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1857 msgid "Paper size:" msgstr "Tamaño del papel:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1860 msgid "Choose the paper format for the newly created document" msgstr "Elija el formato de papel para el nuevo documento creado" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1873 msgid "Paper Orientation:" msgstr "Orientación de papel:" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1876 msgid "Choose the paper orientation for the newly created document" msgstr "Elija la orientación de papel para el nuevo documento creado" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1897 msgid "Use KOMA-script classes if possible" msgstr "Utilizar clases de script KOMA si es posible" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1899 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " @@ -2093,11 +2119,11 @@ "No olvide que para compilar su documento, estas clases deben ser instaladas " "primero." -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1906 msgid "Use draft mode" msgstr "Usar modo borrador" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1908 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" @@ -2105,95 +2131,95 @@ "Establece el modo borrador en los nuevos documentos creados para obtener " "documentos con cierta cantidad de ayudantes de depuración" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1925 msgid "Run LaTeX-Wizard" msgstr "Ejecutar el asistente LaTeX" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Insert \\label" msgstr "Insertar \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\ref" msgstr "Insertar \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert linebreak \\\\ " msgstr "Insertar salto de línea \\\\" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1934 msgid "Insert command" msgstr "Insertar comando" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Turn input replacement on/off" msgstr "Activar/desactivar reemplazo de entrada" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1940 msgid "Replace special characters" msgstr "Reemplazar caracteres especiales" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1943 msgid "Run insert environment dialog" msgstr "Ejecutar diálogo de insertar entorno" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Insert \\item" msgstr "Insertar \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Format selection in bold font face" msgstr "Aplicar negrita a la selección" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in italic font face" msgstr "Aplicar cursiva a la selección" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in typewriter font face" msgstr "Aplicar fuente Typewriter a la selección" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection centered" msgstr "Centrar selección" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection left-aligned" msgstr "Alinear selección a la izquierda" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection right-aligned" msgstr "Alinear selección a la derecha" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1960 msgid "Insert description list" msgstr "Insertar lista de tipo description" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1963 msgid "Insert itemize list" msgstr "Insertar lista de tipo itemize" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1966 msgid "Insert enumerate list" msgstr "Insertar lista de tipo enumerate" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1969 msgid "Set selection one level up" msgstr "Establecer la selección a un nivel más arriba" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1972 msgid "Set selection one level down" msgstr "Establecer la selección a un nivel más abajo" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1975 msgid "Insert \\usepackage{}" msgstr "Insertar \\usepackage{}" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1978 msgid "Insert BibTeX reference dialog" msgstr "Diálogo insertar referencia BibTeX" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1985 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2204,7 +2230,7 @@ "Por favor, notifique todos los fallos o características deseadas a " "cualquiera de los autores." -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2023 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" @@ -2213,117 +2239,117 @@ "válido. Por tanto, se ha tomado el valor por defecto. Por favor, revise su " "archivo de configuración" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2045 ../geanylatex/src/geanylatex.c:2052 msgid "page \\pageref{{{reference}}}" msgstr "página \\pageref{{{reference}}}" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2049 ../geanylatex/src/geanylatex.c:2056 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "\\ref{{{reference}}}, página \\pageref{{{reference}}}" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2104 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2113 ../geanylatex/src/geanylatex.c:2325 msgid "LaTeX-_Wizard" msgstr "_Asistente LaTeX" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "Inicia un asistente para crear fácilmente documentos de LaTeX" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2121 msgid "I_nsert Special Character" msgstr "I_nsertar carácter especial" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2123 msgid "Helps to use some not very common letters and signs" msgstr "Ayuda a utilizar algunos símbolos y letras poco comunes" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2133 msgid "Insert _Reference" msgstr "Insertar _referencia" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Inserting references to the document" msgstr "Insertar referencias al documento" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2140 msgid "Insert _Label" msgstr "Insertar _etiqueta" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Helps at inserting labels to a document" msgstr "Ayuda a insertar etiquetas a un documento" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2148 msgid "Insert _Environment" msgstr "Insertar _entorno" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Helps at inserting an environment a document" msgstr "Ayuda a insertar un entorno a un documento" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2156 msgid "Insert P_ackage" msgstr "Insertar _paquete" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2158 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" "Un pequeño diálogo para insertar \\usepackage{} en la cabecera del fichero " "actual" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:82 +#: ../geanylatex/src/geanylatex.c:2163 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Formato" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2180 msgid "F_ont size" msgstr "Tamaño de _fuente" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2198 msgid "_Special Character Replacement" msgstr "Reemplazo de caractere_s especiales" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2206 msgid "Bulk _Replace Special Characters" msgstr "_Reemplazar caracteres especiales de forma masiva" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2208 msgid "_Replace selected special characters with TeX substitutes" msgstr "_Reemplazar caracteres especiales seleccionados con sustitutos TeX" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2216 msgid "Toggle _Special Character Replacement" msgstr "Alternar reemplazo de caractere_s especiales" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2227 msgid "Insert _Command" msgstr "Insertar _comando" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Inserting costumized command to document" msgstr "Insertar comando personalizado en el documento" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2254 msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2262 msgid "Insert B_ibTeX reference" msgstr "Insertar referencia B_ibTeX" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Helps to insert a reference out of BibTeX files" msgstr "Ayuda a la inserción de referencias de archivos BibTeX" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2269 msgid "_BibTeX entries" msgstr "Entradas _BibTeX" @@ -2479,16 +2505,16 @@ msgid "Creating dummy text with Geany" msgstr "Creando texto de relleno con Geany" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Generador Lipsum" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Introduzca la longitud del texto Lipsum" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2626,19 +2652,19 @@ msgid "Browse..." msgstr "Explorar..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Seleccionar color" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Elegir..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Seleccionar fuente" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Seleccionar..." @@ -2669,7 +2695,7 @@ "Error en el módulo «%s» en la función %s()\n" "no hay argumentos suficientes para el comando «%s».\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2709,7 +2735,7 @@ msgid "Save file" msgstr "Guardar archivo" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2718,7 +2744,7 @@ "Error en el módulo «%s» en la función pickfile()\n" "no se ha podido interpretar la cadena del filtro en el eargumento nº 3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2765,7 +2791,7 @@ "El complemento %s no se ha cargado correctamente.\n" "Compruebe su instalación." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" @@ -2774,7 +2800,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2010 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2783,7 +2809,7 @@ "Error en el módulo «%s» en la función %s()\n" "no se encuentra el componente «%s» para el argumento nº1.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3136,6 +3162,18 @@ "Insertar un duplicado del texto seleccionado después de la selección. Si no " "hay nada seleccionado, duplicar la línea" +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "Buscar siguiente \"\"" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "Buscar anterior \"\"" + +#: ../geanymacro/src/geanymacro.c:152 +msgid "Set start of search to beginning of selection" +msgstr "Mover inicio de búsqueda a inicio de selección" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "Macros" @@ -3382,12 +3420,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "_Ok" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "_Cancelar" @@ -3404,7 +3442,7 @@ msgid "Search for contents of clipboard" msgstr "Buscar el contenido del portapapeles" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Buscar:" @@ -3438,58 +3476,58 @@ msgid "Text:" msgstr "Texto:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "Insertar/reemplazar con «%s»" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "Editar: %s" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "Evento" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "Mover hacia _arriba" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "Mover hacia a_bajo" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "Nuevo _encima" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "Nuevo _debajo" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" msgstr "_Eliminar" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "Editar macros" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "Nombre de macro" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "Tecla del disparador" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "_Regrabar" @@ -3508,6 +3546,55 @@ msgid "_Edit Macros" msgstr "_Editar macros" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" +"GMS: Plugin de filtro Geany Mini-Script\n" +"Este plugin es una herramienta para aplicar un filtro de script a:\n" +" o la selección de texto,\n" +" o el documento actual,\n" +" o todos los documentos de la sesión actual.\n" +"\n" +"El filtro puede ser de tipo:\n" +" o script shell Unix,\n" +" o script perl,\n" +" o script python,\n" +" o commandos sed,\n" +" o script awk.\n" +"\n" +"AUTOR\n" +" Escrito por Pascal BURLOT (Diciembre, 2008)\n" +"\n" +"LICENCIA:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "Cargar archivo mini-script" @@ -3516,113 +3603,112 @@ msgid "Save Mini-Script File" msgstr "Guardar archivo mini-script" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "Filto mini-script" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "Limpiar la ventana de mini-script" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "Cargar un mini-script en esta ventana" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "Guardar el mini-script en un archivo" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "Mostrar información acerca de plugin mini-script" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "seleccionar el tipo de mini-script" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "entrada del filtro" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "seleccionar la entrada del filtro del mini-script" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "selección" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "documento" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "sesión" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "salida del filtro" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "seleccionar la salida del filtro del mini-script" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "Documento actual" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "Documento nuevo" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "configuración de script" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" msgstr "Mini Script" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" "Una herramienta para aplicar un filtro de script sobre una selección de " "texto o un documento actual" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "Pascal BURLOT, un usuario de Geany" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "_Mini-Script" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "Marcadores numerados para Geany" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" "No se han podido aplicar todos los marcadores a «%s» ya que todos están en " "uso." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "_OK" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3633,52 +3719,52 @@ "posiciones de los marcadores no son fiables y no serán cargadas.\n" "Pulse «Ignorar» para intentar cargar los marcadores de todos modos." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "_Ignorar" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "recordar estado de plegado" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "Centrar vista al ir a un marcador" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 msgid "Move to start of line" msgstr "Mover al inicio de la línea" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "Mover a la posición recordada de la línea" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "Mover a la posición en la línea actual" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 msgid "Move to End of line" msgstr "Mover al final de la línea" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "Guardar los ajustes del archivo con los ajustes del programa" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "Guardar los ajustes del archivo a un nombre de fichero con sufijo" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "recordar marcadores normales" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "Ayuda de marcadores numerados" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3706,7 +3792,7 @@ "podrá tener más de un marcador por línea. Para moverse a un marcador fijado " "anteriormente, pulse Ctrl+un número de 0 a 9." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "No se pueden aplicar marcadores ya que están todos ocupados." @@ -3793,36 +3879,36 @@ msgstr "Seleccionar firmante" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "No pudo usar pinentry" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "Salida inesperado desde pinentry" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "entrada de contraseña" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Contraseña" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "Entra contraseña para" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "pinentry ha hecho un error" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "Error inesperado desde pinentry" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3834,8 +3920,8 @@ msgid "a key with fingerprint" msgstr "un clave con huella dactilar" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "desconocido" @@ -4002,7 +4088,7 @@ msgstr "Abrir archivo de firma" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Proyecto" @@ -4031,7 +4117,7 @@ msgid "C_reate" msgstr "C_rear" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:29 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nombre:" @@ -4109,7 +4195,7 @@ msgid "Remove File" msgstr "Eliminar archivo" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Ocultar barra _lateral" @@ -4118,6 +4204,48 @@ msgid "Project \"%s\" opened." msgstr "Se ha abierto el proyecto «%s»." +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "GeanyPy" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "Soporte para plugins Python" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "No se ha podido precargar la biblioteca Python: %s." + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "No de ha podido importar el módulo de gestión" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "Ha fallado la importación de PluginManager del módulo de gestión" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "No se ha encontrado el directorio de plugins del sistema." + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "No se ha podido instanciar un nuevo PluginManager" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "No de ha podido obtener el método get_all() en el gestor de plugins" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "No se ha podido crear el directorio de plugins Python: %s: %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "Gestor de plugins Python" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4138,13 +4266,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "Introduzca la dirección e-mail del destinatario:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "No se ha encontrado el sustituto del nombre de archivo. El comando ejecutado " "podría haber fallado." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4152,33 +4280,33 @@ "No se ha encontrado el sustituto de la dirección email del destinatario. El " "comando ejecutado podría haber fallado." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "No se ha podido ejecutar el programa de correo. Compruebe su configuración." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Primero debe definir un cliente de correo." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Debe guardar el archivo antes de enviar." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Enviar" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Enviar por correo electrónico" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Ruta y opciones del cliente de correo:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4196,31 +4324,31 @@ "\tsylpheed --attach \"%f\" --compose \"%r\"\n" "\tmutt -s \"Enviando '%b'\" -a \"%f\" \"%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Mostrar icono en la barra de herramientas" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Muestra un icono en la barra de herramientas para enviar el archivo más " "fácilmente." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" "Usar un diálogo para introducir la dirección de correo de los destinatarios" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Enviar archivo por correo electrónico" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Enviar docu_mento" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4240,76 +4368,99 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "Error de geanyvc: s_spawn_sync: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "Archivo %s: acción %s ejecutado vía %s." + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: No se puede renombrar «%s» a «%s»" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "No se han realizado cambios." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "No hay historia disponible" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "¿Está seguro de que quiere revertir «%s»?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "¿Está seguro de que quiere añadir «%s»?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "¿Está seguro de que quiere eliminar «%s»?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "¿Está seguro de que quiere actualizar?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" +"Las diferencias resultantes no se pueden mostrar porque son demasiado " +"grandes para mostrar aquí y ralentizarían la UI considerablemente.\n" +"/nPara ver las diferencias cancele este diálogo y abra las diferencias " +"directamente en Geany mediante el menú GeanyVC (Directorio base -> Diff)." + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Commit S/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Estado" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Ruta" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "Línea: %d Columna: %d" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Commit" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "_De/seleccionar todos los archivos" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Mensaje de commit:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "C_ommit" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "No hay nada para commit." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Ha ocurrido un error al iniciar la comprobación ortográfica: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4318,13 +4469,13 @@ "Ha ocurrido un error al configurar un idioma para la comprobación " "otrográfica. Compruebe su configuración. El mensaje de error es: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" "Fijar el indicador «Modificado» para pestañas de documentos creados por el " "complemento" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4335,43 +4486,43 @@ "puede ser útil en algunos casos, podrá causar la aparición de una molesta " "cantidad de diálogos del tipo «¿Desea guardar el archivo?»." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Confirmar la adición de archivos nuevos al VCS" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "Muestra un diálogo de confirmación al añadir un archivo nuevo al VCS." -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Maximizar el diálogo de commit" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Mostrar el diálogo de commit maximizado." -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Usar un visor de diffs externo" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Usar un programa externo para visualizar diferencias entre archivos." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Mostrar menús de VC en el menú del editor" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "Mostrar opciones de menú para funciones de VC en los menús del editor" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "Añadir menú a la barra de menús" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " @@ -4381,211 +4532,211 @@ "o directamente den la barra de menús de Geany. Se tendrá en cuenta después " "de reiniciar GeanyVC" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Activar CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Activar GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Activar SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Activar SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Activar Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Activar Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Idioma de comprobación ortográfica" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "Acciones de archivo _VC" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diff" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Crear un diff del archivo actual" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Revertir" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "Restaurar una copia limpia de trabajo (deshacer ediciones locales)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Culpar" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Muestra los cambios hechos a un archivo por revisión y autor." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Historial (registro)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Muestra el registro del archivo actual" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Original" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "Muestra el original del archivo actual" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "_Añadir a control de versiones" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Añadir un archivo al repositorio." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "Elimina_r del Control de Versiones" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Eliminar el archivo del repositorio." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Directorio" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Realizar un diff del directorio del archivo actual" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" "Restaurar los archivos originales en el directorio actual (deshacer " "ediciones locales)." -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Muestra el registro del directorio actual" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Directorio _Base" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "Crear un diff desde el directorio superior de CV" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Revertir cualquier modificación local" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Muestra el registro del directorio superior de CV" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "_Commit CV" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Mostrar diff del archivo" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Mostrar diff del directorio" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Mostrar diff del directorio base" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Hacer commit de los cambios" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Mostrar estado" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Revertir un solo archivo" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Revertir directorio" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Revertir directorio base" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Actualizar archivo" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "C_V" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "Control de _versiones" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "E_stado" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Mostrar estado." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Actualizar desde el repositorio remoto." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "_Commit" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Hacer commit de los cambios." @@ -4745,95 +4896,251 @@ "Nota: defina los patrones de los archivos pertenecientes al proyecto bajo la " "pestaña «Proyecto»" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Buscar archivo" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Buscar en:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Sensible _a mayúsculas" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "Buscar en la ruta completa" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Recargar todos" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Expandir todos" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Colapsar todos" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "Seguir editor activo" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Expandir todos" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Buscar en archivos" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "Posición:" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "Barra lateral" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "Ventana de mensajes" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "Fuente:" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "Fuente de código:" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "Color de fondo:" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "Color de frente:" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "Seleccionar plantilla" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "Vista previa en directo de Markdown" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "Vista previa de Markdown" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "El documento actual no es un archivo de tipo Markdown." +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "Resaltador de etiquetas parejas" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "Encuentra y resalta etiquetas HTML de apertura/cierre" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "Ayudante de _traducción" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "Cadena _anterior" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to previous string" +msgstr "Ir a la cadena anterior" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "Cadena _siguiente" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to next string" +msgstr "Ir a la siguiente cadena" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "A_nterior sin traducir" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to previous untranslated string" +msgstr "Ir a la anterior cadena sin traducir" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "Siguien_te sin traducir" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to next untranslated string" +msgstr "Ir a la siguiente cadena sin traducir" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "Difu_sa anterior" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to previous fuzzily translated string" +msgstr "Ir a la traducción difusa anterior" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "Siguiente di_fusa" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to next fuzzily translated string" +msgstr "Ir a la siguiente traducción difusa" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "Anterior sin traducir o difu_sa" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1052 +msgid "Go to previous untranslated or fuzzy string" +msgstr "Ir a la anterior cadena sin traducir o difusa" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "Siguiente sin traducir _o difusa" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1056 +msgid "Go to next untranslated or fuzzy string" +msgstr "Ir a la siguiente cadena sin traducir o difusa" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1067 +msgid "Toggle current translation fuzziness" +msgstr "Conmutar estado de traducción difusa" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "Conmu_tar difuso" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "Pegar _original como traducción" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "Pegar la cadena original sin traducir como traducción" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1064 +msgid "Reflow the current translation string" +msgstr "Refluir la cadena de traducción actual" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "_Refluir traducción" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" +"Indica si se actualizan las cabeceras de la traducción (autor, fecha de " +"revisión, etc.) al guardar el archivo" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "Actualizar _cabeceras al guardar" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "Ayudante de traducción" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "Mejora el soporte para archivos de traducción Gettext." + +#: ../pohelper/src/gph-plugin.c:1060 +msgid "Paste original untranslated string to translation" +msgstr "Pegar cadena original sin traducir como traducción" + +#: ../pohelper/src/gph-plugin.c:1102 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "No se pudo cargar el archivo de configuración: %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "No se pudo crear el directorio de configuración «%s»: %s" + +#: ../pohelper/src/gph-plugin.c:1130 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "No se pudo guardar el archivo de configuración: %s" + +#: ../pohelper/src/gph-plugin.c:1185 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"No se pudo cargar la definición de UI, compruebe su instalación. El mensaje " +"de error: %s" + +#: ../pohelper/src/gph-plugin.c:1225 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" +"No se pudo encontrar el widget «%s» en la definición de UI, compruebe su " +"instalación." + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "PrettyPrinter XML" @@ -4923,503 +5230,568 @@ msgstr "Cambio de línea" #: ../scope/data/scope.glade.h:1 -msgid "-" -msgstr "-" +msgid "Debu_g" +msgstr "Depura_r" #: ../scope/data/scope.glade.h:2 -msgid "Inspect" -msgstr "Inspeccionar" +msgid "_Setup Program" +msgstr "_Configurar programa" #: ../scope/data/scope.glade.h:3 -msgid "Others" -msgstr "Otros" +msgid "Recent _Programs" +msgstr "_Programas recientes" #: ../scope/data/scope.glade.h:4 -msgid "Panel" -msgstr "Panel" +msgid "_Run/Continue" +msgstr "Ejecuta_r/continuar" #: ../scope/data/scope.glade.h:5 -msgid "Values" -msgstr "Valores" +msgid "Run to _Cursor" +msgstr "Ejecutar hasta _cursor" #: ../scope/data/scope.glade.h:6 -msgid "@" -msgstr "@" +msgid "Run to _Source" +msgstr "Ejecutar hasta _origen" #: ../scope/data/scope.glade.h:7 -msgid "Add _Break" -msgstr "Añadir _ruptura" +msgid "Step _Into" +msgstr "En_trar" #: ../scope/data/scope.glade.h:8 -msgid "Add _Watch" -msgstr "Añadir _vigilancia" +msgid "Step _Over" +msgstr "S_altar" #: ../scope/data/scope.glade.h:9 -msgid "Apply on _Run" -msgstr "Aplicar al ejecuta_r" +msgid "Step O_ut" +msgstr "Sal_ir" #: ../scope/data/scope.glade.h:10 -msgid "Auto _Hide" -msgstr "Ocultar _automáticamente" +msgid "_Terminate" +msgstr "_Terminar" #: ../scope/data/scope.glade.h:11 -msgid "Auto _run program/exit gdb" -msgstr "Ejecutar programa automáticamente/_salir de gdb" +msgid "Toggle _Breakpoint" +msgstr "Intercam_biar punto de ruptura" + +#: ../scope/data/scope.glade.h:12 +msgid "_GDB Command" +msgstr "Comando _GDB:" #: ../scope/data/scope.glade.h:13 -msgid "Convert _UTF-8 to locale" -msgstr "Convertir _UTF-8 a locale" +msgid "_More" +msgstr "_Más" #: ../scope/data/scope.glade.h:14 -msgid "Count:" -msgstr "Suma:" +msgid "_Show Terminal" +msgstr "_Mostrar terminal" #: ../scope/data/scope.glade.h:15 -msgid "Debu_g" -msgstr "Depura_r" +msgid "_Reset Markers" +msgstr "_Reiniciar marcadores" + +#: ../scope/data/scope.glade.h:16 +msgid "_Cleanup Files" +msgstr "Ar_chivos de limpieza" #: ../scope/data/scope.glade.h:17 -msgid "Debug Console" -msgstr "Consola de depuración:" +msgid "_Feed" +msgstr "_Alimentar" #: ../scope/data/scope.glade.h:18 -msgid "Default 8-bit text mode:" -msgstr "Modo pred. texto 8-bits:" +msgid "_Window" +msgstr "_Ventana" #: ../scope/data/scope.glade.h:19 -msgid "Display" -msgstr "Mostrar" +msgid "_Auto Show" +msgstr "_Automostrar" #: ../scope/data/scope.glade.h:20 -msgid "E_xpand on apply" -msgstr "E_xpandir al aplicar" +msgid "Auto _Hide" +msgstr "Ocultar _automáticamente" #: ../scope/data/scope.glade.h:21 -msgid "En_vironment:" -msgstr "Ento_rno:" +msgid "Show on _Error" +msgstr "Mostrar en _error" #: ../scope/data/scope.glade.h:22 -msgid "Enter assignment expression:" -msgstr "Introduzca expresión de asignación:" +msgid "_Unsorted" +msgstr "_Desordenado" #: ../scope/data/scope.glade.h:23 -msgid "Enter gdb command:" -msgstr "Introduzca comando gdb:" +msgid "_View Source" +msgstr "_Ver fuente" #: ../scope/data/scope.glade.h:24 -msgid "Expand" -msgstr "Expandir" - +msgid "S_ynchronize" +msgstr "S_incronizar" + #: ../scope/data/scope.glade.h:25 -msgid "Frame:" -msgstr "Marco:" +msgid "_Interrupt" +msgstr "_Interrumpir" #: ../scope/data/scope.glade.h:26 -msgid "Inspect" -msgstr "Inspeccionar" +msgid "_Send Signal" +msgstr "Enviar _señal" #: ../scope/data/scope.glade.h:27 -msgid "Locals" -msgstr "Locales" +msgid "S_elect on" +msgstr "S_eleccionar al" #: ../scope/data/scope.glade.h:28 -msgid "Memory" -msgstr "Memoria" +msgid "_Running" +msgstr "_Ejecutando" + +#: ../scope/data/scope.glade.h:29 +msgid "_Stopped" +msgstr "_Detenido" #: ../scope/data/scope.glade.h:30 -msgid "Object:" -msgstr "Objeto:" +msgid "_Exited" +msgstr "_Terminado" #: ../scope/data/scope.glade.h:31 -msgid "Open on" -msgstr "Abrir al" +msgid "_Follow" +msgstr "_Seguir" #: ../scope/data/scope.glade.h:32 -msgid "Options" -msgstr "Opciones" +msgid "_Columns" +msgstr "_Columnas" -#: ../scope/data/scope.glade.h:33 ../scope/src/prefs.c:337 -msgid "Program" -msgstr "Programa" +#: ../scope/data/scope.glade.h:33 +msgid "Show _Group" +msgstr "Mostrar _grupo" #: ../scope/data/scope.glade.h:34 -msgid "Program Terminal" -msgstr "Terminal de programa" +msgid "Show _Core" +msgstr "Mostrar nú_cleo" #: ../scope/data/scope.glade.h:35 -msgid "R_ead" -msgstr "L_eer" +msgid "Add _Break" +msgstr "Añadir _ruptura" #: ../scope/data/scope.glade.h:36 -msgid "Recent _Programs" -msgstr "_Programas recientes" +msgid "Add _Watch" +msgstr "Añadir _vigilancia" #: ../scope/data/scope.glade.h:37 -msgid "Run to _Cursor" -msgstr "Ejecutar hasta _cursor" +msgid "Apply on _Run" +msgstr "Aplicar al ejecuta_r" #: ../scope/data/scope.glade.h:38 -msgid "Run to _Source" -msgstr "Ejecutar hasta _origen" +msgid "_Show @entry" +msgstr "_Mostrar @entrada" #: ../scope/data/scope.glade.h:39 -msgid "S_elect on" -msgstr "S_eleccionar al" +msgid "Show _Address" +msgstr "Mostrar _dirección" #: ../scope/data/scope.glade.h:40 -msgid "S_how" -msgstr "Mo_strar" +msgid "_Modify" +msgstr "_Modificar" #: ../scope/data/scope.glade.h:41 -msgid "S_ynchronize" -msgstr "S_incronizar" +msgid "_Watch" +msgstr "_Vigilancia" #: ../scope/data/scope.glade.h:42 -msgid "Setup Program" -msgstr "Configurar programa" +msgid "_Inspect" +msgstr "_Inspeccionar" #: ../scope/data/scope.glade.h:43 -msgid "Show =li_brary messages" -msgstr "Mostrar mensajes de bib_lioteca" +msgid "_8-bit mode" +msgstr "modo _8-bits" #: ../scope/data/scope.glade.h:44 -msgid "Show _Address" -msgstr "Mostrar _dirección" +msgid "_Default" +msgstr "Por _defecto" #: ../scope/data/scope.glade.h:45 -msgid "Show _Core" -msgstr "Mostrar nú_cleo" +msgid "_7 bit" +msgstr "_7 bits" #: ../scope/data/scope.glade.h:46 -msgid "Show _Group" -msgstr "Mostrar _grupo" +msgid "_Locale" +msgstr "_Locale" #: ../scope/data/scope.glade.h:47 -msgid "Show _tooltips" -msgstr "Mostrar ayuda emergen_te" +msgid "_UTF-8" +msgstr "_UTF-8" #: ../scope/data/scope.glade.h:48 -msgid "Show on _Error" -msgstr "Mostrar en _error" +msgid "_Show .names" +msgstr "Mo_strar .nombres" #: ../scope/data/scope.glade.h:49 -msgid "Stack" -msgstr "Pila" +msgid "R_ead" +msgstr "L_eer" #: ../scope/data/scope.glade.h:50 -msgid "Start:" -msgstr "Inicio:" +msgid "_Group by" +msgstr "A_grupar por" #: ../scope/data/scope.glade.h:51 -msgid "Step O_ut" -msgstr "Sal_ir" +msgid "_1" +msgstr "_1" #: ../scope/data/scope.glade.h:52 -msgid "Step _Into" -msgstr "En_trar" +msgid "_2" +msgstr "_2" #: ../scope/data/scope.glade.h:53 -msgid "Step _Over" -msgstr "S_altar" +msgid "_4" +msgstr "_4" #: ../scope/data/scope.glade.h:54 -msgid "Threads" -msgstr "Hilos" +msgid "_8" +msgstr "_8" #: ../scope/data/scope.glade.h:55 -msgid "Toggle _Breakpoint" -msgstr "Intercam_biar punto de ruptura" +msgid "_Jump To" +msgstr "_Saltar a" #: ../scope/data/scope.glade.h:56 -msgid "Update all _views" -msgstr "Actualizar todas las _vistas" +msgid "_Apply" +msgstr "_Aplicar" #: ../scope/data/scope.glade.h:57 -msgid "Watches" -msgstr "Vigilancias" - -#: ../scope/data/scope.glade.h:58 -msgid "_1" -msgstr "_1" +msgid "_Expand" +msgstr "_Expandir" #: ../scope/data/scope.glade.h:59 -msgid "_2" -msgstr "_2" +msgid "_Natural" +msgstr "_Natural" #: ../scope/data/scope.glade.h:60 -msgid "_4" -msgstr "_4" +msgid "_Decimal" +msgstr "_Decimal" #: ../scope/data/scope.glade.h:61 -msgid "_7 bit" -msgstr "_7 bits" +msgid "_Hex" +msgstr "_Hex" #: ../scope/data/scope.glade.h:62 -msgid "_7-bit \\nnn" -msgstr "_7-bits \\nnn" +msgid "_Octal" +msgstr "_Octal" #: ../scope/data/scope.glade.h:63 -msgid "_8" -msgstr "_8" +msgid "_Binary" +msgstr "_Binario" #: ../scope/data/scope.glade.h:64 -msgid "_8-bit mode" -msgstr "modo _8-bits" +msgid "_Raw" +msgstr "C_rudo" #: ../scope/data/scope.glade.h:65 -msgid "_Apply" -msgstr "_Aplicar" +msgid "_Evaluate/Modify" +msgstr "_Evaluar/modificar" #: ../scope/data/scope.glade.h:66 -msgid "_Apply on run" -msgstr "_Aplicar al ejecutar" +msgid "_Watch Expression" +msgstr "Expresión de _vigilancia" #: ../scope/data/scope.glade.h:67 -msgid "_Arguments:" -msgstr "_Argumentos:" +msgid "_Inspect Variable" +msgstr "_Inspeccionar variable" #: ../scope/data/scope.glade.h:68 -msgid "_Auto Show" -msgstr "_Automostrar" +msgid "Threads" +msgstr "Hilos" #: ../scope/data/scope.glade.h:69 -msgid "_Binary" -msgstr "_Binario" +msgid "Stack" +msgstr "Pila" #: ../scope/data/scope.glade.h:70 -msgid "_Cleanup Files" -msgstr "Ar_chivos de limpieza" +msgid "Locals" +msgstr "Locales" #: ../scope/data/scope.glade.h:71 -msgid "_Columns" -msgstr "_Columnas" +msgid "Watches" +msgstr "Vigilancias" #: ../scope/data/scope.glade.h:72 -msgid "_Decimal" -msgstr "_Decimal" +msgid "Memory" +msgstr "Memoria" #: ../scope/data/scope.glade.h:73 -msgid "_Default" -msgstr "Por _defecto" +msgid "Enter gdb command:" +msgstr "Introduzca comando gdb:" #: ../scope/data/scope.glade.h:74 -msgid "_Delete all breakpoints, watches and inspects" -msgstr "Borrar to_dos los puntos de ruptura, vigilancias e inspecciones" +msgid "Convert _UTF-8 to locale" +msgstr "Convertir _UTF-8 a locale" #: ../scope/data/scope.glade.h:75 -msgid "_Evaluate/Modify" -msgstr "_Evaluar/modificar" +msgid "_Thread" +msgstr "_Hilo" #: ../scope/data/scope.glade.h:76 -msgid "_Executable:" -msgstr "_Ejecutable:" +msgid "_Group" +msgstr "A_grupar" #: ../scope/data/scope.glade.h:77 -msgid "_Exited" -msgstr "_Terminado" +msgid "_Frame" +msgstr "_Marco" #: ../scope/data/scope.glade.h:78 -msgid "_Expand" -msgstr "_Expandir" +msgid "Setup Program" +msgstr "Configurar programa" #: ../scope/data/scope.glade.h:79 -msgid "_Expand on apply" -msgstr "_Expandir al aplicar" +msgid "_Executable:" +msgstr "_Ejecutable:" #: ../scope/data/scope.glade.h:80 -msgid "_Feed" -msgstr "_Alimentar" +msgid "_Arguments:" +msgstr "_Argumentos:" #: ../scope/data/scope.glade.h:81 -msgid "_Follow" -msgstr "_Seguir" +msgid "En_vironment:" +msgstr "Ento_rno:" + +#: ../scope/data/scope.glade.h:82 +msgid "_Working dir:" +msgstr "Directorio de _trabajo:" #: ../scope/data/scope.glade.h:83 -msgid "_Frame" -msgstr "_Marco" +msgid "_Load script:" +msgstr "_Cargar script:" #: ../scope/data/scope.glade.h:84 -msgid "_GDB Command" -msgstr "Comando _GDB:" +msgid "Auto _run program/exit gdb" +msgstr "Ejecutar programa automáticamente/_salir de gdb" #: ../scope/data/scope.glade.h:85 -msgid "_Group" -msgstr "A_grupar" +msgid "_Non-stop mode" +msgstr "Modo _non-stop" #: ../scope/data/scope.glade.h:86 -msgid "_Group by" -msgstr "A_grupar por" +msgid "_Temporary breakpoint on load at:" +msgstr "Punto de ruptura _temporal al cargar en:" #: ../scope/data/scope.glade.h:87 -msgid "_Hex" -msgstr "_Hex" +msgid "_Delete all breakpoints, watches, inspects and registers" +msgstr "" +"Borrar to_dos los puntos de ruptura, vigilancias, inspecciones y registros" -#: ../scope/data/scope.glade.h:88 -msgid "_Import" -msgstr "_Importar" +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 +msgid "Program" +msgstr "Programa" #: ../scope/data/scope.glade.h:89 -msgid "_Inspect" -msgstr "_Inspeccionar" +msgid "Open on" +msgstr "Abrir al" #: ../scope/data/scope.glade.h:90 -msgid "_Inspect Variable" -msgstr "_Inspeccionar variable" +msgid "g_db load" +msgstr "carga g_db" #: ../scope/data/scope.glade.h:91 -msgid "_Interrupt" -msgstr "_Interrumpir" +msgid "p_rogram start" +msgstr "inicio de p_rograma" #: ../scope/data/scope.glade.h:92 -msgid "_Jump To" -msgstr "_Saltar a" +msgid "Update all _views" +msgstr "Actualizar todas las _vistas" #: ../scope/data/scope.glade.h:93 -msgid "_Load script:" -msgstr "_Cargar script:" +msgid "Panel" +msgstr "Panel" #: ../scope/data/scope.glade.h:94 -msgid "_Locale" -msgstr "_Locale" +msgid "Default 8-bit text mode:" +msgstr "Modo pred. texto 8-bits:" #: ../scope/data/scope.glade.h:95 -msgid "_Modify" -msgstr "_Modificar" +msgid "_7-bit \\nnn" +msgstr "_7-bits \\nnn" #: ../scope/data/scope.glade.h:96 -msgid "_More" -msgstr "_Más" +msgid "Display" +msgstr "Mostrar" #: ../scope/data/scope.glade.h:97 -msgid "_Natural" -msgstr "_Natural" +msgid "_member" +msgstr "_miembro" #: ../scope/data/scope.glade.h:98 -msgid "_Non-stop mode" -msgstr "Modo _non-stop" +msgid "and" +msgstr "y" #: ../scope/data/scope.glade.h:99 -msgid "_Octal" -msgstr "_Octal" +msgid "_argument" +msgstr "_argumento" #: ../scope/data/scope.glade.h:100 -msgid "_Reset Markers" -msgstr "_Reiniciar marcadores" +msgid "names" +msgstr "nombres" #: ../scope/data/scope.glade.h:101 -msgid "_Run/Continue" -msgstr "Ejecuta_r/continuar" +msgid "Values" +msgstr "Valores" #: ../scope/data/scope.glade.h:102 -msgid "_Running" -msgstr "_Ejecutando" +msgid "E_xpand on apply" +msgstr "E_xpandir al aplicar" #: ../scope/data/scope.glade.h:103 -msgid "_Send Signal" -msgstr "Enviar _señal" +msgid "S_how" +msgstr "Mo_strar" #: ../scope/data/scope.glade.h:104 -msgid "_Setup Program" -msgstr "_Configurar programa" +msgid "children" +msgstr "hijos" #: ../scope/data/scope.glade.h:105 -msgid "_Show .names" -msgstr "Mo_strar .nombres" +msgid "Inspect" +msgstr "Inspeccionar" #: ../scope/data/scope.glade.h:106 -msgid "_Show @entry" -msgstr "_Mostrar @entrada" +msgid "Show =li_brary messages" +msgstr "Mostrar mensajes de bib_lioteca" #: ../scope/data/scope.glade.h:107 -msgid "_Show Terminal" -msgstr "_Mostrar terminal" +msgid "Show _tooltips" +msgstr "Mostrar ayuda emergen_te" #: ../scope/data/scope.glade.h:108 -msgid "_Stopped" -msgstr "_Detenido" +msgid "Others" +msgstr "Otros" #: ../scope/data/scope.glade.h:109 -msgid "_Temporary breakpoint at:" -msgstr "Punto de ruptura _temporal en:" +msgid "Options" +msgstr "Opciones" #: ../scope/data/scope.glade.h:110 -msgid "_Terminate" -msgstr "_Terminar" +msgid "_Import" +msgstr "_Importar" #: ../scope/data/scope.glade.h:111 -msgid "_Thread" -msgstr "_Hilo" +msgid "Enter assignment expression:" +msgstr "Introduzca expresión de asignación:" #: ../scope/data/scope.glade.h:112 -msgid "_UTF-8" -msgstr "_UTF-8" +msgid "Inspect" +msgstr "Inspeccionar" #: ../scope/data/scope.glade.h:113 -msgid "_Unsorted" -msgstr "_Desordenado" - -#: ../scope/data/scope.glade.h:114 -msgid "_View Source" -msgstr "_Ver fuente" +msgid "Object:" +msgstr "Objeto:" #: ../scope/data/scope.glade.h:115 -msgid "_Watch" -msgstr "_Vigilancia" +msgid "-" +msgstr "-" #: ../scope/data/scope.glade.h:116 -msgid "_Watch Expression" -msgstr "Expresión de _vigilancia" +msgid "Frame:" +msgstr "Marco:" #: ../scope/data/scope.glade.h:117 -msgid "_Window" -msgstr "_Ventana" +msgid "@" +msgstr "@" #: ../scope/data/scope.glade.h:118 -msgid "_Working dir:" -msgstr "Directorio de _trabajo:" +msgid "_Apply on run" +msgstr "_Aplicar al ejecutar" #: ../scope/data/scope.glade.h:119 -msgid "_argument" -msgstr "_argumento" +msgid "Expand" +msgstr "Expandir" #: ../scope/data/scope.glade.h:120 -msgid "_member" -msgstr "_miembro" +msgid "Start:" +msgstr "Inicio:" #: ../scope/data/scope.glade.h:121 -msgid "and" -msgstr "y" +msgid "Count:" +msgstr "Suma:" #: ../scope/data/scope.glade.h:122 -msgid "children" -msgstr "hijos" - -#: ../scope/data/scope.glade.h:123 -msgid "g_db load" -msgstr "carga g_db" +msgid "_Expand on apply" +msgstr "_Expandir al aplicar" -#: ../scope/data/scope.glade.h:124 -msgid "names" -msgstr "nombres" +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "Terminal de programa" #: ../scope/data/scope.glade.h:125 -msgid "p_rogram start" -msgstr "inicio de p_rograma" +msgid "Registers" +msgstr "Registros" -#: ../scope/src/break.c:947 +#: ../scope/src/break.c:97 +msgid "breakpoint" +msgstr "punto de ruptura" + +#: ../scope/src/break.c:98 +msgid "hardware breakpoint" +msgstr "punto de ruptura hardware" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "punto de observación" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "punto de observación rápido" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "escribir punto de observación" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "acceder punto de observación" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "leer punto de observación" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "punto de captura" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "CLI" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "MI no soportado" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "al cargar" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "Ejecutar hasta cursor" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" "Hay dos o más puntos de ruptura en %s:%d.\n" +"\n" "Use la lista de puntos de ruptura para eliminar el adecuado." -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr ", %s" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "func %s" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "Añadir punto de ruptura" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "Añadir punto de observación" @@ -5431,7 +5803,8 @@ msgid "Enter char # (0..255):" msgstr "Introducir char # (0..255):" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "Ámbito: %s." @@ -5450,60 +5823,61 @@ msgid "Program terminated." msgstr "Programa terminado." -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "No hay puntos de ruptura. Colgando." -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "%s." -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "datos no válidos" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "no hay hijo en el rango" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "fuera de ámbito" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "Nombre de variable de inspección duplicado." -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "Leer memoria" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." -msgstr "Ámbito: tamaño de puntero > 8, Datos desactivados." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." +msgstr "Ámbito: tamaño de puntero > %d, Datos desactivados." -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "Modificar" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "Evaluar/modificar" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "Expresión de observación" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 msgid "Inspect variable" msgstr "Inspeccionar variable" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "Error de GDB indefinido." @@ -5515,35 +5889,27 @@ msgid "Select File" msgstr "Seleccionar archivo" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "Puntos de ruptura" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "Consola" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "Ámbito: %s: %s." -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "Ámbito: creado archivo de configuración." -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "Cargados ajustes de depuración para %s." -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" "No se ha podido cargar el archivo de configuración de depuración %s: %s." -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5554,16 +5920,15 @@ "\n" "¿Continuar?" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" -msgstr "" -"¿Desea eliminar todos los puntos de ruptura, vigilancias e inspecciones?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" +msgstr "¿Desea eliminar todos los puntos de ruptura, vigilancias, etc.?" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "como _Nombre=valor" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "como _Nombre = valor" @@ -5572,157 +5937,169 @@ msgstr "Depurador de ámbito" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." -msgstr "Interfaz sencilla para GDB." +msgid "Relatively simple GDB front-end." +msgstr "Interfaz relativamente sencilla para GDB." -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "Configurar programa" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "Ejecutar/continuar" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 msgid "Run to source" msgstr "Ejecutar hasta origen" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "Terminar" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" msgstr "Intercambiar punto de ruptura" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "Comando GDB" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "Mostrar terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "Ocupado" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "Listo" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "Colgar" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "Ensam" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "Cargar" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "Activada la acción de compilación. ¿Terminar depuración?" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "Puntos de ruptura" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Consola" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "Consola de depuración:" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "Iniciado grupo de hilos %s." -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "Grupo de hilos" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "terminado" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "con código de salida %s" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "Enviar señal" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "Introducir nº de señal:" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "Terminar proceso" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "Introducir código de salida:" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "Ejecutando" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "Detenido" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, c-format -msgid "%s: error %lu." -msgstr "%s: error %lu." +msgid "%s: %s" +msgstr "%s: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "Ámbito: error al leer [%s]." -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "…" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "_Enviar" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "_Ocupado" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 msgid "GDB Command" msgstr "Comando GDB" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Intentar: " -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Comprobando" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Comprobando el archivo «%s» (líneas %d a %d usando %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "Comprobando el archivo «%s» (usando %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "El texto comprobado es correcto." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "No se ha podido inicializar la biblioteca Enchant (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "error desconocido (quizás el idioma elegido no está disponible)" @@ -5818,17 +6195,17 @@ msgid "Ignore All" msgstr "Ignorar todo" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Predeterminado (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "Conmutar comprobación ortográfica al escribir (idioma actual: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Sugerencias" @@ -5859,28 +6236,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "Algo fue mal al parsear la selección. Deteniendo" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Convertir selección en tabla" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "_Convertir en tabla" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "Convierte la lista marcada en una tabla" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "Visor de árbol" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5888,30 +6265,30 @@ "Este complemento añade un navegador de archivos a Geany, permitiendo al " "usuario navegar por sus archivos mediante un árbol de directorios." -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: no existe el directorio." -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Vacío)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "No se ha podido ejecutar el comando externo configurado «%s» (%s)." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NewDirectory" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NewFile" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" @@ -5920,97 +6297,101 @@ "El archivo de destino «%s» existe.\n" "¿Está seguro de que desea reemplazarlo con un archivo vacío?" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "¿Está seguro de que desea eliminar «%s»?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Subir" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Fijar ruta del documento" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" -msgstr "Abrir externamente" +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" +msgstr "_Abrir externamente" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Abrir terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Fijar como raíz" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Refrescar" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +msgid "_Find in Files" +msgstr "_Buscar en archivos" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Crear directorio nuevo" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Crear archivo nuevo" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Renombrar" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Eliminar" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Cerrar: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "Cerrar documentos hijo" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" -msgstr "Copiar ruta completa al portapapeles" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" +msgstr "_Copiar ruta completa al portapapeles" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Mostrar marcadores" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Mostrar archivos ocultos" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "Mostrar barras" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" "El archivo de destino «%s» existe. ¿Está seguro de que desea reemplazarlo?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Inicio" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "Rastrear ruta" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Ocultar barras" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -6018,19 +6399,19 @@ "Filtro (*.c;*.h;*.cpp), y si quiere un filtro temporal utilice «!», por " "ejemplo: '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Barra de direcciones, por ejemplo «/proyectos/mi-proyecto»" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "Visor de árbol" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Comando de apertura externa" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6044,53 +6425,53 @@ "%f se reemplazará con el nombre de archivo con la ruta completa\n" "%d se reemplazará con la ruta del directorio sin el nombre de archivo" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "Barra de herramientas" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "Oculta" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "Arriba" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "Abajo" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "Si se cambia la posición será necesario reiniciar el complemento." -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "Mostrar iconos" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "Ninguno" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "Base" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "Tipo de contenido" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "En Windows esto solamente oculta archivos cuyo nombre empieza con un " "«.» (punto)." -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Ocultar archivos objeto" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6098,47 +6479,55 @@ "No mostrar los archivos objeto generados en el visor de archivos, esto " "incluye *.o, *.obj. *.so, *.dll, *.a, *.lib" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Invertir filtro" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Seguir documento actual" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Una sola pulsación abre el documento y lo enfoca" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Doble pulsación para abrir un directorio" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Al borrar un archivo, cerrarlo si está abierto" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "Enfocar el editor al abrir un archivo" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Mostrar líneas de árbol" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +msgid "Open new files" +msgstr "Abrir archivos nuevos" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "Enfocar lista de archivos" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "Enfocar entrada de ruta" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "Renombrar objeto" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "Crear archivo nuevo" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "Crear directorio nuevo" @@ -6207,44 +6596,44 @@ msgid "utility" msgstr "utilidad" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Zoom" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "Zoom a todo el _contenido" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "Voltear orientación de los paneles" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Atrás" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "Adelante" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Cancelar carga" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Recargar página actual" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Inspector web" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Des/activar inspector web" @@ -6385,6 +6774,9 @@ msgid "Autocompletes XML/HTML tags using snippets." msgstr "Autocompleta etiquetas XML/HTML mediante recortes" +#~ msgid "%s: error %lu." +#~ msgstr "%s: error %lu." + #~ msgid "Plugins" #~ msgstr "Plugins" @@ -6468,9 +6860,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "No se ha indicado el directorio temporal para tty.\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "No se ha encontrado el directorio temporal para tty.\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "No se ha especificado el programa de apoyo para tty.\n" @@ -6537,21 +6926,12 @@ #~ msgid "No %s selected" #~ msgstr "No se ha seleccionado %s" -#~ msgid "watchpoint" -#~ msgstr "punto de observación" - #~ msgid "Delete selected watchpoint?" #~ msgstr "¿Desea eliminar el punto de observación seleccionado?" #~ msgid "Delete selected breakpoint?" #~ msgstr "¿Desea eliminar el punto de ruptura seleccionado?" -#~ msgid "Edit watchpoint" -#~ msgstr "Editar punto de observación" - -#~ msgid "Edit breakpoint" -#~ msgstr "Editar punto de ruptura" - #~ msgid "Enabled" #~ msgstr "Activado" @@ -6902,10 +7282,6 @@ #~ "Quiere usar una cifra simétrica?" #~ msgstr "No " -#, fuzzy -#~ msgid "GeanyPG" -#~ msgstr "GeanyGDB" - #~ msgid "Lionel Fuentes" #~ msgstr "Lionel Fuentes" diff -Nru geany-plugins-1.24.0+20140222+git/po/fr.po geany-plugins-1.24.1+dfsg/po/fr.po --- geany-plugins-1.24.0+20140222+git/po/fr.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/fr.po 2014-04-12 14:28:39.000000000 +0000 @@ -7,10 +7,10 @@ # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-10 04:33+0100\n" -"PO-Revision-Date: 2013-03-10 05:19+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" +"PO-Revision-Date: 2014-04-10 17:19+0200\n" "Last-Translator: Colomban Wendling \n" "Language-Team: French \n" "Language: fr\n" @@ -36,12 +36,12 @@ msgid "Contents" msgstr "Contenu" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:624 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Marque-pages" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "Mettre à jo_ur" @@ -78,15 +78,15 @@ msgid "Context:" msgstr "Contexte :" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nom du tag à insérer :" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, fuzzy, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -156,11 +156,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1883 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "Le répertoire de configuration du plugin n'a pas pu être créé." @@ -251,6 +252,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navigateur de code" @@ -274,9 +283,9 @@ msgstr "Aller au fichier" #: ../codenav/src/goto_file.c:109 -#, c-format +#, c-format, fuzzy msgid "(From the %s plugin)" -msgstr "" +msgstr "(Du plugin %s)" #. Add the menu item and make it sensitive only when a document is opened #. Frame, which is the returned widget @@ -320,8 +329,8 @@ msgid "Various debuggers integration." msgstr "Intégration de divers débogueurs." -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Déboguage" @@ -398,9 +407,8 @@ msgstr "Impossible d'exécuter le processus gdb" #: ../debugger/src/dbm_gdb.c:782 -#, fuzzy msgid "~\"Loading target file.\\n\"" -msgstr "Choisir une cible" +msgstr "~\"Chargement du fichier cible.\\n\"" #: ../debugger/src/dbm_gdb.c:782 msgid "Error loading file" @@ -429,12 +437,14 @@ msgstr "Impossible de trouver un fichier source « %s »" #: ../debugger/src/stree.c:140 +#, fuzzy msgid "Active frame" -msgstr "" +msgstr "Page active" #: ../debugger/src/stree.c:140 +#, fuzzy msgid "Click an arrow to switch to a frame" -msgstr "" +msgstr "Cliquez les flèches pour changer de page" #: ../debugger/src/stree.c:363 ../geanylatex/src/bibtexlabels.c:46 msgid "Address" @@ -456,7 +466,7 @@ msgid "Target" msgstr "Cible" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Points d'arrêt" @@ -493,22 +503,22 @@ msgstr "Redémarrer" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "Exécuter jusqu'au curseur" @@ -550,6 +560,16 @@ msgid "Save debug session data to a project" msgstr "Enregistrer la session de déboguage dans un projet" +#: ../defineformat/src/defineformat.c:56 +#, fuzzy +msgid "Define formatter" +msgstr "Formateur de defines" + +#: ../defineformat/src/defineformat.c:57 +#, fuzzy +msgid "Automatically align backslash in multi-line defines" +msgstr "Aligne automatiquement les backslashes dans des defines multi-lignes" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -661,7 +681,7 @@ msgstr "Livre :" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Livre" @@ -750,7 +770,7 @@ #: ../devhelp/devhelp/dh-search.c:620 #, fuzzy msgid "Search in:" -msgstr "Mots à rechercher :" +msgstr "Rechercher dans :" #: ../devhelp/devhelp/dh-window.c:98 msgid "50%" @@ -796,7 +816,7 @@ msgid "A developers' help browser for GNOME" msgstr "Un navigateur d'aide pour développeur pour GNOME" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Fichier" @@ -984,55 +1004,64 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Convertir la sélection" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1448,76 +1477,76 @@ "Type de documentation par défaut pour tous les langages pour lesquels aucun " "n'est défini" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Insérer des nombres" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Insert ou remplit des colonnes avec des nombres." -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Décompte…" -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Préparation…" -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Insertion…" -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Pour base 11 et supérieure" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Début :" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Pas :" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base :" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Lettres :" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "_Majuscules" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "M_inuscules" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "_Préfixe de base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "0 pour octal, 0x pour hexadécimal et + pour les entiers positifs" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Alignement :" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Esp_aces" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Zéros" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Insérer des _nombres" @@ -1550,7 +1579,7 @@ msgstr "Environnement :" #: ../geanylatex/src/latexutils.c:87 -#, fuzzy, c-format +#, c-format msgid "" "Could not determine where to insert package: %s\n" "Please try insert package manually" @@ -1559,7 +1588,7 @@ "Essayez d'insérer le package manuellement" #: ../geanylatex/src/latexutils.c:89 -#, fuzzy, c-format +#, c-format msgid "Could not determine where to insert package: %s" msgstr "Impossible de déterminer où insérer le package : %s" @@ -1799,7 +1828,7 @@ #: ../geanylatex/src/bibtexlabels.c:123 msgid "Series of books in which the book was published" -msgstr "" +msgstr "Série de livre dans laquelle le livre a été publié" #: ../geanylatex/src/bibtexlabels.c:124 msgid "Title of the work" @@ -1938,12 +1967,10 @@ msgstr "Ajouter des packages additionnels" #: ../geanylatex/src/geanylatex.c:1192 -#, fuzzy msgid "Package name:" msgstr "Nom du package :" #: ../geanylatex/src/geanylatex.c:1195 -#, fuzzy msgid "Package options:" msgstr "Options du package :" @@ -1955,20 +1982,20 @@ msgid "BibTeX reference name:" msgstr "Nom de la référence BibTeX" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "Aucun modèle associé. Abandon" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "Assistant LaTeX" @@ -1976,67 +2003,67 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:668 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Modèle :" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "Définit le modèle qui doit être utilisé pour créer le document" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "Par défaut" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "Classe du document :" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "Choisissez le genre de document que vous voulez écrire" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Article" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Raport" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Lettre" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Présentation" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "Encodage :" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "Définit l'encodage pour votre nouveau document" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "Taille de la police" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "Définit la taille par défaut de la police pour votre nouveau document" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Auteur :" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" @@ -2045,11 +2072,11 @@ "devrait être votre nom" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "Date :" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2060,37 +2087,37 @@ "besoin d'un date précise." #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "Titre :" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "Définit le titre de votre nouveau document." #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "Taille du papier :" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "Définit le format du papier pour votre nouveau document" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "Orientation du papier :" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "Définit l'orientation du papier pour votre nouveau document" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "Utiliser les classes de script KOMA si possible" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " @@ -2100,105 +2127,106 @@ "Souvenez vous : pour compiler votre document ces classes doivent être " "installées." -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "Utiliser le mode ébauche" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "Lancer l'assistant LaTeX" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "Insérer \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "Insérer \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "Insérer une coupure de ligne \\\\ " -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "Insérer une commande" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 +#, fuzzy msgid "Turn input replacement on/off" -msgstr "" +msgstr "Activer/désactiver les remplacements lors de la frappe" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "Remplacer les caractères spéciaux" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "Afficher le dialogue d'insertion d'environnement" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "Insérer \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "Formatter la sélection avec une police grasse" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "Formatter la sélection avec une police italique" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "Formatter la sélection avec une police à chasse fixe" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "Centrer la sélection" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "Aligner la sélection à gauche" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "Aligner la sélection à droite" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "Insérer une liste de description" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "Insérer une liste d'éléments" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "Insérer \\usepackage{}" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2208,7 +2236,7 @@ "\n" "Merci de rapporter tous les bogues ou demandes d'améliorations aux auteurs." -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" @@ -2217,118 +2245,118 @@ "invalide ; la valeur par défaut a été utilisée à la place. Veuillez vérifier " "votre fichier de configuration." -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "_Assistant LaTeX" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "Lance un assistant pour créer aisément des documents LaTeX" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "I_nsérer un caractère spécial" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "Facilite l'utilisation de lettres et de signes peu communs" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "Insérer une _référence" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "Insérer un _label" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "Aide à insérer des labels dans un document" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "Insérer un _environnement" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "Facilite l'insertion d'un environnement au document" -#: ../geanylatex/src/geanylatex.c:2159 -#, fuzzy +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "Insérer un p_ackage" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" "Un dialogue pour insérer \\usepackage{} dans l'en-tête du document courant" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Format" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "Taille de la p_olice" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "Remplacement de caractères _spéciaux" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 +#, fuzzy msgid "Bulk _Replace Special Characters" -msgstr "" +msgstr "_Remplacement en masse de caractères spéciaux" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" "_Remplace les caractères spéciaux sélectionnés par des substitutions TeX" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "Basculer le remplacement des caractères _spéciaux" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "Insérer une _commande" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "Insérer une référence B_ibTeX" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "Entrées _BibTeX" @@ -2485,16 +2513,16 @@ msgid "Creating dummy text with Geany" msgstr "Créer de faux-textes avec Geany" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Générateur de faux-texte" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Entrez la longueur du faux-texte ici" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2513,8 +2541,8 @@ "Error in module \"%s\" at function %s():\n" " expected type \"%s\" for argument #%d\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -"attendait le type \"%s\" pour l'argument #%d\n" +"Erreur dans le module \"%s\" à la fonction %s() :\n" +"le type \"%s\" &tait attendu pour l'argument n° %d\n" #: ../geanylua/glspi.h:114 #, c-format @@ -2522,20 +2550,19 @@ "Error in module \"%s\" at function %s():\n" " expected type \"%s\" or \"%s\" for argument #%d\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -"attendait les types \"%s\" ou \"%s\" pour l'argument #%d\n" +"Erreur dans le module \"%s\" à la fonction %s() :\n" +"les types \"%s\" ou \"%s\" étaient attendus pour l'argument n° %d\n" #: ../geanylua/glspi.h:128 ../geanylua/gsdlg_lua.c:108 -#, fuzzy, c-format +#, c-format msgid "" "Error in module \"%s\" at function %s():\n" " invalid table in argument #%d:\n" " expected type \"%s\" for element #%d\n" msgstr "" "Erreur dans le module \"%s\" à la fonction %s() :\n" -"table invalide pour l'argument #%d:\n" -"attendait le type \"%s\" pour l'élément #%d\n" -" " +"tableau invalide pour l'argument n° %d :\n" +"le type \"%s\" était attendu pour l'élément n° %d\n" #. #. * glspi_ver.c - This file is part of the Lua scripting plugin for the Geany IDE @@ -2633,19 +2660,19 @@ msgid "Browse..." msgstr "Parcourir…" -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Sélectionner une couleur" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Choisir…" -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Sélectionner une police" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Sélectionner…" @@ -2655,8 +2682,8 @@ "Error in module \"%s\" at function navigate():\n" "unknown navigation mode \"%s\" for argument #1.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction navigate():\n" -"mode de navigation \"%s\" inconnu pour l'argument #1.\n" +"Erreur dans le module \"%s\" à la fonction navigate() :\n" +"mode de navigation \"%s\" inconnu pour l'argument n° 1.\n" #: ../geanylua/glspi_sci.c:603 #, c-format @@ -2664,7 +2691,7 @@ "Error in module \"%s\" at function %s():\n" "API command \"%s\" not implemented.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" +"Erreur dans le module \"%s\" à la fonction %s() :\n" "la commande \"%s\" de l'API n'est pas implémentée.\n" #: ../geanylua/glspi_sci.c:614 @@ -2673,29 +2700,28 @@ "Error in module \"%s\" at function %s():\n" "not enough arguments for command \"%s\".\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" +"Erreur dans le module \"%s\" à la fonction %s() :\n" "pas assez d'arguments pour la commande \"%s\".\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "unknown command \"%s\" given for argument #1.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -"commande \"%s\" donnée pour l'argument #1 inconnue.\n" +"Erreur dans le module \"%s\" à la fonction %s() :\n" +"commande \"%s\" donnée pour l'argument n° 1 inconnue.\n" #: ../geanylua/glspi_sci.c:794 -#, fuzzy, c-format +#, c-format msgid "" "Error in module \"%s\" at function %s():\n" " invalid table in argument #%d:\n" " unknown flag \"%s\" for element #%d\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -" table invalide dans l'argument #%d:\n" -" flag \"%s\" inconnu pour l'élément #%d\n" -" " +"Erreur dans le module \"%s\" à la fonction %s() :\n" +" tableau invalide pour l'argument n° %d :\n" +" drapeau \"%s\" inconnu pour l'élément n° %d\n" #: ../geanylua/glspi_sci.c:798 msgid "" @@ -2717,24 +2743,23 @@ msgid "Save file" msgstr "Enregistrer" -#: ../geanylua/glspi_dlg.c:436 -#, fuzzy, c-format +#: ../geanylua/glspi_dlg.c:438 +#, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction pickfile():\n" -"impossible d'analyser la chaîne filtre en argument #2.\n" +"Erreur dans le module \"%s\" à la fonction pickfile() :\n" +"impossible d'analyser la chaîne filtre en argument n° 3.\n" -#: ../geanylua/glspi_dlg.c:486 -#, fuzzy, c-format +#: ../geanylua/glspi_dlg.c:489 +#, c-format msgid "" "Error in module \"%s\" at function %s():\n" "expected string \"open\" or \"save\" for argument #1.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -"attendait la chaîne \"open\" ou \"save\" pour l'argument #1.\n" -" " +"Erreur dans le module \"%s\" à la fonction %s() :\n" +"la chaîne \"open\" ou \"save\" était attendue pour l'argument n° 1.\n" #: ../geanylua/geanylua.c:163 #, fuzzy, c-format @@ -2770,34 +2795,30 @@ "Impossible de charger le plugin %s.\n" "Veuillez vérifier votre installation." -#: ../geanylua/glspi_app.c:19 -#, fuzzy, c-format +#: ../geanylua/glspi_app.c:21 +#, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" -"%s %s: %s\n" -"Copyright (c) 2007-2008 " -#: ../geanylua/glspi_app.c:149 -#, fuzzy, c-format +#: ../geanylua/glspi_app.c:151 +#, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s():\n" -"le widget \"%s\" est introuvable pour l'argument #1.\n" -" " +"Erreur dans le module \"%s\" à la fonction %s() :\n" +"le widget \"%s\" est introuvable pour l'argument n° 1.\n" -#: ../geanylua/glspi_app.c:158 -#, fuzzy, c-format +#: ../geanylua/glspi_app.c:160 +#, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" "widget \"%s\" has no signal named \"%s\".\n" msgstr "" -"Erreur dans le module \"%s\" à la fonction %s() argument #2:\n" +"Erreur dans le module \"%s\" à l'argument n° 2 de la fonction %s() :\n" "le widget \"%s\" n'a pas de signal nommé \"%s\".\n" -" " #: ../geanymacro/src/geanymacro.c:55 msgid "Cut to Clipboard" @@ -3423,7 +3444,7 @@ msgid "Search for contents of clipboard" msgstr "Rechercher le contenu du presse-papier" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Rechercher :" @@ -3529,19 +3550,19 @@ msgstr "Modifi_er les macros" #. *< \brief It's the information message about geany mini script -#: ../geanyminiscript/src/gms_gui.c:130 +#: ../geanyminiscript/src/gms_gui.c:129 #, fuzzy msgid "" "GMS : Geany Mini-Script filter Plugin\n" -"This plugin is a tool to apply a script filter on :\n" +"This plugin is a tool to apply a script filter on:\n" " o the text selection,\n" " o the current document,\n" " o all documents of the current session.\n" "\n" -"The filter type can be : \n" -" o Unix shell script, \n" -" o perl script, \n" -" o python script, \n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" " o sed commands,\n" " o awk script.\n" "\n" @@ -3556,7 +3577,7 @@ "or (at your option) any later version." msgstr "" "GMS : Geany Mini-Script filter Plugin\n" -"Ce plugin est un outils pour appliquer un script sur:\n" +"Ce plugin est un outil pour appliquer un script sur :\n" " o la sélection de texte,\n" " o le document courant,\n" " o tous les documents de la session courante.\n" @@ -3578,81 +3599,80 @@ "Software Foundation; either version 2 of the License,\n" "or (at your option) any later version." -#: ../geanyminiscript/src/gms_gui.c:254 +#: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "Chargement du mini-script" -#: ../geanyminiscript/src/gms_gui.c:311 +#: ../geanyminiscript/src/gms_gui.c:310 msgid "Save Mini-Script File" msgstr "Sauvegarde du Mini-script" -#: ../geanyminiscript/src/gms_gui.c:420 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "Filtre Mini-Script" -#: ../geanyminiscript/src/gms_gui.c:448 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "Efface la fenêtre du mini-script" -#: ../geanyminiscript/src/gms_gui.c:453 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "Charge un fichier mini-script dans la fenêtre" -#: ../geanyminiscript/src/gms_gui.c:458 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "Sauve le mini-script courant dans un fichier" -#: ../geanyminiscript/src/gms_gui.c:463 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" -msgstr "Affiche des informations supplémentaires sur l'élément sélectionné" +msgstr "Affiche des informations sur le plugin mini-script" -#: ../geanyminiscript/src/gms_gui.c:471 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "Sélectionne le type du mini-script" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "Entrée du filtre" -#: ../geanyminiscript/src/gms_gui.c:504 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "Sélectionne l'entrée du mini-script" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "sélection" -#: ../geanyminiscript/src/gms_gui.c:511 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "document" -#: ../geanyminiscript/src/gms_gui.c:512 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "session" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "sortie du filtre" -#: ../geanyminiscript/src/gms_gui.c:523 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "Sélectionne la sortie du mini-script" -#: ../geanyminiscript/src/gms_gui.c:529 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "Doc. courant" -#: ../geanyminiscript/src/gms_gui.c:530 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "Nouveau Document" -#: ../geanyminiscript/src/gms_gui.c:751 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" @@ -3716,20 +3736,23 @@ msgstr "" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 +#, fuzzy msgid "Move to start of line" -msgstr "" +msgstr "Se déplacer au début de la ligne" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "Aller à la position enregistrée sur la ligne" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 +#, fuzzy msgid "Move to position in current line" -msgstr "" +msgstr "Se déplacer à la position dans la ligne courante" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 +#, fuzzy msgid "Move to End of line" -msgstr "" +msgstr "Se déplace à la fin de la ligne" #: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" @@ -3864,36 +3887,36 @@ msgstr "Sélectionner le signataire" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "Impossible d'utiliser Pinentry." -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "Sortie imprévue de pinentry." #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Mot de passe" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "Entrez la phrase de passe pour" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "pinentry a retourné l'erreur" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "Erreur de pinentry imprévue." -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3905,8 +3928,8 @@ msgid "a key with fingerprint" msgstr "une clé avec emprunte" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "inconnue" @@ -4021,8 +4044,9 @@ msgstr "Inconnu" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 +#, fuzzy msgid "n/a" -msgstr "" +msgstr "n/d" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "bad" @@ -4074,7 +4098,7 @@ msgstr "Ouvrir un fichier de signature" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Projet" @@ -4103,7 +4127,7 @@ msgid "C_reate" msgstr "C_réer" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nom :" @@ -4181,7 +4205,7 @@ msgid "Remove File" msgstr "Supprimer le fichier" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Cac_her la barre latérale" @@ -4190,6 +4214,55 @@ msgid "Project \"%s\" opened." msgstr "Projet « %s » ouvert." +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyVC" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Impossible de pré-charger la bibliothèque Python : %s" + +#: ../geanypy/src/geanypy-plugin.c:157 +#, fuzzy +msgid "Failed to import manager module" +msgstr "Impossible d'importer le module \"manager\"" + +#: ../geanypy/src/geanypy-plugin.c:166 +#, fuzzy +msgid "Failed to retrieve PluginManager from manager module" +msgstr "Impossible d'obtenir le PluginManager du module \"manager\"" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "Dossier de plugins système introuvable." + +#: ../geanypy/src/geanypy-plugin.c:211 +#, fuzzy +msgid "Unable to instantiate new PluginManager" +msgstr "Impossible d'instancier un nouveau PluginManager" + +#: ../geanypy/src/geanypy-plugin.c:227 +#, fuzzy +msgid "Unable to get show_all() method on plugin manager" +msgstr "" +"Impossible d'obtenir la méthode show_all() sur le gestionnaire de " +"plugins" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Impossible de créer le dossier des plugins Python : %s : %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "Gestionnaire de plugins Python" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4210,13 +4283,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "Entrez l'adresse email du destinataire :" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "Le remplacement du nom de fichier n'a pas été trouvé. La commande exécutée a " "peut-être échouée." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4224,33 +4297,33 @@ "Le remplacement de l'adresse du destinataire n'a pas été trouvé. La commande " "exécutée a peut-être échouée." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Impossible d'exécuter le client mail, veuillez vérifier votre configuration." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Veuillez d'abord définir un client e-mail." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Le fichier doit d'abord être enregistré avant de l'envoyer." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "E-Mail" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Envoyer par email" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Chemin et options du client mail :" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4268,28 +4341,28 @@ "\tsylpheed --attach \"%f\" --compose \"%r\"\n" "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Afficher l'icône dans la barre d'outils" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "Affiche une icône dans la barre d'outils pour faciliter du fichier." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "Utilisez le dialogue pour entrer les adresses e-mail des destinataires" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Envoyer le fichier par e-mail" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Envoyer par _mail" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4309,77 +4382,103 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc : erreur de s_spawn_sync : %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" "geanyvc : vcdiff_file_activated : Impossible de renommer « %s » en « %s »" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Aucune modification n'a été effectuée." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "Pas d'historique disponible" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Voulez-vous vraiment rétablir : %s ?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Voulez-vous vraiment ajouter : %s ?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Voulez-vous vraiment supprimer : %s ?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Voulez-vous vraiment mettre à jour ?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" +"Les différences résultantes ne peuvent être affichées car les " +"changements sont trop importants et ralentiraient significativement " +"l'interface.\n" +"\n" +"Pour afficher les différences, fermez ce dialogue et ouvrez le diff " +"directement dans Geany en utilisant le menu GeanyVC (Dossier racine " +"-> Diff)." + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Commiter (O/N)" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Statut" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Chemin" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "Ligne : %d Colonne : %d" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Commit" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "Sélectionner/_désélectionner tous les fichiers" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Message de commit :" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "C_ommit" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Rien à commiter." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Erreur lors de l'initialisation de la vérification orthographique : %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4389,11 +4488,11 @@ "orthographique. Veuillez vérifier la configuration. Le message d'erreur " "était : %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "Marquer les documents créés par le plugin comme modifiés" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4404,47 +4503,47 @@ "cas, elle peut résulter en de nombreux et ennuyeux dialogues demandant si le " "document doit être enregistré." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Confirmer l'ajout de nouveaux fichier au VCS" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Affiche un dialogue de confirmation lors de l'ajout d'un nouveau fichier au " "VCS" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Maximiser le dialogue de commit" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Afficher le dialogue de commit maximisé." -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Utiliser une visionneuse de diff externe" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Utiliser une visionneuse externe pour afficher les diff de fichiers." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Montrer les commandes dans le menu de l'éditeur" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" "Afficher les entrées pour les fonctionnalités du VCS dans le menu de " "l'éditeur" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "Attacher le menu à la barre de menu" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " @@ -4454,68 +4553,68 @@ "directement dans la barre de menus de Geany. Un redémarrage du plugin est " "nécessaire pour appliquer cette option." -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Activer CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Activer Git" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Activer SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Activer SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Activer Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Activer Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Langue de la vérification orthographique" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "Actions du _VCS sur le fichier" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diff" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Faire un diff depuis le fichier courant" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Rétablir" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "Restaurer la copie locale originale (annule les changements locaux)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Blame" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "" "Affiche les changements effectués dans un fichier par révision et auteur." @@ -4523,143 +4622,143 @@ #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Historique (log)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Afficher l'historique du fichier courant" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Original" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "Affiche l'original du fichier courant" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "_Ajouter au gestionnaire de versions" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Ajouter le fichier au dépôt" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "_Supprimer du gestionnaire de versions" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Supprimer le fichier du dépôt" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Dossier" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Faire un diff depuis le dossier contenant le fichier courant" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" "Restaurer la copie originale des fichiers dans le dossier courant (annule " "les changements locaux)." -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Afficher l'historique du dossier courant" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Dossier _racine" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "Faire un diff depuis le dossier racine du VCS" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Annuler les changement locaux." -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Afficher l'historique du dossier racine du VCS" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" -msgstr "_Commit du VCS" +msgstr "Co_mmit du VCS" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Afficher le diff du fichier" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Afficher le diff du dossier" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Afficher le diff du dossier racine" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Commiter les changement" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Afficher le statut" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Rétablir un seul fichier" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Rétablir le dossier" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Rétablir le dossier racine" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Mettre le fichier à jour" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "Gestionnaire de _versions" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "Gestionnaire de _versions" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "_Statut" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Afficher le statut." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Mettre à jour depuis le dépôt distant." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "_Commit" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Commiter les changements." @@ -4759,7 +4858,7 @@ #: ../gproject/src/gproject-menu.c:382 msgid "Open Selected File (gproject)" -msgstr "" +msgstr "Ouvrir le fichier sélectionné (gproject)" #: ../gproject/src/gproject-project.c:406 msgid "Source patterns:" @@ -4819,80 +4918,79 @@ "Note : définissez les patterns des fichiers faisant partie du projet dans " "l'onglet Projet." -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Rechercher un fichier" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Rechercher dans :" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Sensible à la c_asse" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "Rechercher dans le chemin complet" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Tout recharger" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Tout étendre" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Tout replier" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "Suivre l'éditeur actif" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Tout déplier" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Rechercher dans les fichiers" #. POSITION OF VIEW -#: ../markdown/src/conf.c:572 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "Position :" -#: ../markdown/src/conf.c:578 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "Barre latérale" -#: ../markdown/src/conf.c:586 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "Fenêtre de messages" -#: ../markdown/src/conf.c:600 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "Police :" -#: ../markdown/src/conf.c:618 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "Police du code :" -#: ../markdown/src/conf.c:636 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "Couleur d'avant-plan :" -#: ../markdown/src/conf.c:653 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "Couleur d'arrière-plan :" -#: ../markdown/src/conf.c:672 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "Sélectionner un modèle" @@ -4908,6 +5006,166 @@ msgid "The current document does not have a Markdown filetype." msgstr "Le type du fichier courant n'est pas définit à Markdown." +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +#, fuzzy +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" +"Trouve et met en évidence les balises HTML ouvrantes ou fermantes " +"correspondantes" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "Assistant de _traduction" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "Chaîne _précédente" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +msgid "Go to previous string" +msgstr "Aller à la chaîne précédente" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "Chaîne suiva_nte" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to next string" +msgstr "Aller à la chaîne suivante" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "Non-traduite pr_écédente" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "Aller à la chaîne non-traduite précédente" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "Non-traduite s_uivante" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "Aller à la chaîne non-traduite suivante" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "Appro_ximative précédente" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "Aller à la chaîne traduite approximativement précédente" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "Approximati_ve suivante" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "Aller la chaîne traduite approximativement suivante" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "Non-traduite ou _approximative précédente" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "Aller la chaîne non-traduite ou approximative précédente" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "Non-traduite ou approximative _suivante" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "Aller la chaîne non-traduite ou approximative suivante" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +msgid "Toggle current translation fuzziness" +msgstr "Basculer l'état approximatif de la chaîne courante" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "Basculer l'état approxima_tif" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "Copier le _message dans la traduction" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "Copier la chaîne non-traduite originale dans la traduction" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "Reformater la chaîne de traduction courante" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "_Reformatter la traduction" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" +"Active ou désactive la mise-à-jour des en-têtes de traduction " +"(auteur, date de révision, etc.) lors de l'enregistrement du fichier" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "Mettre à _jour les en-têtes lors de l'enregistrement" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "Assistant de traduction" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "Améliore la gestion des fichiers de traduction GetText." + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "Copier la chaîne non-traduite originale dans la traduction" + +#: ../pohelper/src/gph-plugin.c:1099 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "Impossible de charger le fichier de configuration : %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "Impossible de créer le dossier de configuration « %s » : %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "Impossible d'enregistrer le fichier de configuration : %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"Impossible de charger la définition d'interface, veuillez vérifier " +"votre installation. L'erreur était : %s" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" +"Impossible de trouver le widget « %s » dans la définition d'interface," +" veuillez vérifier votre installation." + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4994,7 +5252,7 @@ #: ../scope/data/scope.glade.h:1 msgid "Debu_g" -msgstr "" +msgstr "Débo_guer" #: ../scope/data/scope.glade.h:2 msgid "_Setup Program" @@ -5002,22 +5260,22 @@ #: ../scope/data/scope.glade.h:3 msgid "Recent _Programs" -msgstr "" +msgstr "_Programmes récents" #: ../scope/data/scope.glade.h:4 #, fuzzy msgid "_Run/Continue" -msgstr "Exécuter / continuer" +msgstr "Exécute_r / continuer" #: ../scope/data/scope.glade.h:5 #, fuzzy msgid "Run to _Cursor" -msgstr "Exécuter jusqu'au curseur" +msgstr "Exécuter jusqu'au _curseur" #: ../scope/data/scope.glade.h:6 #, fuzzy msgid "Run to _Source" -msgstr "Exécuter jusqu'au curseur" +msgstr "Exécuter jusqu'à la _source" #: ../scope/data/scope.glade.h:7 msgid "Step _Into" @@ -5038,12 +5296,12 @@ #: ../scope/data/scope.glade.h:11 #, fuzzy msgid "Toggle _Breakpoint" -msgstr "Points d'arrêt" +msgstr "Basuler le point d'arrêt" #: ../scope/data/scope.glade.h:12 #, fuzzy msgid "_GDB Command" -msgstr "Insérer une commande" +msgstr "Commande _GDB" #: ../scope/data/scope.glade.h:13 #, fuzzy @@ -5056,12 +5314,14 @@ msgstr "Afficher le _terminal" #: ../scope/data/scope.glade.h:15 +#, fuzzy msgid "_Reset Markers" -msgstr "" +msgstr "_Réinitialiser les marqueurs" #: ../scope/data/scope.glade.h:16 +#, fuzzy msgid "_Cleanup Files" -msgstr "" +msgstr "Nettoyer les fichiers" #: ../scope/data/scope.glade.h:17 msgid "_Feed" @@ -5093,12 +5353,14 @@ msgstr "" #: ../scope/data/scope.glade.h:24 +#, fuzzy msgid "S_ynchronize" -msgstr "" +msgstr "S_ynchroniser" #: ../scope/data/scope.glade.h:25 +#, fuzzy msgid "_Interrupt" -msgstr "" +msgstr "_Interrompre" #: ../scope/data/scope.glade.h:26 #, fuzzy @@ -5106,9 +5368,8 @@ msgstr "Envoyer un _signal" #: ../scope/data/scope.glade.h:27 -#, fuzzy msgid "S_elect on" -msgstr "Sélectionner une police" +msgstr "" #: ../scope/data/scope.glade.h:28 msgid "_Running" @@ -5124,8 +5385,9 @@ msgstr "" #: ../scope/data/scope.glade.h:31 +#, fuzzy msgid "_Follow" -msgstr "" +msgstr "Suivre" #: ../scope/data/scope.glade.h:32 #, fuzzy @@ -5133,8 +5395,9 @@ msgstr "_Colonnes" #: ../scope/data/scope.glade.h:33 +#, fuzzy msgid "Show _Group" -msgstr "" +msgstr "Afficher le _group" #: ../scope/data/scope.glade.h:34 msgid "Show _Core" @@ -5145,9 +5408,8 @@ msgstr "" #: ../scope/data/scope.glade.h:36 -#, fuzzy msgid "Add _Watch" -msgstr "_Ajouter les deux" +msgstr "" #: ../scope/data/scope.glade.h:37 msgid "Apply on _Run" @@ -5160,19 +5422,21 @@ #: ../scope/data/scope.glade.h:39 #, fuzzy msgid "Show _Address" -msgstr "Adresse" +msgstr "Afficher l'adresse" #: ../scope/data/scope.glade.h:40 +#, fuzzy msgid "_Modify" -msgstr "" +msgstr "_Modifier" #: ../scope/data/scope.glade.h:41 msgid "_Watch" msgstr "" #: ../scope/data/scope.glade.h:42 +#, fuzzy msgid "_Inspect" -msgstr "" +msgstr "_Inspecter" #: ../scope/data/scope.glade.h:43 #, fuzzy @@ -5231,13 +5495,14 @@ msgstr "" #: ../scope/data/scope.glade.h:56 +#, fuzzy msgid "_Apply" -msgstr "" +msgstr "_Appliquer" #: ../scope/data/scope.glade.h:57 #, fuzzy msgid "_Expand" -msgstr "Tout déplier" +msgstr "_Étendre" #: ../scope/data/scope.glade.h:59 msgid "_Natural" @@ -5261,299 +5526,379 @@ msgstr "_Binaire" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" -msgstr "" +#, fuzzy +msgid "_Raw" +msgstr "B_rut" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "Variables d'environnement" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "Terminal de déboguage" +msgid "_Inspect Variable" +msgstr "_Inspecter les variables" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "Threads" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" -msgstr "Pile d'appel" +msgstr "Pile" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 #, fuzzy msgid "Memory" msgstr "Mémoire" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" -msgstr "Insérer une commande" +msgstr "Insérer une commande GDB :" -#: ../scope/data/scope.glade.h:76 -#, fuzzy +#: ../scope/data/scope.glade.h:74 msgid "Convert _UTF-8 to locale" -msgstr "Aligner la sélection à gauche" +msgstr "" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "_Thread" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 #, fuzzy msgid "_Group" msgstr "_Groupe" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 +#, fuzzy msgid "_Frame" -msgstr "" +msgstr "Page" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" msgstr "" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 +#, fuzzy msgid "_Executable:" -msgstr "" +msgstr "_Exécutable :" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 #, fuzzy msgid "_Arguments:" msgstr "_Arguments :" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "En_vironnement :" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 +#, fuzzy msgid "_Working dir:" -msgstr "" +msgstr "Dossier de travail :" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +#, fuzzy +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" +"Supprimer tous les points d'arrêt, watches (?), inspects (?) et " +"registres (?)" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 +#, fuzzy msgid "Program" -msgstr "" +msgstr "Programme" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" -msgstr "Ouvrir une URI" +msgstr "" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" -msgstr "Mettre la liste de tâches à jour" +msgstr "Mettre à jour toutes les _vues" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 +#, fuzzy msgid "Panel" -msgstr "" +msgstr "Panneau" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" -msgstr "" +msgstr "Mode de texte 8-bit par défaut :" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 +#, fuzzy msgid "Display" -msgstr "" +msgstr "Affichage" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 #, fuzzy msgid "_member" msgstr "_membre" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "et" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 #, fuzzy msgid "_argument" msgstr "_argument" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "noms" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "Valeurs" -#: ../scope/data/scope.glade.h:104 -#, fuzzy +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" -msgstr "Tout déplier" +msgstr "" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 +#, fuzzy msgid "S_how" -msgstr "" +msgstr "Affic_her" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 +#, fuzzy msgid "children" -msgstr "" +msgstr "enfants" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 +#, fuzzy msgid "Inspect" -msgstr "" +msgstr "Inspecter" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 #, fuzzy msgid "Show =li_brary messages" msgstr "Afficher les messages =li_brary" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" -msgstr "Afficher les barres d'outils" +msgstr "Afficher les infobulles" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 #, fuzzy msgid "Others" msgstr "Autres" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "Options" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" -msgstr "_Import" +msgstr "_Importer" -#: ../scope/data/scope.glade.h:113 -#, fuzzy +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" -msgstr "Impossible d'évaluer l'expression" +msgstr "" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 #, fuzzy msgid "Inspect" msgstr "Inspecter" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "Objet :" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 #, fuzzy msgid "-" msgstr "-" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 +#, fuzzy msgid "Frame:" -msgstr "" +msgstr "Page :" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 #, fuzzy msgid "@" msgstr "@" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 #, fuzzy msgid "Expand" msgstr "Tout déplier" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "_Début :" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 -#, fuzzy +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" -msgstr "Tout déplier" +msgstr "" -#: ../scope/src/break.c:947 -#, c-format +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "Terminal de déboguage" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "Registres" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "points d'arrêt" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "points d'arrêt matériels" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Exécuter jusqu'au curseur" + +#: ../scope/src/break.c:1013 +#, c-format, fuzzy msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" +"Il y a deux points d'arrêt ou plus à %s:%d.\n" +"\n" +"Utilisez la liste de points d'arrêt pour supprimer le bon." + +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "Ajouter un point d'arrêt" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "" #: ../scope/src/conterm.c:106 -#, fuzzy msgid "Feed Terminal" -msgstr "Terminal de déboguage" +msgstr "" #: ../scope/src/conterm.c:106 +#, fuzzy msgid "Enter char # (0..255):" -msgstr "" +msgstr "Entrez le n° de caractère (0 à 255) :" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 -#, c-format +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 +#, c-format, fuzzy msgid "Scope: %s." -msgstr "" +msgstr "Portée : %s." #: ../scope/src/debug.c:115 ../scope/src/debug.c:120 ../scope/src/utils.c:37 #, c-format @@ -5569,65 +5914,66 @@ msgid "Program terminated." msgstr "" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "%s." -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "…" -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 #, fuzzy msgid "invalid data" -msgstr "Données invalides" +msgstr "données invalides" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 -#, fuzzy +#: ../scope/src/menu.c:482 msgid "Watch expression" -msgstr "Impossible d'évaluer l'expression" +msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" -msgstr "Supprimer la variable ?" +msgstr "Inspecter la variable" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 +#, fuzzy msgid "Undefined GDB error." -msgstr "" +msgstr "Erreur GDB indéfinie." #: ../scope/src/plugme.c:81 #, fuzzy @@ -5639,36 +5985,27 @@ msgid "Select File" msgstr "Sélectionner un fichier" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Points d'arrêt" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "Console" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." -msgstr "Forcer le rechargement des fichiers de configuration" +msgstr "Scope : fichier de configuration créé." -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, fuzzy, c-format msgid "Could not load debug settings file %s: %s." msgstr "Impossible de charger le fichier « %s » : %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5679,15 +6016,16 @@ "\n" "Continuer ?" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" -msgstr "" +#: ../scope/src/program.c:415 +#, fuzzy +msgid "Delete all breakpoints, watches et cetera?" +msgstr "Supprimer tous les points d'arrêt, watches (?), etc. ?" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5697,171 +6035,184 @@ msgstr "Débogueur Scope" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." -msgstr "" +msgid "Relatively simple GDB front-end." +msgstr "Interface relativement simple pour GDB." -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "Exécuter / continuer" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" -msgstr "Exécuter jusqu'au curseur" +msgstr "Exécuter jusqu'à la source" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "Terminer" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "Ajouter / enlever un point d'arrêt" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 #, fuzzy msgid "GDB command" msgstr "Insérer une commande" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "Afficher le terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 #, fuzzy msgid "Busy" msgstr "Occupé" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 #, fuzzy msgid "Ready" msgstr "Prêt" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "Points d'arrêt" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Console" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Send Signal" msgstr "Envoyer un signal" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Enter signal #:" msgstr "Saisissez le numéro de signal :" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "Stopper" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, fuzzy, c-format -msgid "%s: error %lu." -msgstr "%s : erreur %lu." +msgid "%s: %s" +msgstr "%s : %s." -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "…" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 #, fuzzy msgid "_Send" msgstr "_Envoyer" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 #, fuzzy msgid "_Busy" msgstr "_Occupé" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Insérer une commande" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Essayez : " -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Vérification" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Vérification du fichier « %s » (lignes %d à %d en utilisant %s) :" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "Vérification du fichier « %s » (en utilisant %s) :" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "Le texte vérifié est correctement orthographié." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "La bibliothèque Enchant ne peut être initialisée (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" "erreur inconnue (la langue sélectionnée n'est peut-être pas disponible)" @@ -5958,19 +6309,19 @@ msgid "Ignore All" msgstr "Ignorer tout" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Par défaut (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" "Basculer la vérification orthographique lors de la frappe (langue courante : " "%s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Suggestions d'orthographe" @@ -6001,28 +6352,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "Une erreur est survenue lors de l'analyse de la sélection. Arrêt" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Convertir la sélection en tableau" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "_Convertir en tableau" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "Convertit la liste marquée actuellement en tableau." -#: ../treebrowser/src/treebrowser.c:122 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "" -#: ../treebrowser/src/treebrowser.c:123 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -6030,30 +6381,30 @@ "Ce plugin ajoute un navigateur de fichiers à Geany, permettant à " "l'utilisateur de naviguer dans les fichier avec une arborescence de dossiers." -#: ../treebrowser/src/treebrowser.c:432 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s : aucun répertoire de ce type." -#: ../treebrowser/src/treebrowser.c:535 ../treebrowser/src/treebrowser.c:570 -#: ../treebrowser/src/treebrowser.c:672 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Vide)" -#: ../treebrowser/src/treebrowser.c:974 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Impossible d'exécuter la commande d'ouverture externe « %s » (%s)." -#: ../treebrowser/src/treebrowser.c:1045 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NouveauDossier" -#: ../treebrowser/src/treebrowser.c:1047 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NouveauFichier" -#: ../treebrowser/src/treebrowser.c:1052 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" @@ -6062,119 +6413,122 @@ "Le fichier de destination « %s » existe, voulez-vous vraiment le remplacer " "par un fichier vide ?" -#: ../treebrowser/src/treebrowser.c:1096 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Voulez-vous vraiment supprimer « %s » ?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1695 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Dossier parant" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1710 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Définir le chemin depuis le document" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" -msgstr "" +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" +msgstr "_Ouvrir dans un programme externe" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Ouvrir dans un terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Définir comme racine" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1700 -#: ../treebrowser/src/treebrowser.c:2063 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Rafraîchir" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +msgid "_Find in Files" +msgstr "Rechercher dans les _fichiers" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Créer un nouveau dossier" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Créer un nouveau fichier" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Renommer" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Supprimer" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Fermer « %s »" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "Fermer les documents enfants" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" -msgstr "Copier le chemin complet dans le presse-papier" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" +msgstr "_Copier le chemin complet dans le presse-papier" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1977 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Afficher les marque-pages" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1931 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Afficher les fichiers cachés" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "Afficher les barres d'outils" -#: ../treebrowser/src/treebrowser.c:1578 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" "Le fichier de destination « %s » existe déjà, voulez vous vraiment le " "remplacer ?" -#: ../treebrowser/src/treebrowser.c:1705 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Dossier personnel" # Qu'est-ce que ça fait en pratique ? -#: ../treebrowser/src/treebrowser.c:1715 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "Suivre le chemin" -#: ../treebrowser/src/treebrowser.c:1720 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Cacher les barres d'outils" -#: ../treebrowser/src/treebrowser.c:1730 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1738 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Barre de chemin, par exemple « /projets/mon-projet »" -#: ../treebrowser/src/treebrowser.c:1763 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1895 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" -msgstr "Commande d'ouverture externe" +msgstr "Commande du programme externe" -#: ../treebrowser/src/treebrowser.c:1900 -#, fuzzy, c-format +#: ../treebrowser/src/treebrowser.c:1950 +#, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " "wildcards.\n" @@ -6182,58 +6536,59 @@ "%d will be replaced with the path name of the selected file without the " "filename" msgstr "" -"La commande à exécuter pour l'action « Ouvrir XXX » Vous pouvez utiliser " -"les marqueurs %f et %d.\n" +"La commande à exécuter pour l'action « Ouvrir dans un programme " +"externe » Vous pouvez utiliser les marqueurs %f et %d.\n" "%f sera remplacé par le chemin complet du fichier\n" -"%d sera remplacé par le chemin complet du dossier qui contient le fichier" +"%d sera remplacé par le chemin complet du dossier qui contient le " +"fichier" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "Barre d'outils" -#: ../treebrowser/src/treebrowser.c:1910 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "Cachée" -#: ../treebrowser/src/treebrowser.c:1911 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "Au dessus" -#: ../treebrowser/src/treebrowser.c:1912 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "En dessous" -#: ../treebrowser/src/treebrowser.c:1917 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "Cette option nécessite un redémarrage du plugin." -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "Afficher les icônes" -#: ../treebrowser/src/treebrowser.c:1923 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "Aucunes" -#: ../treebrowser/src/treebrowser.c:1924 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "Basiques" -#: ../treebrowser/src/treebrowser.c:1925 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "Depuis le type de contenu" -#: ../treebrowser/src/treebrowser.c:1936 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "Sous Windows cette option ne cache que les fichiers dont le nom commence par " "un « . » (un point)" -#: ../treebrowser/src/treebrowser.c:1938 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Cacher les fichiers objets" -#: ../treebrowser/src/treebrowser.c:1943 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6241,47 +6596,55 @@ "Ne pas afficher les objets auto-générés dans le navigateur de fichiers (*.o, " "*.obj. *.so, *.dll, *.a et *.lib entre autres)" -#: ../treebrowser/src/treebrowser.c:1945 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Inverser le filtre" -#: ../treebrowser/src/treebrowser.c:1950 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Suivre le document courant" -#: ../treebrowser/src/treebrowser.c:1955 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Un simple clic ouvre le document et lui donne le focus" -#: ../treebrowser/src/treebrowser.c:1960 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Un double clic ouvre le dossier" -#: ../treebrowser/src/treebrowser.c:1965 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Fermer les fichiers lorsque ils sont supprimés" -#: ../treebrowser/src/treebrowser.c:1970 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "Donner le focus à l'éditeur lors de l'ouverture d'un fichier" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Afficher les guides d'arborescence" -#: ../treebrowser/src/treebrowser.c:2053 +#: ../treebrowser/src/treebrowser.c:2037 +msgid "Open new files" +msgstr "Ouvrir les nouveaux fichiers" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "Aller à la liste de fichiers" -#: ../treebrowser/src/treebrowser.c:2055 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "Aller au champ de chemin" -#: ../treebrowser/src/treebrowser.c:2057 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "Renommer l'objet" -#: ../treebrowser/src/treebrowser.c:2059 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "Créer un nouveau fichier" -#: ../treebrowser/src/treebrowser.c:2061 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "Créer un nouveau dossier" @@ -6350,44 +6713,44 @@ msgid "utility" msgstr "utilitaire" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s :" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Zoom" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "Zoom du _contenu" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "Inverser l'orientation des panneaux" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Retour" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "Suivant" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Arrêter le chargement" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Recharger la page courante" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Inspecteur web" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Basculer l'inspecteur web" @@ -6532,6 +6895,10 @@ msgid "Autocompletes XML/HTML tags using snippets." msgstr "" +#, fuzzy +#~ msgid "%s: error %lu." +#~ msgstr "%s : erreur %lu." + #~ msgid "Added breakpoint #%s in %s() at %s:%s\n" #~ msgstr "Ajout d'un point d'arrêt #%s dans %s() à %s:%s\n" @@ -6544,9 +6911,6 @@ #~ msgid "reason:" #~ msgstr "raison :" -#~ msgid "Directory %s not found!\n" -#~ msgstr "Répertoire %s introuvable !\n" - #~ msgid "Shutting down target program.\n" #~ msgstr "Fermeture du programme cible.\n" diff -Nru geany-plugins-1.24.0+20140222+git/po/gl.po geany-plugins-1.24.1+dfsg/po/gl.po --- geany-plugins-1.24.0+20140222+git/po/gl.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/gl.po 2014-04-12 14:28:39.000000000 +0000 @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2010-06-06 06:26+0100\n" "Last-Translator: José Manuel Castroagudín Silva \n" "Language-Team: Galician\n" @@ -33,12 +33,12 @@ msgid "Contents" msgstr "Contidos" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Marcadores" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "Act_ualizar" @@ -75,15 +75,15 @@ msgid "Context:" msgstr "Contexto" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "Etiquetado XML" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nome da etiqueta a inserir:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -154,11 +154,12 @@ msgid "Run XML tagging" msgstr "Executar o etiquetado XML" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "Non foi posíbel crear o directorio de configuración do plugin." @@ -253,6 +254,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navegación polo código" @@ -323,8 +332,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Depurar" @@ -468,7 +477,7 @@ msgid "Target" msgstr "grande" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Puntos de interrupción" @@ -511,24 +520,24 @@ msgstr "Iniciando" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 #, fuzzy msgid "Step into" msgstr "Só en %s: %s\n" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 #, fuzzy msgid "Step out" msgstr "Só en %s: %s\n" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 #, fuzzy msgid "Run to cursor" msgstr "A conectar a %s" @@ -540,7 +549,7 @@ #: ../debugger/src/keys.c:57 #, fuzzy -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "Completar a función actualmente en execución." #: ../debugger/src/watch_model.c:220 @@ -575,6 +584,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 #, fuzzy @@ -689,7 +706,7 @@ msgstr "Libro" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Libro" @@ -820,12 +837,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Ficheiro" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 #, fuzzy msgid "_Edit" msgstr "Editor" @@ -1018,57 +1035,66 @@ msgid "Column mode, select to line / brace / anchor." msgstr "Modo de columna, seleccionar ata a liña ou chave correspondente." -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Selección e_xtra" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "Modo de _columna" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Modo de columna" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Seleccionar ata a _liña" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Seleccionar ata a liña" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Seleccionar ata a _chave correspondente" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Seleccionar ata a chave correspondente" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Formatar a selección aliñándoa á esquerda" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 #, fuzzy msgid "Select to _Anchor" msgstr "Seleccionar ata a _liña" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 #, fuzzy msgid "Select to anchor" msgstr "Seleccionar ata a liña" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1485,76 +1511,76 @@ msgstr "" "Tipo de documentación predefinido para linguaxes que non teñan un definido" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Inserir números" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Inserir ou encher columnas con números." -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Contando..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Preparando..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Inserindo..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Para base 11 ou superior" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Comezo:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Paso:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Letras:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "Máis _alto" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "Máis _baixo" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "_Prefixo base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "0 para octal, 0x para hex, + para decimal positivo" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Recheo:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Esp_azo" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Cero" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Inserir _números" @@ -1989,20 +2015,20 @@ msgid "BibTeX reference name:" msgstr "Nome da referencia:" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "Estimado señor ou señora" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "Reciba un cordial saúdo" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "Asistente de LaTeX" @@ -2010,69 +2036,69 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Modelo:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "Predeterminado" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "Escolla o tipo de documento que quere escribir" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Artigo" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Informe" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Carta" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Presentación" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "Codificación:" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "Configure a codificación para o seu novo documento" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 #, fuzzy msgid "Font size" msgstr "Tamaño da tipografía:" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "" "Configure o tamaño da tipografía predeterminado para o seu novo documento" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Autor:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" @@ -2081,11 +2107,11 @@ "seu nome" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "Data:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2093,143 +2119,143 @@ msgstr "" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "Título:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "Configura o título do seu novo documento." #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "Tamaño do papel:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "Escolla o formato do papel para o documento novo creado" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "Orientación do papel:" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "Escolla a orientación do papel para o documento novo creado" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "Usar clases de KOMA-script se é posíbel" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " "before." msgstr "" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "Usar o modo de borrador" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "Executar o asistente de LaTeX" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "Inserir orde" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "Activar ou desactivar a substitución de entrada" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "Substituír caracteres especiais" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "Formatar a selección en negra" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "Formatar a selección en cursiva" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "Formatar a selección en letra de máquina de escribir" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "Formatar a selección centrada" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "Formatar a selección aliñándoa á esquerda" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "Formatar a selección aliñándoa á dereita" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "Inserir lista de descricións" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "Inserir unha lista de elementos" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "Inserir unha lista numerada" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 #, fuzzy msgid "Insert BibTeX reference dialog" msgstr "Inserir referencia" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2240,124 +2266,124 @@ "Por favor, informe de todos os erros ou peticións de características a un " "dos autores." -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "_Asistente de LaTeX" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "Inicia un asistente para crear facilmente documentos LaTeX" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "I_nserir un carácter especial" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "Axuda para usar algunhas letras e signos non moi comúns" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "Inserir _referencia" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "Inserir _etiqueta" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "Axuda ao inserir etiquetas a un documento" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "Inserir _contorno" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "Axuda ao inserir un contorno a un documento" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "Inserir p_aquete" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Formato" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "Tamaño da tip_ografía" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "_Substitución de caracteres especiais" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "Substituí_r en masa caracteres especiais" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" "Substituí_r os caracteres especiais seleccionados por substitutos de TeX" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "_Orde para inserir" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 #, fuzzy msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 #, fuzzy msgid "Insert B_ibTeX reference" msgstr "Inserir _referencia" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 #, fuzzy msgid "_BibTeX entries" msgstr "_BibTeX" @@ -2515,16 +2541,16 @@ msgid "Creating dummy text with Geany" msgstr "Creación de textos de proba con Geany" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Xerador de Lipsum" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Introduza a lonxitude do texto Lipsum aquí" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2662,19 +2688,19 @@ msgid "Browse..." msgstr "Examinar..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Seleccionar a cor" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Seleccionar..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Seleccionar tipo de letra" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Seleccionar..." @@ -2705,7 +2731,7 @@ "Produciuse un erro no módulo \"%s\" na función %s():\n" "non hai argumentos suficientes para a orde \"%s\".\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2745,7 +2771,7 @@ msgid "Save file" msgstr "Gardar ficheiro" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2754,7 +2780,7 @@ "Produciuse un erro no módulo \"%s\" na función pickfile():\n" "produciuse un erro ao analizar a cadea de filtro no argumento #3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2800,7 +2826,7 @@ "O complemento %s non foi cargado adecuadamente.\n" "Comprobe a súa instalación." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, fuzzy, c-format msgid "" "%s %s: %s\n" @@ -2809,7 +2835,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2008 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2818,7 +2844,7 @@ "Produciuse un erro no módulo \"%s\" na función %s():\n" "non se atopou o widget \"%s\" para o argumento #1.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3196,6 +3222,21 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "Elementos de busca:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "Elementos de busca:" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Seleccionar ata a liña" + #: ../geanymacro/src/geanymacro.c:181 #, fuzzy msgid "Macros" @@ -3400,12 +3441,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 #, fuzzy msgid "_Cancel" msgstr "Codificación:" @@ -3426,7 +3467,7 @@ msgid "Search for contents of clipboard" msgstr "Copiar o camiño completo" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 #, fuzzy msgid "Search for:" msgstr "Elementos de busca:" @@ -3466,60 +3507,60 @@ msgid "Text:" msgstr "Contexto" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, fuzzy, c-format msgid "Edit: %s" msgstr "Editar o punto de vixilancia" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "Borrar" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 #, fuzzy msgid "Edit Macros" msgstr "Editar o punto de vixilancia" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3538,6 +3579,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3546,115 +3614,114 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 #, fuzzy msgid "Display a information about the mini-script plugin" msgstr "Mostrar información adicional sobre o elemento seleccionado." -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "Seleccionar tipo de letra" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "Enviar o docu_mento por correo" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "Proxecto novo" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 #, fuzzy msgid "script configuration" msgstr "Produciuse un erro ao cargar a configuración: %s" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 #, fuzzy msgid "Mini Script" msgstr "Script Lua" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3662,55 +3729,55 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 #, fuzzy msgid "_Ignore" msgstr "Ignorar Todo" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Formatar a selección aliñándoa á esquerda" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Formatar a selección aliñándoa á esquerda" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3726,7 +3793,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3810,36 +3877,36 @@ msgstr "Seleccionar ficheiro" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3849,8 +3916,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "descoñecido" @@ -4011,7 +4078,7 @@ msgstr "Abrir ficheiro" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Proxecto" @@ -4041,7 +4108,7 @@ msgid "C_reate" msgstr "C_rear" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nome:" @@ -4119,7 +4186,7 @@ msgid "Remove File" msgstr "Eliminar ficheiro" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "_Ocultar a barra lateral" @@ -4128,6 +4195,50 @@ msgid "Project \"%s\" opened." msgstr "Abriuse o proxecto \"%s\"." +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyGDB" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Produciuse un erro ao gardar a configuración: %s" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "Non se atopou o directorio temporal de tty!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Produciuse un erro ao gardar a configuración: %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4149,13 +4260,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "Introduza o enderezo de correo-e do destinatario:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "Non se atopou o marcador de posición do ficheiro. A orde executada pode ter " "fallado." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4163,33 +4274,33 @@ "Non se atopou o marcador de posición do enderezo do destinatario. A orde " "executada pode ter fallado." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Non foi posíbel executar o cliente de correo. Revise a súa configuración." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Por favor, defina primeiro un cliente de correo ." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Débese gardar o ficheiro antes de envialo." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Correo" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Enviar por correo" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Camiño e opcións para o cliente de correo:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 #, fuzzy msgid "" "Note: \n" @@ -4208,32 +4319,32 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"Enviando '\\%b'\" -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 #, fuzzy msgid "Show toolbar icon" msgstr "Mostrar as indicacións." -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Mostra unha icona na barra de ferramentas para enviar o ficheiro máis " "facilmente." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 #, fuzzy msgid "Use dialog for entering email address of recipients" msgstr "Usar un diálogo para introducir o enderezo de correo dos destinatarios" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Enviar o ficheiro por correo" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Enviar o docu_mento por correo" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4253,78 +4364,97 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Non se realizaron cambios" -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 #, fuzzy msgid "No history available" msgstr "Non hai historial dispoñíbel" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Está seguro de que desexa reverter: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Está seguro de que quere engadir: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Está seguro de que quere eliminar: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Está seguro de que desexa actualizar?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Estado" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Ruta" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "(_De)Seleccionar tódolos ficheiros" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 #, fuzzy msgid "Nothing to commit." msgstr "Non hai nada que " -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Produciuse un erro ao iniciar a corrección ortográfica: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4333,11 +4463,11 @@ "Produciuse un erro ao configurar o idioma para a verificación ortográfica. " "Verifique a súa configuración. A mensaxe de erro foi: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4348,262 +4478,262 @@ "opción ñe útil nalgúns casos, pode causar un gran número de diálogos do tipo " "\"Quere gardar... ?\"." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "" "Confirmar a adición de novos ficheiros a un sistema de control de versións" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Mostra un diálogo de confirmación ao engadir un ficheiro novo (creado) a un " "sistema de control de versións." -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Uar un visor de diff externo" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Usar un visor externo de diff para diffs de ficheiros." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Mostrar entradas de control de versións no menú do editor" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" "Mostra entradas para as funcións de control de versións dentro do menú do " "editor" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Habilitar CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Habilitar GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Habilitar SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Habilitar SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Habilitar Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Habilitar Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Idioma para a revisión ortográfica" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diff" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Fader un diff a partir do ficheiro activo actualmente" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Reverter" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" "Restaurar o ficheiro limpo da copia de traballo (desfacer edicións locais)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Blame" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Mostra os cambios feitos nun ficheiro por revisión e autor." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Historial (rexistro)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Mostra o rexistro do ficheiro actual" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Orixinal" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 #, fuzzy msgid "Shows the original of the current file" msgstr "Mostra a versión orixinal do ficheiro actual" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "Eng_adir ao control de versións" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Engadir o ficheiro ao repositorio." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "Elimina_r do control de versións" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Eliminar ficheiro do repositorio." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Directorio" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Facer un diff a partir do directorio do ficheiro activo actual" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" "Restaurar os ficheiros orixinais no directorio actual (desfacer as edicións " "locais)." -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Mostra o rexistro do directorio actual" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Directorio _base" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "Facer un diff a partir do directorio máis alto do control de versións" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "REverter todas as edicións locais." -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Mostra o rexistro do directorio máis alto do control de versións" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Mostrar o diff do ficheiro" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Mostrar o diff do directorio" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Mostrar un diff do directorio base" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Mostrar estado" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Reverter un único ficheiro" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Reverter o directorio" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Reverter o directorio base" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Actualizar o ficheiro" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "C_V" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 #, fuzzy msgid "_Version Control" msgstr "Eng_adir ao control de versións" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "E_stado" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Mostrar estado." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Actualizar dende o repositorio remoto." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "" @@ -4752,104 +4882,261 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 #, fuzzy msgid "Find File" msgstr "Engadir ficheiro" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 #, fuzzy msgid "Search inside:" msgstr "Elementos de busca:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 #, fuzzy msgid "Reload all" msgstr "Expandir todos" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Expandir todos" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Contraer todos" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 #, fuzzy msgid "Expand All" msgstr "Expandir todos" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 #, fuzzy msgid "Find in Files" msgstr "Procurar en todo o proxecto " #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Edición" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 #, fuzzy msgid "Sidebar" msgstr "_Ocultar a barra lateral" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 #, fuzzy msgid "Message Window" msgstr "_Ocultar a xanela de mensaxes" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "Seleccionar ata a liña" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "Volver ó diálogo anterior" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "Pasar á liña seguinte" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "Tipo de documentación" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "Produciuse un erro ao cargar a configuración: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" +"Non foi posíbel atopar un ficheiro de configuración para o tipo de ficheiro " +"\"%s\": %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "Produciuse un erro ao gardar a configuración: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"O complemento %s non foi cargado adecuadamente.\n" +"Comprobe a súa instalación." + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -5211,283 +5498,355 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "Contornos" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "Executar nun terminal" +msgid "_Inspect Variable" +msgstr "Contornos" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" msgstr "_Disposición" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 #, fuzzy msgid "Watches" msgstr "Puntos de vixilancia" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -#, fuzzy -msgid "Debug Console" -msgstr "Consola:" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" msgstr "Inserir orde" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "Formatar a selección aliñándoa á esquerda" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 #, fuzzy msgid "_Frame" msgstr "Información do marco" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 #, fuzzy msgid "Setup Program" msgstr "sen programa" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "Contorno:" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 #, fuzzy msgid "_Load script:" msgstr "Scripts _Lua" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 #, fuzzy msgid "Program" msgstr "sen programa" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" msgstr "Abrir URI" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 #, fuzzy msgid "g_db load" msgstr "_Desactivar" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" msgstr "Actualizar a lista de tarefas" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 #, fuzzy msgid "_member" msgstr "Número" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "Tipo de letra inclinada" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 #, fuzzy msgid "_argument" msgstr "Enviar o docu_mento por correo" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "Renomear" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 #, fuzzy msgid "E_xpand on apply" msgstr "Expandir todos" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "Mostrar as indicacións." -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "_Opcións" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" msgstr "Informe" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 #, fuzzy msgid "Enter assignment expression:" msgstr "Expresión regular non válida: %s" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "Información do obxecto" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 #, fuzzy msgid "Frame:" msgstr "Nome:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 #, fuzzy msgid "Expand" msgstr "Expandir todos" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "_Comezo:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 #, fuzzy msgid "_Expand on apply" msgstr "Expandir todos" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "Executar nun terminal" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Puntos de interrupción" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Editar o punto de ruptura" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "punto de vixilancia" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "punto de vixilancia" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "Editar o punto de vixilancia" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "punto de vixilancia" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "Editar o punto de vixilancia" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "punto de vixilancia" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "_Desactivar" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "A conectar a %s" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "Engadir punto de ruptura" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 #, fuzzy msgid "Add Watchpoint" msgstr "Engadir punto de vixilancia" @@ -5501,7 +5860,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "Pechar: %s" @@ -5521,65 +5881,66 @@ msgid "Program terminated." msgstr "Terminado" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 #, fuzzy msgid "..." msgstr "Máis..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 #, fuzzy msgid "invalid data" msgstr "Etiqueta non válida" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 #, fuzzy msgid "out of scope" msgstr "O punto de vixilancia #%s está fora de ámbito" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 #, fuzzy msgid "Watch expression" msgstr "Expresión regular non válida: %s" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "Variábeis locais" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5593,39 +5954,29 @@ msgid "Select File" msgstr "Seleccionar ficheiro" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Puntos de interrupción" - -#: ../scope/src/prefs.c:339 -#, fuzzy -msgid "Console" -msgstr "Consola:" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." msgstr "Forzar a recarga dos ficheiros de configuración" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, fuzzy, c-format msgid "Could not load debug settings file %s: %s." msgstr "" "Produciuse un erro ao cargar o tipo de ficheiro \"%s\" dende o ficheiro \"%s" "\": %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5633,15 +5984,15 @@ "Continue?" msgstr "Contando..." -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5651,169 +6002,184 @@ msgstr "Depurar" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 #, fuzzy msgid "Setup program" msgstr "sen programa" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "Contando..." -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "A conectar a %s" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "Terminado" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "punto de interrupción" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 #, fuzzy msgid "GDB command" msgstr "Inserir orde" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "Executar nun terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 #, fuzzy msgid "Load" msgstr "_Carga" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "Puntos de interrupción" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Console" +msgstr "Consola:" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Debug Console" +msgstr "Consola:" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Send Signal" msgstr "Enviar por correo" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 #, fuzzy msgid "Running" msgstr "Executando" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "Detido" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "%s:%u:%u: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Orde 0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Probe:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Verificando..." -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Verificando o ficheiro\"%s\" (liñas %d a %d, usando %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "Verificando o ficheiro \"%s\" (usando %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "O texto verificado non ten erros ortográficos" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "Non se puido iniciar a biblioteca Enchant (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" "Produciuse un erro descoñecido (poida que o idioma escollido non estea " @@ -5912,19 +6278,19 @@ msgid "Ignore All" msgstr "Ignorar Todo" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Predeterminado (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" "Intercambiar a verificación ortográfica mentres se escribe (o idioma actual " "é: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Recomendacións de Ortografía" @@ -5955,158 +6321,164 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 #, fuzzy msgid "Convert selection to table" msgstr "Formatar a selección aliñándoa á esquerda" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 #, fuzzy msgid "TreeBrowser" msgstr "Explorador en árbore" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, fuzzy, c-format msgid "%s: no such directory." msgstr "%s: non hai tal ficheiro ou directorio" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 #, fuzzy msgid "(Empty)" msgstr "Baleiro" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Non foi posíbel executar a orde externa configurada '%s' (%s)" -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NovoDirectorio" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NovoFicheiro" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Está seguro de que desexa borrar '%s' ?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Subir" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Definir camiño a partir de documento" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" msgstr "Abrir externamente" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Abrir terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Definir como raíz" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Actualizar" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "Procurar en todo o proxecto " + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Crear un directorio novo" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Crear un ficheiro novo" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Renomear" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Borrar" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Pechar: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, fuzzy, c-format msgid "Close Child Documents " msgstr "Pec_har os outros documentos" -#: ../treebrowser/src/treebrowser.c:1273 +#: ../treebrowser/src/treebrowser.c:1272 #, fuzzy -msgid "Copy full path to clipboard" +msgid "_Copy full path to clipboard" msgstr "Copiar o camiño completo" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Mostrar marcadores" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Mostrar os ficheiros ocultos" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 #, fuzzy msgid "Show toolbars" msgstr "Mostrar barras" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Inicio" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "RExistrar camiño" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Ocultar barras" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -6114,19 +6486,19 @@ "Filtrar (*.c;*.h;*.cpp), e se quere filtrar temporalmente usando o '!' " "inverso. Por exemplo pode probar o seguinte: '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Barra de enderezo, por exemplo '/proxectos/o-meu-proxecto'" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "Explorador en árbore" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Orde externa para abrir" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6140,57 +6512,57 @@ "%f substituirase polo nome do ficheiro incluíndo o camiño completo\n" "%d substiruirase polo camiño ao ficheiro seleccionado, sen o nome de ficheiro" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 #, fuzzy msgid "If position is changed, the option require plugin restart." msgstr "Mostrar barras no alto (require o reinicio do complemento)" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 #, fuzzy msgid "Show icons" msgstr "Mostrar iconas." -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 #, fuzzy msgid "Base" msgstr "_Base:" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 #, fuzzy msgid "Content-type" msgstr "Contidos" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "En windows, isto simplemente oculta os ficheiros que leven por prefixo un " "punto ('.')" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Ocultar ficheiros obxecto" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6198,50 +6570,59 @@ "Non mostrar ficheiros obxecto no navegador de ficheiros. Isto inclúe *.o, *." "obj. *.so, *.dll, *.a, *.lib" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Inverter o filtro" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Seguir o documento actual" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Un só click abre o documento e enfñocase nel" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Premer dúas veces para abrir directorio" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Ao borrar un ficheiro, pechalo se está aberto" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Mostrar as liñas da árbore" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "Abrir ficheiro" + +#: ../treebrowser/src/treebrowser.c:2113 #, fuzzy msgid "Focus File List" msgstr "Enfocar na lista de tarefas" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 #, fuzzy msgid "Rename Object" msgstr "Renomear" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 #, fuzzy msgid "Create New File" msgstr "Crear un ficheiro novo" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 #, fuzzy msgid "Create New Directory" msgstr "Crear un directorio novo" @@ -6312,46 +6693,46 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 #, fuzzy msgid "Flip panes orientation" msgstr "Orientación do papel:" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 #, fuzzy msgid "Cancel loading" msgstr "Codificación:" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" @@ -6566,9 +6947,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "Non se especificou o directorio temporal de tty!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "Non se atopou o directorio temporal de tty!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "Non se especificou o programa de axuda de tty!\n" @@ -6635,21 +7013,12 @@ #~ msgid "No %s selected" #~ msgstr "Non hai ningún %s seleccionado" -#~ msgid "watchpoint" -#~ msgstr "punto de vixilancia" - #~ msgid "Delete selected watchpoint?" #~ msgstr "Borrar o punto de vixilancia seleccionado?" #~ msgid "Delete selected breakpoint?" #~ msgstr "Borrar o punto de ruptura seleccionado?" -#~ msgid "Edit watchpoint" -#~ msgstr "Editar o punto de vixilancia" - -#~ msgid "Edit breakpoint" -#~ msgstr "Editar o punto de ruptura" - #~ msgid "Enabled" #~ msgstr "Activado" @@ -6842,10 +7211,6 @@ #~ msgid "Couldn't create tempfile" #~ msgstr "Crear un ficheiro novo" -#, fuzzy -#~ msgid "GeanyPG" -#~ msgstr "GeanyGDB" - #~ msgid "Lionel Fuentes" #~ msgstr "Lionel Fuentes" diff -Nru geany-plugins-1.24.0+20140222+git/po/intl_stats.sh geany-plugins-1.24.1+dfsg/po/intl_stats.sh --- geany-plugins-1.24.0+20140222+git/po/intl_stats.sh 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/intl_stats.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,100 +0,0 @@ -#!/bin/sh - -# Little shell script to display some basic statistics about Geany's translation -# files. It also checks the menu accelerators. -# -# Copyright 2007-2008 Enrico Tröger -# Copyright 2007-2008 Frank Lanitz -# -# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. - - -check_accelerators="" -linguas="" -me=`basename $0` - - -usage() -{ - echo "usage: $me [OPTION] [languages...]" - echo - echo "OPTIONs are:" - echo "-h --help this help screen" - echo "-a --accelerators check also for menu accelerators" - echo "languages list of language codes which should be tested" - echo - echo "example: $me -a de fr hu" -} - - -# parse cmd line arguments -while [ $# -gt 0 ] -do - case $1 in - --accelerators) - check_accelerators="--check-accelerators=_" - ;; - -a) - check_accelerators="--check-accelerators=_" - ;; - --help) - usage; - exit 1; - ;; - -h) - usage; - exit 1; - ;; - *) - linguas="$linguas "$1 - ;; - esac - shift -done - - - -# if no languages where specified on the command line, take all listed languages in LINGUAS -if [ -z "$linguas" ] -then - linguas=`sed -e '/^#/d' po/LINGUAS` -fi - -# dash and zsh don't need the -e switch to echo, bash does -# maybe there is a better way to detect whether we are running on a bash -eswitch="" -if [ "$BASH" ] -then - eswitch="-e" -fi - -# do the work -if [ $check_accelerators ] -then - for lang in $linguas - do - msgfmt --check --statistics $check_accelerators po/$lang.po; - done -else - for lang in $linguas - do - # maybe the regexp can be optimized, regexps are not my best friends - creationdate=`grep "PO-Revision-Date:" po/$lang.po | sed 's/.*: \([0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\} [0-9]\{2\}:[0-9]\{2\}[+|-][0-9]\{4\}\).*/\1/'` - echo -n $eswitch $lang"\t("$creationdate"):\t" - msgfmt --check --statistics po/$lang.po; - done -fi - - diff -Nru geany-plugins-1.24.0+20140222+git/po/it.po geany-plugins-1.24.1+dfsg/po/it.po --- geany-plugins-1.24.0+20140222+git/po/it.po 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/it.po 2014-04-12 14:28:39.000000000 +0000 @@ -0,0 +1,6752 @@ +# Italian translations for geany-plugins package. +# Copyright (C) 2014 THE geany-plugins'S COPYRIGHT HOLDER +# This file is distributed under the same license as the geany-plugins package. +# Federico Reghenzani , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: geany-plugins 1.24\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-03-30 20:34+0200\n" +"PO-Revision-Date: 2014-04-09 07:23+0200\n" +"Last-Translator: Federico Reghenzani \n" +"Language-Team: Italian\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../addons/src/ao_bookmarklist.c:182 +msgid "(Empty Line)" +msgstr "(Linea vuota)" + +#: ../addons/src/ao_bookmarklist.c:307 +msgid "_Remove Bookmark" +msgstr "_Rimuovi segnalibro" + +#: ../addons/src/ao_bookmarklist.c:333 +msgid "No." +msgstr "N°" + +#: ../addons/src/ao_bookmarklist.c:341 ../devhelp/src/dhp-object.c:494 +#: ../devhelp/devhelp/dh-window.c:1142 +msgid "Contents" +msgstr "Contenuti" + +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 +msgid "Bookmarks" +msgstr "Segnalibri" + +#. complete update +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 +msgid "_Update" +msgstr "_Aggiorna" + +#: ../addons/src/ao_tasks.c:382 +msgid "_Hide Message Window" +msgstr "_Nascondi la finestra dei messaggi" + +#: ../addons/src/ao_tasks.c:412 ../debugger/src/stree.c:387 +msgid "File" +msgstr "File" + +#: ../addons/src/ao_tasks.c:423 ../debugger/src/bptree.c:702 +#: ../debugger/src/stree.c:394 +msgid "Line" +msgstr "Linea" + +#. i18n: in the programming language context, if you don't +#. * have an ESTABLISHED term for it, leave it +#. * untranslated. +#: ../addons/src/ao_tasks.c:434 ../debugger/src/vtree.c:204 +#: ../devhelp/devhelp/dh-link.c:287 ../geanylatex/src/bibtexlabels.c:68 +msgid "Type" +msgstr "Type" + +#: ../addons/src/ao_tasks.c:445 +msgid "Task" +msgstr "Task" + +#: ../addons/src/ao_tasks.c:478 +msgid "Tasks" +msgstr "Task" + +#: ../addons/src/ao_tasks.c:542 +msgid "Context:" +msgstr "Contesto:" + +#: ../addons/src/ao_xmltagging.c:54 +msgid "XML tagging" +msgstr "XML tagging" + +#: ../addons/src/ao_xmltagging.c:65 +msgid "Tag name to be inserted:" +msgstr "Nome del Tag da inserire:" + +#: ../addons/src/ao_xmltagging.c:69 +#, c-format +msgid "" +"%s will be replaced with your current selection. Please keep care on your " +"selection" +msgstr "" +"%s sarà sostituito con la tua selezione correte. Prestare attenzione alla " +"tua selezione" + +#: ../addons/src/ao_openuri.c:165 +msgid "Open URI" +msgstr "Apri URI" + +#: ../addons/src/ao_openuri.c:171 +msgid "Copy URI" +msgstr "Copia URI" + +#: ../addons/src/ao_wrapwords.c:249 +msgid "Enclose Characters" +msgstr "Enclose caratteri" + +#: ../addons/src/ao_wrapwords.c:260 +#, c-format +msgid "Enclose combo %d" +msgstr "Enclose combo %d" + +#: ../addons/src/ao_wrapwords.c:276 +msgid "Opening Character" +msgstr "Carattere di apertura" + +#: ../addons/src/ao_wrapwords.c:283 +msgid "Closing Character" +msgstr "Carattere di chiusura" + +#: ../addons/src/ao_doclist.c:207 +msgid "Close Ot_her Documents" +msgstr "C_hiudi gli altri Documenti" + +#: ../addons/src/ao_doclist.c:212 +msgid "C_lose All" +msgstr "Chiudi _tutto" + +#: ../addons/src/ao_doclist.c:242 +msgid "Show Document List" +msgstr "Visualizza lista Documenti" + +#: ../addons/src/addons.c:52 +msgid "Addons" +msgstr "Addons" + +#: ../addons/src/addons.c:53 +msgid "Various small addons for Geany." +msgstr "Alcuni piccoli addon per Geany." + +#: ../addons/src/addons.c:296 +msgid "Focus Bookmark List" +msgstr "Imposta il focus sulla lista dei Segnalibri" + +#: ../addons/src/addons.c:298 +msgid "Focus Tasks List" +msgstr "Imposta il focus sulla lista dei Task" + +#: ../addons/src/addons.c:300 +msgid "Update Tasks List" +msgstr "Aggiorna la lista dei Task" + +#: ../addons/src/addons.c:302 +msgid "Run XML tagging" +msgstr "Esegui XML tagging" + +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 +#: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 +#: ../treebrowser/src/treebrowser.c:1933 +#: ../updatechecker/src/updatechecker.c:253 +msgid "Plugin configuration directory could not be created." +msgstr "La cartella della configurazione dei plugin non può essere creata." + +#: ../addons/src/addons.c:445 +msgid "Show toolbar item to show a list of currently open documents" +msgstr "Mostra un'icona nella toolbar per visualizzare la lista dei documenti " +"aperti" + +#: ../addons/src/addons.c:449 +msgid "Sort documents by _name" +msgstr "Ordina i documenti in base al _nome" + +#: ../addons/src/addons.c:451 +msgid "Sort the documents in the list by their filename" +msgstr "Ordina tutti ti documenti nella lista in base al nome del file" + +#: ../addons/src/addons.c:454 +msgid "Sort documents by _occurrence" +msgstr "Ordina i documenti in base alle _occorrenze" + +#: ../addons/src/addons.c:456 +msgid "Sort the documents in the order of the document tabs" +msgstr "Ordina i documenti in base all'ordine dei tab" + +#: ../addons/src/addons.c:459 +msgid "Sort documents by _occurrence (reversed)" +msgstr "Ordina i documenti in base alle _occorrerze (invertito)" + +#: ../addons/src/addons.c:461 +msgid "Sort the documents in the order of the document tabs (reversed)" +msgstr "Ordina i documenti in base all'ordine dei tab (invertito)" + +#: ../addons/src/addons.c:488 +msgid "Show an 'Open URI' item in the editor menu" +msgstr "Visualizza un 'Apri URI' nel menù dell'editor" + +#: ../addons/src/addons.c:494 +msgid "Show available Tasks in the Messages Window" +msgstr "Visualizza i Task disponibili nella finestra Messaggi" + +#: ../addons/src/addons.c:500 +msgid "Show tasks of all documents" +msgstr "Visualizza i Task di tutti i documenti" + +#: ../addons/src/addons.c:504 +msgid "" +"Whether to show the tasks of all open documents in the list or only those of " +"the current document." +msgstr "" +"Mostrare i task di tutti i documenti aperti o solo quelli del documento corrente" + +#: ../addons/src/addons.c:511 +msgid "Specify a semicolon separated list of search tokens." +msgstr "Specifica una lista di token di ricerca, separata da punti e virgola." + +#: ../addons/src/addons.c:513 +msgid "Search tokens:" +msgstr "Token di ricerca:" + +#: ../addons/src/addons.c:530 +msgid "Show status icon in the Notification Area" +msgstr "Visualizza icona status nell'area notifiche" + +#: ../addons/src/addons.c:536 +msgid "Show defined bookmarks (marked lines) in the sidebar" +msgstr "Visualizza i segnalibri (linee contrassegnate) nella barra laterale" + +#: ../addons/src/addons.c:542 +msgid "Mark all occurrences of a word when double-clicking it" +msgstr "Evidenzia tutte le occorrenze di una parola effettuando doppio-click " +"su di essa." + +#: ../addons/src/addons.c:548 +msgid "Strip trailing blank lines" +msgstr "Elimina linee vuote finali" + +#: ../addons/src/addons.c:554 +msgid "XML tagging for selection" +msgstr "XML tagging per selezione" + +#: ../addons/src/addons.c:560 +msgid "Enclose selection on configurable keybindings" +msgstr "Racchiudi selezione con combinazione di tasti" + +#: ../addons/src/addons.c:572 +msgid "Enclose selection automatically (without having to press a keybinding)" +msgstr "Racchiudi selezione automaticamente (senza premere una combinazione)" + +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "Auto-chiusura" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "Auto-chiudi parentesi con molte funzioni" + +#: ../codenav/src/codenavigation.c:52 +msgid "Code navigation" +msgstr "Naviazione codice" + +#: ../codenav/src/codenavigation.c:53 +msgid "" +"This plugin adds features to facilitate navigation between source files.\n" +"As for the moment, it implements :\n" +"- switching between a .cpp file and the corresponding .h file\n" +"- [opening a file by typing its name -> TODO]" +msgstr "" +"Questo plugin aggiunge funzionalità per semplificare la navigazione tra\n" +"file sorgenti. Per il momento sono implementate:\n" +"- scambia un file .cpp con il suo corrispondente .h\n" +"- [apri file digitando il suo nome -> TODO]" + + +#. Add the menu item, sensitive only when a document is opened +#: ../codenav/src/goto_file.c:57 ../codenav/src/goto_file.c:71 +msgid "Goto file" +msgstr "Vai al file" + +#: ../codenav/src/goto_file.c:109 +#, c-format +msgid "(From the %s plugin)" +msgstr "(Dal plugin %s)" + +#. Add the menu item and make it sensitive only when a document is opened +#. Frame, which is the returned widget +#: ../codenav/src/switch_head_impl.c:85 ../codenav/src/switch_head_impl.c:99 +#: ../codenav/src/switch_head_impl.c:461 +msgid "Switch header/implementation" +msgstr "Passa a intestazione/sorgente" + +#: ../codenav/src/switch_head_impl.c:369 +#, c-format +msgid "%s not found, create it?" +msgstr "%s non trovato, crearlo?" + +#: ../codenav/src/switch_head_impl.c:485 +msgid "Headers extensions" +msgstr "Estensioni delle intestazioni" + +#: ../codenav/src/switch_head_impl.c:494 +msgid "Implementations extensions" +msgstr "Estensioni implementate" + +#: ../commander/src/commander-plugin.c:39 +msgid "Commander" +msgstr "Comandante" + +#: ../commander/src/commander-plugin.c:40 +msgid "Provides a command panel for quick access to actions, files and more" +msgstr "Fornisce un pannello comandi per un veloce accesso a azioni, file e altro" + +#: ../commander/src/commander-plugin.c:686 +msgid "Show Command Panel" +msgstr "Visualizza pannello comandi" + +#: ../debugger/src/plugin.c:56 +msgid "Debugger" +msgstr "Debugger" + +#: ../debugger/src/plugin.c:57 +msgid "Various debuggers integration." +msgstr "Diverse integrazioni con i debuggers." + +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 +msgid "Debug" +msgstr "Debug" + +#: ../debugger/src/vtree.c:173 ../debugger/src/envtree.c:417 +msgid "Name" +msgstr "Nome" + +#: ../debugger/src/vtree.c:196 ../debugger/src/envtree.c:422 +msgid "Value" +msgstr "Valore" + +#: ../debugger/src/tpage.c:105 +msgid "Choose target file" +msgstr "Scegli il file target" + +#. target +#: ../debugger/src/tpage.c:251 +msgid "Target:" +msgstr "Target:" + +#: ../debugger/src/tpage.c:254 +msgid "Browse" +msgstr "Sfoglia" + +#. debugger +#: ../debugger/src/tpage.c:259 +msgid "Debugger:" +msgstr "Debugger:" + +#. arguments +#: ../debugger/src/tpage.c:270 +msgid "Command Line Arguments" +msgstr "Parametri linea di comando" + +#. environment +#: ../debugger/src/tpage.c:281 +msgid "Environment Variables" +msgstr "Variabili d'ambiente" + +#. if name is empty - offer to delete variable +#: ../debugger/src/envtree.c:260 ../debugger/src/envtree.c:364 +#: ../debugger/src/debug.c:254 +msgid "Delete variable?" +msgstr "Elimina variabile?" + +#: ../debugger/src/bptree.c:676 +msgid "Location" +msgstr "Posizione" + +#: ../debugger/src/bptree.c:685 +msgid "Condition" +msgstr "Condizione" + +#: ../debugger/src/bptree.c:696 +msgid "Hit count" +msgstr "Conteggio Hit" + +#: ../debugger/src/bptree.c:861 +#, c-format +msgid "line %i" +msgstr "linea %i" + +#: ../debugger/src/dbm_gdb.c:547 +msgid "Program received a signal" +msgstr "Il programma ha ricevuto un segnale" + +#: ../debugger/src/dbm_gdb.c:563 +#, c-format +msgid "Program exited with code \"%i\"" +msgstr "Programma terminato con codice \"%i\"" + +#: ../debugger/src/dbm_gdb.c:735 +msgid "Failed to spawn gdb process" +msgstr "Impossibile avviare il processo gdb" + +#: ../debugger/src/dbm_gdb.c:782 +msgid "~\"Loading target file.\\n\"" +msgstr "~\"Caricamento file target.\\n\"" + +#: ../debugger/src/dbm_gdb.c:782 +msgid "Error loading file" +msgstr "Impossibile caricare il file" + +#. setting asyncronous mode +#. setting null-stop array printing +#. enable pretty printing +#: ../debugger/src/dbm_gdb.c:786 ../debugger/src/dbm_gdb.c:789 +#: ../debugger/src/dbm_gdb.c:792 +msgid "Error configuring GDB" +msgstr "Errore nella configurazione di GDB" + +#: ../debugger/src/dbm_gdb.c:835 +#, c-format +msgid "" +"Breakpoint at %s:%i cannot be set\n" +"Debugger message: %s" +msgstr "" +"Impossibile settare Breakpoint a %s:%i\n" +"Messaggio del debugger: %s" + +#: ../debugger/src/utils.c:68 +#, c-format +msgid "Can't find a source file \"%s\"" +msgstr "Impossibile trovare il file sorgente \"%s\"" + +#: ../debugger/src/stree.c:140 +msgid "Active frame" +msgstr "Frame attivo" + +#: ../debugger/src/stree.c:140 +msgid "Click an arrow to switch to a frame" +msgstr "Clicca una freccia per cambiare a un frame" + +#: ../debugger/src/stree.c:363 ../geanylatex/src/bibtexlabels.c:46 +msgid "Address" +msgstr "Indirizzo" + +#. i18n: in the programming language context, if you don't +#. * have an ESTABLISHED term for it, leave it +#. * untranslated. +#: ../debugger/src/stree.c:381 ../devhelp/devhelp/dh-link.c:267 +msgid "Function" +msgstr "Funzione" + +#: ../debugger/src/stree.c:533 +#, c-format +msgid "Thread %i" +msgstr "Thread %i" + +#: ../debugger/src/tabs.c:132 +msgid "Target" +msgstr "Target" + +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 +msgid "Breakpoints" +msgstr "Breakpoint" + +#: ../debugger/src/tabs.c:138 +msgid "Watch" +msgstr "Watch" + +#: ../debugger/src/tabs.c:141 +msgid "Autos" +msgstr "Auto" + +#: ../debugger/src/tabs.c:144 +msgid "Call Stack" +msgstr "Stack di chiamata" + +#: ../debugger/src/tabs.c:147 +msgid "Debug Terminal" +msgstr "Terminale di Debug" + +#: ../debugger/src/tabs.c:150 +msgid "Debugger Messages" +msgstr "Messaggi dal debugger" + +#: ../debugger/src/keys.c:49 +msgid "Run / Continue" +msgstr "Esegui / Continua" + +#: ../debugger/src/keys.c:50 ../debugger/src/btnpanel.c:101 +msgid "Stop" +msgstr "Ferma" + +#: ../debugger/src/keys.c:51 ../debugger/src/btnpanel.c:98 +msgid "Restart" +msgstr "Riavvia" + +#: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 +#: ../scope/src/scope.c:66 +msgid "Step into" +msgstr "Entra (step into)" + +#: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 +#: ../scope/src/scope.c:67 +msgid "Step over" +msgstr "Scavalca (step over)" + +#: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 +#: ../scope/src/scope.c:68 +msgid "Step out" +msgstr "Esci (step out)" + +#: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 +#: ../scope/src/scope.c:64 +msgid "Run to cursor" +msgstr "Esegui al cursore" + +#: ../debugger/src/keys.c:56 +msgid "Add / Remove breakpoint" +msgstr "Aggiungi / Rimuovi breakpoint" + +#: ../debugger/src/keys.c:57 +msgid "Jump to the current instruction" +msgstr "Salta all'istruzione corrente" + +#: ../debugger/src/watch_model.c:220 +msgid "Can't evaluate expression" +msgstr "Impossibile valutare l'espressione" + +#: ../debugger/src/callbacks.c:249 +msgid "To edit source files stop debugging session" +msgstr "Per modificare i file sorgenti interrompi la sessione di debug corrente" + +#: ../debugger/src/btnpanel.c:90 ../debugger/src/btnpanel.c:159 +msgid "Run" +msgstr "Esegui" + +#: ../debugger/src/btnpanel.c:132 +msgid "Settings" +msgstr "Impostazioni" + +#: ../debugger/src/btnpanel.c:136 +msgid "Two panel mode" +msgstr "Modalità due pannelli" + +#: ../debugger/src/btnpanel.c:154 +msgid "Continue" +msgstr "Continua" + +#: ../debugger/src/dconfig.c:675 +msgid "Save debug session data to a project" +msgstr "Salva i dati della sessione debug ad un progetto" + +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "Define formatter" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "Allinea automaticamente le backslash nelle define multi-linea" + +#. never search for more than this many chars +#: ../devhelp/src/dhp.h:38 +msgid "Documentation" +msgstr "Documentazione" + +#: ../devhelp/src/dhp.h:39 +msgid "Code" +msgstr "Codice" + +#: ../devhelp/src/dhp-object.c:387 +msgid "Search for 'Tag' Documentation in" +msgstr "Cerca nella documentazione per 'Tag'" + +#. i18n: Please don't translate "Devhelp" (it's marked as translatable +#. * for transliteration only) +#: ../devhelp/src/dhp-object.c:390 ../devhelp/src/dhp-object.c:503 +#: ../devhelp/devhelp/dh-window.c:727 ../devhelp/devhelp/dh-window.c:1034 +#: ../devhelp/devhelp/dh-window.c:1863 +msgid "Devhelp" +msgstr "Devhelp" + +#: ../devhelp/src/dhp-object.c:397 +msgid "Manual Pages" +msgstr "Pagine del manuale" + +#: ../devhelp/src/dhp-object.c:443 +msgid "Go back one page" +msgstr "Indieto di una pagina" + +#: ../devhelp/src/dhp-object.c:444 +msgid "Go forward one page" +msgstr "Avanti di una pagina" + +#: ../devhelp/src/dhp-object.c:445 +msgid "Zoom in" +msgstr "Zoom in" + +#: ../devhelp/src/dhp-object.c:446 +msgid "Zoom out" +msgstr "Zoom out" + +#: ../devhelp/src/dhp-object.c:497 ../devhelp/devhelp/dh-window.c:1152 +msgid "Search" +msgstr "Cerca" + +#: ../devhelp/src/dhp-object.c:1305 +#, c-format +msgid "Search for '%s' Documentation in" +msgstr "Cerca per '%s' nella documentazione" + +#: ../devhelp/src/dhp-plugin.c:42 +msgid "Devhelp Plugin" +msgstr "Devhelp Plugin" + +#: ../devhelp/src/dhp-plugin.c:43 +msgid "" +"Adds support for looking up documentation in Devhelp, manual pages, and " +"Google Code Search in the integrated viewer." +msgstr "" +"Aggiunge supporto per la ricerca nella documentazione in Devhelp, pagine" +"del manuale e Google Code Search in una finestra integrata." + +#: ../devhelp/src/dhp-plugin.c:119 +#, c-format +msgid "Unable to create config dir at '%s'" +msgstr "Impossibile creare la directory di configurazione '%s'" + +#: ../devhelp/src/dhp-plugin.c:134 +#, c-format +msgid "Unable to get default configuration: %s" +msgstr "Impossibile leggere la configurazione di default: %s" + +#: ../devhelp/src/dhp-plugin.c:142 +#, c-format +msgid "Unable to write default configuration: %s" +msgstr "Impossibile scrivere la configurazione di default: %s" + +#: ../devhelp/src/dhp-plugin.c:172 +msgid "Toggle sidebar contents tab" +msgstr "Mostra/Nascondi il tab contenuti nella barra laterale" + +#: ../devhelp/src/dhp-plugin.c:174 +msgid "Toggle sidebar search tab" +msgstr "Mostra/Nascondi il tab ricerca nella barra laterale" + +#: ../devhelp/src/dhp-plugin.c:176 +msgid "Toggle documentation tab" +msgstr "Mostra/Nascondi il tab dcoumentazione nella barra laterale" + +#: ../devhelp/src/dhp-plugin.c:178 +msgid "Activate all tabs" +msgstr "Attiva tutti i tab" + +#: ../devhelp/src/dhp-plugin.c:180 +msgid "Search for current tag in Devhelp" +msgstr "Cerca per il tag corrente in Devhelp" + +#: ../devhelp/src/dhp-plugin.c:184 +msgid "Search for current tag in Manual Pages" +msgstr "Cerca per il tag corrente nelle pagine del Manuale" + +#. i18n: Please don't translate "Devhelp". +#: ../devhelp/devhelp/dh-assistant.c:74 +msgid "Devhelp — Assistant" +msgstr "Devhelp — Assistente" + +#: ../devhelp/devhelp/dh-assistant-view.c:336 +msgid "Book:" +msgstr "Libro:" + +#. i18n: a documentation book +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 +msgid "Book" +msgstr "Libro" + +#. i18n: a "page" in a documentation book +#: ../devhelp/devhelp/dh-link.c:258 +msgid "Page" +msgstr "Pagina" + +#. i18n: a search hit in the documentation, could be a +#. * function, macro, struct, etc +#: ../devhelp/devhelp/dh-link.c:262 +msgid "Keyword" +msgstr "Parola chiave" + +#. i18n: in the programming language context, if you don't +#. * have an ESTABLISHED term for it, leave it +#. * untranslated. +#: ../devhelp/devhelp/dh-link.c:272 +msgid "Struct" +msgstr "Struct" + +#. i18n: in the programming language context, if you don't +#. * have an ESTABLISHED term for it, leave it +#. * untranslated. +#: ../devhelp/devhelp/dh-link.c:277 +msgid "Macro" +msgstr "Macro" + +#. i18n: in the programming language context, if you don't +#. * have an ESTABLISHED term for it, leave it +#. * untranslated. +#: ../devhelp/devhelp/dh-link.c:282 +msgid "Enum" +msgstr "Enum" + +#: ../devhelp/devhelp/dh-parser.c:91 ../devhelp/devhelp/dh-parser.c:185 +#: ../devhelp/devhelp/dh-parser.c:249 ../devhelp/devhelp/dh-parser.c:259 +#, c-format +msgid "Expected '%s', got '%s' at line %d, column %d" +msgstr "Previsto '%s', trovato '%s' alla linea %d, colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:108 +#, c-format +msgid "Invalid namespace '%s' at line %d, column %d" +msgstr "Namesapce invalido '%s' alla linea %d, colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:136 +#, c-format +msgid "" +"\"title\", \"name\" and \"link\" elements are required at line %d, column %d" +msgstr "" +"Gli elementi \"title\", \"name\" e \"link\" sono richiesti alla linea %d, colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:204 +#, c-format +msgid "" +"\"name\" and \"link\" elements are required inside on line %d, column " +"%d" +msgstr "" +"Gli elementi \"name\" e \"link\" sono richiesti all'interno di " +"alla linea %d, colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:284 +#, c-format +msgid "" +"\"name\" and \"link\" elements are required inside '%s' on line %d, column %d" +msgstr "" +"Gli elementi \"name\" e \"link\" sono richiesti dentro '%s' alla linea " +"%d, colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:297 +#, c-format +msgid "\"type\" element is required inside on line %d, column %d" +msgstr "L'elemento \"type\" è richiesto dentro alla linea %d, " +"colonna %d" + +#: ../devhelp/devhelp/dh-parser.c:500 +#, c-format +msgid "Cannot uncompress book '%s': %s" +msgstr "Impossibile decomprimere libro '%s': %s" + +#: ../devhelp/devhelp/dh-search.c:498 +msgid "All books" +msgstr "Tutti i libri" + +#: ../devhelp/devhelp/dh-search.c:620 +msgid "Search in:" +msgstr "Cerca in:" + +#: ../devhelp/devhelp/dh-window.c:98 +msgid "50%" +msgstr "50%" + +#: ../devhelp/devhelp/dh-window.c:99 +msgid "75%" +msgstr "75%" + +#: ../devhelp/devhelp/dh-window.c:100 +msgid "100%" +msgstr "100%" + +#: ../devhelp/devhelp/dh-window.c:101 +msgid "125%" +msgstr "125%" + +#: ../devhelp/devhelp/dh-window.c:102 +msgid "150%" +msgstr "150%" + +#: ../devhelp/devhelp/dh-window.c:103 +msgid "175%" +msgstr "175%" + +#: ../devhelp/devhelp/dh-window.c:104 +msgid "200%" +msgstr "200%" + +#: ../devhelp/devhelp/dh-window.c:105 +msgid "300%" +msgstr "300%" + +#: ../devhelp/devhelp/dh-window.c:106 +msgid "400%" +msgstr "400%" + +#: ../devhelp/devhelp/dh-window.c:722 +msgid "translator_credits" +msgstr "translator_credits" + +#: ../devhelp/devhelp/dh-window.c:729 +msgid "A developers' help browser for GNOME" +msgstr "Un help-browser degli sviluppatori per GNOME" + +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 +msgid "_File" +msgstr "_File" + +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 +msgid "_Edit" +msgstr "_Modifica" + +#: ../devhelp/devhelp/dh-window.c:761 +msgid "_View" +msgstr "V_isualizza" + +#: ../devhelp/devhelp/dh-window.c:762 +msgid "_Go" +msgstr "_Vai" + +#: ../devhelp/devhelp/dh-window.c:763 +msgid "_Help" +msgstr "_Aiuto" + +#. File menu +#: ../devhelp/devhelp/dh-window.c:766 +msgid "_New Window" +msgstr "Nuova _Finestra" + +#: ../devhelp/devhelp/dh-window.c:768 +msgid "New _Tab" +msgstr "Nuovo _Tab" + +#: ../devhelp/devhelp/dh-window.c:770 +msgid "_Print…" +msgstr "_Stampa" + +#: ../devhelp/devhelp/dh-window.c:782 ../devhelp/devhelp/eggfindbar.c:342 +msgid "Find Next" +msgstr "Trova successivo" + +#: ../devhelp/devhelp/dh-window.c:784 ../devhelp/devhelp/eggfindbar.c:329 +msgid "Find Previous" +msgstr "Trova precedente" + +#: ../devhelp/devhelp/dh-window.c:791 +msgid "Go to the previous page" +msgstr "Vai alla pagina precedente" + +#: ../devhelp/devhelp/dh-window.c:794 +msgid "Go to the next page" +msgstr "Vai alla pagina successiva" + +#: ../devhelp/devhelp/dh-window.c:797 +msgid "_Contents Tab" +msgstr "Tab _Contenuto" + +#: ../devhelp/devhelp/dh-window.c:800 +msgid "_Search Tab" +msgstr "Tab _Ricerca" + +#. View menu +#: ../devhelp/devhelp/dh-window.c:804 +msgid "_Larger Text" +msgstr "Testo più _grande" + +#: ../devhelp/devhelp/dh-window.c:805 +msgid "Increase the text size" +msgstr "Aumenta la dimensione del testo" + +#: ../devhelp/devhelp/dh-window.c:807 +msgid "S_maller Text" +msgstr "Testo più _piccolo" + +#: ../devhelp/devhelp/dh-window.c:808 +msgid "Decrease the text size" +msgstr "Diminuisce la dimensione del testo" + +#: ../devhelp/devhelp/dh-window.c:810 +msgid "_Normal Size" +msgstr "Dimensioni _normali" + +#: ../devhelp/devhelp/dh-window.c:811 +msgid "Use the normal text size" +msgstr "Usa la dimensione normale del testo" + +#: ../devhelp/devhelp/dh-window.c:820 +msgid "Leave fullscreen mode" +msgstr "Chiudi schermo intero" + +#: ../devhelp/devhelp/dh-window.c:827 +msgid "Display in full screen" +msgstr "Visualizza a schermo intero" + +#. Translators: This refers to text size +#: ../devhelp/devhelp/dh-window.c:947 +msgid "Larger" +msgstr "Più grande" + +#. Translators: This refers to text size +#: ../devhelp/devhelp/dh-window.c:950 +msgid "Smaller" +msgstr "Più piccolo" + +#. i18n: please don't translate +#. * "Devhelp", it's a name, not a +#. * generic word. +#: ../devhelp/devhelp/dh-window.c:1095 +msgid "About Devhelp" +msgstr "Informazioni su Devhelp" + +#: ../devhelp/devhelp/dh-window.c:1100 +msgid "Preferences…" +msgstr "Preferenze…" + +#: ../devhelp/devhelp/dh-window.c:1330 +msgid "Error opening the requested link." +msgstr "Errore nell'apertura del link richiesto." + +#: ../devhelp/devhelp/dh-window.c:1649 ../devhelp/devhelp/dh-window.c:1891 +msgid "Empty Page" +msgstr "Pagina vuota" + +#: ../devhelp/devhelp/eggfindbar.c:320 +msgid "Find:" +msgstr "Cerca:" + +#: ../devhelp/devhelp/eggfindbar.c:333 ../devhelp/devhelp/eggfindbar.c:336 +msgid "Find previous occurrence of the search string" +msgstr "Cerca occorrenze precedenti della stringa" + +#: ../devhelp/devhelp/eggfindbar.c:346 ../devhelp/devhelp/eggfindbar.c:349 +msgid "Find next occurrence of the search string" +msgstr "Cerca occorrenze successive della stringa" + +#: ../devhelp/devhelp/eggfindbar.c:358 +msgid "C_ase Sensitive" +msgstr "C_ase Sensitive" + +#: ../devhelp/devhelp/eggfindbar.c:362 ../devhelp/devhelp/eggfindbar.c:365 +msgid "Toggle case sensitive search" +msgstr "Commuta la ricerca case-sensitive" + +#. All plugins must set name, description, version and author. +#: ../geanydoc/src/geanydoc.c:50 ../geanydoc/src/geanydoc.c:347 +msgid "Doc" +msgstr "Doc" + +#: ../geanydoc/src/geanydoc.c:50 +msgid "Call documentation viewer on current symbol." +msgstr "Apri visualizzatore documentazione sul simbolo corrente." + +#: ../geanydoc/src/geanydoc.c:170 ../geanyvc/src/geanyvc.c:416 +msgid "Could not parse the output of command" +msgstr "Impossibile analizzare l'output del comando" + +#: ../geanydoc/src/geanydoc.c:357 +msgid "Put output in buffer" +msgstr "Metti l'output nel buffer" + +#: ../geanydoc/src/geanydoc.c:369 +msgid "Command 0:" +msgstr "Comando 0:" + +#: ../geanydoc/src/geanydoc.c:375 +msgid "Command 1:" +msgstr "Comando 1:" + +#: ../geanydoc/src/geanydoc.c:393 +msgid "%w will be replaced with current word\n" +msgstr "%w sarà sostituito dalla parola corrente\n" + +#: ../geanydoc/src/geanydoc.c:440 +msgid "Document current word" +msgstr "Parola corrente del documento" + +#: ../geanydoc/src/geanydoc.c:441 +msgid "Document interactive" +msgstr "Documento interattivo" + +#: ../geanyextrasel/src/extrasel.c:34 +msgid "Extra Selection" +msgstr "Selezione extra" + +#: ../geanyextrasel/src/extrasel.c:34 +msgid "Column mode, select to line / brace / anchor." +msgstr "Modalità Colonna, selezione linea / parentesi / ancora." + +#: ../geanyextrasel/src/extrasel.c:502 +msgid "E_xtra Selection" +msgstr "Selezione e_xtra" + +#: ../geanyextrasel/src/extrasel.c:509 +msgid "_Column Mode" +msgstr "Modalità _Colonna" + +#: ../geanyextrasel/src/extrasel.c:514 +msgid "Column mode" +msgstr "Modalità Colonna" + +#: ../geanyextrasel/src/extrasel.c:516 +msgid "Select to _Line" +msgstr "Seleziona alla _linea" + +#: ../geanyextrasel/src/extrasel.c:520 +msgid "Select to line" +msgstr "Seleziona alla linea" + +#: ../geanyextrasel/src/extrasel.c:522 +msgid "Select to Matching _Brace" +msgstr "Seleziona alla _parentesi corrispondente" + +#: ../geanyextrasel/src/extrasel.c:526 +msgid "Select to matching brace" +msgstr "Seleziona alla parentesi corrispondente" + +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "_Commuta Flusso/Rettangolare" + +#: ../geanyextrasel/src/extrasel.c:532 +msgid "Convert selection" +msgstr "Converti selezione" + +#: ../geanyextrasel/src/extrasel.c:537 +msgid "_Set Anchor" +msgstr "Impo_sta Àncora" + +#: ../geanyextrasel/src/extrasel.c:541 +msgid "Set anchor" +msgstr "Imposta Àncora" + +#: ../geanyextrasel/src/extrasel.c:543 +msgid "Select to _Anchor" +msgstr "Seleziona all'_Àncora" + +#: ../geanyextrasel/src/extrasel.c:547 +msgid "Select to anchor" +msgstr "Seleziona all'Àncora" + +#: ../geanyextrasel/src/extrasel.c:549 +msgid "_Rectangle Select to Anchor" +msgstr "Selezione _Rettangolare all'Ancora" + +#: ../geanyextrasel/src/extrasel.c:554 +msgid "Rectangle select to anchor" +msgstr "Selezione rettangolare all'Àncora" + +#: ../geanygendoc/src/ggd-file-type-loader.c:117 +msgid "boolean value" +msgstr "valore booleano" + +#: ../geanygendoc/src/ggd-file-type-loader.c:130 +#, c-format +msgid "invalid boolean value \"%s\"" +msgstr "valore booleano non valido \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:157 +#, c-format +msgid "invalid template: %s" +msgstr "template non valido: %s" + +#: ../geanygendoc/src/ggd-file-type-loader.c:178 +msgid "position name" +msgstr "nome posizione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:185 +#, c-format +msgid "invalid position \"%s\"" +msgstr "posizione non valida \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:204 +msgid "policy name" +msgstr "nome policy" + +#: ../geanygendoc/src/ggd-file-type-loader.c:211 +#, c-format +msgid "invalid policy \"%s\"" +msgstr "policy non valida \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:230 +msgid "merge policy" +msgstr "unisci polizza" + +#: ../geanygendoc/src/ggd-file-type-loader.c:237 +#, c-format +msgid "invalid merge policy \"%s\"" +msgstr "polizza di unione non valida \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:259 +msgid "type" +msgstr "tipo" + +#: ../geanygendoc/src/ggd-file-type-loader.c:266 +#, c-format +msgid "invalid type \"%s\"" +msgstr "tipo non valido \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:328 +#: ../geanygendoc/src/ggd-file-type-loader.c:779 +#, c-format +msgid "invalid setting name \"%s\"" +msgstr "nome impostazione non valida \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:349 +#: ../geanygendoc/src/ggd-file-type-loader.c:360 +#: ../geanygendoc/src/ggd-file-type-loader.c:385 +msgid "setting identifier" +msgstr "identificatore impostazione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:431 +#, c-format +msgid "Unknown type \"%s\", is it a typo?" +msgstr "Tipo \"%s\" sconosciuto, è un tipo?" + +#: ../geanygendoc/src/ggd-file-type-loader.c:446 +#: ../geanygendoc/src/ggd-file-type-loader.c:490 +#: ../geanygendoc/src/ggd-file-type-loader.c:502 +#: ../geanygendoc/src/ggd-file-type-loader.c:540 +msgid "match identifier" +msgstr "identificatore match" + +#: ../geanygendoc/src/ggd-file-type-loader.c:454 +#, c-format +msgid "match identifier is empty" +msgstr "l'identificatore match è vuoto" + +#: ../geanygendoc/src/ggd-file-type-loader.c:472 +msgid "documentation type identifier" +msgstr "identificatore tipo documentazione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:576 +#: ../geanygendoc/src/ggd-file-type-loader.c:588 +#: ../geanygendoc/src/ggd-file-type-loader.c:610 +msgid "documentation type" +msgstr "tipo documentazione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:645 +#, c-format +msgid "invalid regular expression: %s" +msgstr "regular-expression non valida: %s" + +#: ../geanygendoc/src/ggd-file-type-loader.c:702 +#, c-format +msgid "invalid environment description: %s" +msgstr "descrizione ambiente non valida: %s" + +#: ../geanygendoc/src/ggd-file-type-loader.c:739 +#: ../geanygendoc/src/ggd-file-type-loader.c:750 +#: ../geanygendoc/src/ggd-file-type-loader.c:789 +msgid "setting" +msgstr "impostazione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:817 +msgid "section name" +msgstr "nome sezione" + +#: ../geanygendoc/src/ggd-file-type-loader.c:828 +#, c-format +msgid "duplicated section \"%s\"" +msgstr "sezione duplicata \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:837 +#, c-format +msgid "invalid section name \"%s\"" +msgstr "nome sezione non valido \"%s\"" + +#: ../geanygendoc/src/ggd-file-type-loader.c:850 +#: ../geanygendoc/src/ggd-file-type-loader.c:902 +#, c-format +msgid "input is empty" +msgstr "l'input è vuoto" + +#: ../geanygendoc/src/ggd-file-type-loader.c:864 +#, c-format +msgid "Parser warning: %s:%u:%u: %s" +msgstr "Parser warning: %s:%u:%u: %s" + +#: ../geanygendoc/src/ggd-file-type-loader.c:867 +#, c-format +msgid "Parser error: %s:%u:%u: %s" +msgstr "Parser error: %s:%u:%u: %s" + +#: ../geanygendoc/src/ggd-file-type-loader.c:871 +#, c-format +msgid "%s:%u:%u: %s" +msgstr "%s:%u:%u: %s" + +#: ../geanygendoc/src/ggd-tag-utils.c:370 +msgid "Invalid tag" +msgstr "Tag non valido" + +#: ../geanygendoc/src/ggd-file-type-manager.c:181 +#, c-format +msgid "File type configuration file for language \"%s\" not found: %s" +msgstr "File configurazionazione tipo per il linguaggio \"%s\" non trovato: %s" + +#: ../geanygendoc/src/ggd-file-type-manager.c:191 +#, c-format +msgid "Failed to load file type \"%s\" from file \"%s\": %s" +msgstr "Impossibile caricare il file \"%s\" dal file \"%s\": %s" + +#: ../geanygendoc/src/ggd-plugin.c:57 +msgid "Documentation Generator" +msgstr "Documentation Generator" + +#: ../geanygendoc/src/ggd-plugin.c:58 +msgid "Generates documentation basis from source code" +msgstr "Genera la documentazione basandosi sul codice" + +#: ../geanygendoc/src/ggd-plugin.c:224 +#, c-format +msgid "Failed to load configuration: %s" +msgstr "Impossibile caricare la configurazione: %s" + +#: ../geanygendoc/src/ggd-plugin.c:245 +#, c-format +msgid "Failed to save configuration: %s" +msgstr "Impossibile salvare la configurazione: %s" + +#: ../geanygendoc/src/ggd-plugin.c:318 +#, c-format +msgid "Failed to find configuration file for file type \"%s\": %s" +msgstr "Impossibile trovare un file di configurazione per il tipo \"%s\": %s" + +#: ../geanygendoc/src/ggd-plugin.c:330 +msgid "" +"# Configuration for this file type doesn't exist yet.\n" +"# To create it, just write it in this file and save it. For the description\n" +"# of the syntax of this file, please refer to the manual.\n" +msgstr "" +"# La configurazione per questo tipo di fine non esiste ancora.\n" +"# Per crearla, scrivila in questo file e salvata. Per la descrizione\n" +"# della sintassi di questo file, controlla il manuale.\n" + +#: ../geanygendoc/src/ggd-plugin.c:342 +#, c-format +msgid "Failed to load file \"%s\": %s" +msgstr "Impossibile caricare il file \"%s\": %s" + +#: ../geanygendoc/src/ggd-plugin.c:415 ../geanygendoc/src/ggd-plugin.c:426 +msgid "Insert Documentation Comment" +msgstr "Inserisci commento di documentazione" + +#: ../geanygendoc/src/ggd-plugin.c:480 +msgid "_Document Current Symbol" +msgstr "Inserisci _documentazione al simbolo corrente" + +#: ../geanygendoc/src/ggd-plugin.c:481 +msgid "Generate documentation for the current symbol" +msgstr "Genera documentazione per il simbolo corrente" + +#: ../geanygendoc/src/ggd-plugin.c:487 +msgid "Document _All Symbols" +msgstr "Documenta _tutti i simboli" + +#: ../geanygendoc/src/ggd-plugin.c:488 +msgid "Generate documentation for all symbols in the current document" +msgstr "Genera la documentazione per tutti i simboli nel documento corrente" + +#: ../geanygendoc/src/ggd-plugin.c:498 +msgid "_Reload Configuration Files" +msgstr "_Ricarica il file di configurazione" + +#: ../geanygendoc/src/ggd-plugin.c:499 +msgid "Force reloading of the configuration files" +msgstr "Forza il reloading dei file di configurazione" + +#: ../geanygendoc/src/ggd-plugin.c:504 +msgid "_Edit Current Language Configuration" +msgstr "_Modifica la configurazione del linguaggio corrente" + +#: ../geanygendoc/src/ggd-plugin.c:505 +msgid "Open the current language configuration file for editing" +msgstr "Apri la configurazione del linguaggio corrente per la modifica" + +#: ../geanygendoc/src/ggd-plugin.c:515 +msgid "Open _Manual" +msgstr "Apri _manuale" + +#: ../geanygendoc/src/ggd-plugin.c:516 +msgid "Open the manual in a browser" +msgstr "Apri il manuale nel browser" + +#. build tools menu item +#: ../geanygendoc/src/ggd-plugin.c:520 +msgid "_Documentation Generator" +msgstr "_Documentation Generator" + +#. General +#: ../geanygendoc/src/ggd-plugin.c:619 +msgid "General" +msgstr "Generale" + +#. auto-save +#: ../geanygendoc/src/ggd-plugin.c:624 +msgid "_Save file before generating documentation" +msgstr "_Salva il file prima di generare la documentazione" + +#: ../geanygendoc/src/ggd-plugin.c:627 +msgid "" +"Whether the current document should be saved to disc before generating the " +"documentation. This is a technical detail, but it is currently needed to " +"have an up-to-date tag list. If you disable this option and ask for " +"documentation generation on a modified document, the behavior may be " +"surprising since the comment will be generated for the last saved state of " +"this document and not the current one." +msgstr "" +"Salva il documento corrente su disco prima di generare la documentazione." +"E' un dettaglio tecnico, ma è attualmente richiesto per avere una lista tag" +"corretta. Se disabiliti questa opzione e avvii la generazione della documentazione" +"su un documento modificato, il comportamento può sorprendere dato che il commento" +"sarà generato per l'ultimo stato salvato di questo documento e non il corrente." + +#. indent +#: ../geanygendoc/src/ggd-plugin.c:637 +msgid "_Indent inserted documentation" +msgstr "_Indenta la documentazione inserita" + +#: ../geanygendoc/src/ggd-plugin.c:639 +msgid "" +"Whether the inserted documentation should be indented to fit the indentation " +"at the insertion position." +msgstr "" +"Indenta la documentazione inserita per raggiungere l'indentazione" +"alla posizione di inserimento." + +#. Documentation type +#: ../geanygendoc/src/ggd-plugin.c:646 +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:144 +msgid "Documentation type" +msgstr "Tipo di documentazione" + +#: ../geanygendoc/src/ggd-plugin.c:656 +msgid "" +"Choose the documentation type to use with each file type. The special " +"language \"All\" on top of the list is used to choose the default " +"documentation type, used for all languages that haven't one set." +msgstr "" +"Scegli il tipo di documentazione per usarlo con ogni tipo di file. " +"Il linguaggio speciale \"Tutti\" in cima alla lista è usato per scegliere " +"il tipo di documentazione di default, utilizzato da tutti i linguaggi " +"che non ne hanno uno." + +#. Environ editor +#: ../geanygendoc/src/ggd-plugin.c:662 +msgid "Global environment" +msgstr "Ambiente globale" + +#: ../geanygendoc/src/ggd-plugin.c:664 +msgid "" +"Global environment overrides and additions. This environment will be merged " +"with the file-type-specific ones." +msgstr "" +"Ambiente globale sovrascrive e aggiunge. Questo ambiente sarà unito con " +"quello specifico del tipo di file." + +#: ../geanygendoc/src/ggd-utils.c:184 ../geanygendoc/src/ggd-utils.c:195 +#, c-format +msgid "File \"%s\" exists but is not a regular file" +msgstr "Il file \"%s\" esiste ma non è un file regolare" + +#: ../geanygendoc/src/ggd-utils.c:204 +#, c-format +msgid "%s: no such file or directory" +msgstr "%s: impossibile trovare file o directory" + +#: ../geanygendoc/src/ggd.c:85 +#, c-format +msgid "Failed to resize memory output stream" +msgstr "Impossibile ridimensionare la memoria di output stream" + +#: ../geanygendoc/src/ggd.c:114 +#, c-format +msgid "" +"Argument parsing regular expression did not match (argument list was: \"%s\")" +msgstr "" +"Il parsing regular-expression dell'argomento non corrisponde (la lista " +"argomenti era: \"%s\")" + +#: ../geanygendoc/src/ggd.c:248 +#, c-format +msgid "Failed to add global environment, skipping: %s" +msgstr "Impossibile aggiungere un ambiente globale, salto: %s" + +#: ../geanygendoc/src/ggd.c:254 +#, c-format +msgid "Failed to build comment: %s" +msgstr "Impossibile generare il commento: %s" + +#: ../geanygendoc/src/ggd.c:432 +#, c-format +msgid "Documentation type \"%s\" does not exist for language \"%s\"." +msgstr "Il tipo di documentazione \"%s\" non esiste per il linguaggio \"%s\"." + +#: ../geanygendoc/src/ggd.c:487 +#, c-format +msgid "No setting applies to symbol \"%s\" of type \"%s\" at line %lu." +msgstr "Nessuna impostazione si applica al simbolo \"%s\" del tipo \"%s\" " +"alla linea %lu." + +#: ../geanygendoc/src/ggd.c:533 +#, c-format +msgid "No valid tag at line %d." +msgstr "Tag non valido alla linea %d." + +#: ../geanygendoc/src/ggd.c:582 +msgid "No tags in the document" +msgstr "Nessun tag nel documento" + +#: ../geanygendoc/src/ggd-options.c:326 +msgid "Unknown option" +msgstr "Opzione non conosciuta" + +#: ../geanygendoc/src/ggd-options.c:335 +msgid "" +"Invalid option or proxy: either the proxy's property or the option type is " +"incompatible." +msgstr "" +"Opzione o proxy non valido: o la proprietà del proxy o il tipo dell'opzione " +"sono incompatibili" + +#: ../geanygendoc/src/ggd-options.c:512 +#, c-format +msgid "Unknown value type for keyfile entry %s::%s" +msgstr "value-type non conosciuto per il file chiave %s::%s" + +#: ../geanygendoc/src/ggd-options.c:516 +#, c-format +msgid "Error retrieving keyfile entry %s::%s: %s" +msgstr "Impossibile ottenere il file chiave %s::%s: %s" + +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:135 +msgid "Language" +msgstr "Linguaggio" + +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:155 +msgid "_Change associated documentation type" +msgstr "_Cambia associazione tipo documentazione" + +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:163 +msgid "_Disassociate documentation type" +msgstr "_Disassocia tipo documentazione" + +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:194 +msgid "All" +msgstr "Tutti" + +#: ../geanygendoc/src/ggd-widget-doctype-selector.c:195 +msgid "Default documentation type for languages that does not have one set" +msgstr "Tipo di documentazione di default per i linguaggi che non ne hanno uno" + +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 +msgid "Insert Numbers" +msgstr "Inserisci numeri" + +#: ../geanyinsertnum/src/insertnum.c:44 +msgid "Insert/Fill columns with numbers." +msgstr "Inserisci/Riempi colonne con numeri." + +#: ../geanyinsertnum/src/insertnum.c:146 +msgid "Counting..." +msgstr "Conteggio..." + +#: ../geanyinsertnum/src/insertnum.c:194 +msgid "Preparing..." +msgstr "Preparazione..." + +#: ../geanyinsertnum/src/insertnum.c:200 +msgid "Inserting..." +msgstr "Inserimento..." + +#: ../geanyinsertnum/src/insertnum.c:333 +msgid "For base 11 and above" +msgstr "Per base 11 e superiori" + +#: ../geanyinsertnum/src/insertnum.c:353 +msgid "_Start:" +msgstr "_Avvia:" + +#: ../geanyinsertnum/src/insertnum.c:358 +msgid "S_tep:" +msgstr "S_tep:" + +#: ../geanyinsertnum/src/insertnum.c:364 +msgid "_Base:" +msgstr "_Base:" + +#: ../geanyinsertnum/src/insertnum.c:380 +msgid "Letters:" +msgstr "Lettere:" + +#: ../geanyinsertnum/src/insertnum.c:383 +msgid "_Upper" +msgstr "_Alto" + +#: ../geanyinsertnum/src/insertnum.c:388 +msgid "_Lower" +msgstr "_Basso" + +#: ../geanyinsertnum/src/insertnum.c:393 +msgid "Base _prefix" +msgstr "_Prefisso base" + +#: ../geanyinsertnum/src/insertnum.c:395 +msgid "0 for octal, 0x for hex, + for positive decimal" +msgstr "0 per ottale, 0x per esadecimale, + per decimali positivi" + +#: ../geanyinsertnum/src/insertnum.c:397 +msgid "Padding:" +msgstr "Padding:" + +#: ../geanyinsertnum/src/insertnum.c:399 +msgid "Sp_ace" +msgstr "Sp_azio" + +#: ../geanyinsertnum/src/insertnum.c:402 +msgid "_Zero" +msgstr "_Zero" + +#: ../geanyinsertnum/src/insertnum.c:477 +msgid "Insert _Numbers" +msgstr "Inserisci _Numeri" + +#: ../geanylatex/src/latexenvironments.c:25 +msgid "Environments" +msgstr "Ambienti" + +#: ../geanylatex/src/latexenvironments.c:26 +msgid "Formating" +msgstr "Formattazione" + +#: ../geanylatex/src/latexenvironments.c:27 +msgid "Document Structure" +msgstr "Struttura documento" + +#: ../geanylatex/src/latexenvironments.c:28 +msgid "Lists" +msgstr "Liste" + +#: ../geanylatex/src/latexenvironments.c:29 +msgid "Math" +msgstr "Matematica" + +#: ../geanylatex/src/latexenvironments.c:194 +msgid "Insert Environment" +msgstr "Inserisci Ambiente" + +#: ../geanylatex/src/latexenvironments.c:208 +msgid "Environment:" +msgstr "Ambiente:" + +#: ../geanylatex/src/latexutils.c:87 +#, c-format +msgid "" +"Could not determine where to insert package: %s\n" +"Please try insert package manually" +msgstr "" +"Impossibile determinare dove inserire il package: %s\n" +"Prova a inserire il package manualmente" + +#: ../geanylatex/src/latexutils.c:89 +#, c-format +msgid "Could not determine where to insert package: %s" +msgstr "Impossibile determinare dove inserire il package: %s" + +#: ../geanylatex/src/bibtexlabels.c:27 +msgid "Article (@Article)" +msgstr "Articolo (@Article)" + +#: ../geanylatex/src/bibtexlabels.c:28 +msgid "Book (@Book)" +msgstr "Libro (@Book)" + +#: ../geanylatex/src/bibtexlabels.c:29 +msgid "Booklet (@Booklet)" +msgstr "Libretto (@Booklet)" + +#: ../geanylatex/src/bibtexlabels.c:30 +msgid "Conference (@Conference)" +msgstr "Conferenza (@Conference)" + +#: ../geanylatex/src/bibtexlabels.c:31 +msgid "Inbook (@Inbook)" +msgstr "Inbook (@Inbook)" + +#: ../geanylatex/src/bibtexlabels.c:32 +msgid "Incollection (@Incollection)" +msgstr "Incollection (@Incollection)" + +#: ../geanylatex/src/bibtexlabels.c:33 +msgid "Inproceedings (@Inproceedings)" +msgstr "Inproceedings (@Inproceedings)" + +#: ../geanylatex/src/bibtexlabels.c:34 +msgid "Manual (@Manual)" +msgstr "Manuale (@Manual)" + +#: ../geanylatex/src/bibtexlabels.c:35 +msgid "Mastersthesis (@Mastersthesis)" +msgstr "Mastersthesis (@Mastersthesis)" + +#: ../geanylatex/src/bibtexlabels.c:36 +msgid "Misc (@Misc)" +msgstr "Misc (@Misc)" + +#: ../geanylatex/src/bibtexlabels.c:37 +msgid "PhdThesis (@PhdThesis)" +msgstr "PhdThesis (@PhdThesis)" + +#: ../geanylatex/src/bibtexlabels.c:38 +msgid "Proceedings (@Proceedings)" +msgstr "Proceedings (@Proceedings)" + +#: ../geanylatex/src/bibtexlabels.c:39 +msgid "Techreport (@Techreport)" +msgstr "Report tecnico (@Techreport)" + +#: ../geanylatex/src/bibtexlabels.c:40 +msgid "Unpublished (@Unpublished)" +msgstr "Unpublished (@Unpublished)" + +#: ../geanylatex/src/bibtexlabels.c:47 +msgid "Annote" +msgstr "Annotazione" + +#: ../geanylatex/src/bibtexlabels.c:48 +msgid "Author" +msgstr "Autore" + +#: ../geanylatex/src/bibtexlabels.c:49 +msgid "Booktitle" +msgstr "Titolo libro" + +#: ../geanylatex/src/bibtexlabels.c:50 +msgid "Chapter" +msgstr "Capitolo" + +#: ../geanylatex/src/bibtexlabels.c:51 +msgid "Crossref" +msgstr "Crossref" + +#: ../geanylatex/src/bibtexlabels.c:52 +msgid "Edition" +msgstr "Edizione" + +#: ../geanylatex/src/bibtexlabels.c:53 +msgid "Editor" +msgstr "Editor" + +#: ../geanylatex/src/bibtexlabels.c:54 +msgid "E-print" +msgstr "E-print" + +#: ../geanylatex/src/bibtexlabels.c:55 +msgid "HowPublished" +msgstr "HowPublished" + +#: ../geanylatex/src/bibtexlabels.c:56 +msgid "Institution" +msgstr "Istitutzione" + +#: ../geanylatex/src/bibtexlabels.c:57 +msgid "Journal" +msgstr "Giornale" + +#: ../geanylatex/src/bibtexlabels.c:58 +msgid "Key" +msgstr "Chiave" + +#: ../geanylatex/src/bibtexlabels.c:59 +msgid "Month" +msgstr "Mese" + +#: ../geanylatex/src/bibtexlabels.c:60 +msgid "Note" +msgstr "Nota" + +#: ../geanylatex/src/bibtexlabels.c:61 +msgid "Number" +msgstr "Numbero" + +#: ../geanylatex/src/bibtexlabels.c:62 +msgid "Organization" +msgstr "Organizzazione" + +#: ../geanylatex/src/bibtexlabels.c:63 +msgid "Pages" +msgstr "Pagine" + +#: ../geanylatex/src/bibtexlabels.c:64 +msgid "Publisher" +msgstr "Editore" + +#: ../geanylatex/src/bibtexlabels.c:65 +msgid "School" +msgstr "Scuola" + +#: ../geanylatex/src/bibtexlabels.c:66 +msgid "Series" +msgstr "Serie" + +#: ../geanylatex/src/bibtexlabels.c:67 +msgid "Title" +msgstr "Titolo" + +#: ../geanylatex/src/bibtexlabels.c:69 +msgid "URL" +msgstr "URL" + +#: ../geanylatex/src/bibtexlabels.c:70 +msgid "Volume" +msgstr "Volume" + +#: ../geanylatex/src/bibtexlabels.c:71 +msgid "Year" +msgstr "Anno" + +#: ../geanylatex/src/bibtexlabels.c:103 +msgid "Address of publisher" +msgstr "Indirizzo dell'editore" + +#: ../geanylatex/src/bibtexlabels.c:104 +msgid "Annotation for annotated bibliography styles" +msgstr "Annotazione per stili bibliografici" + +#: ../geanylatex/src/bibtexlabels.c:105 +msgid "Name(s) of the author(s), separated by 'and' if more than one" +msgstr "Nome/i dell'autore/i, separati da 'e' se più di uno" + +#: ../geanylatex/src/bibtexlabels.c:106 +msgid "Title of the book, if only part of it is being cited" +msgstr "Titolo del libro, solo se una parte di esso viene citata" + +#: ../geanylatex/src/bibtexlabels.c:107 +msgid "Chapter number" +msgstr "Numero capitolo" + +#: ../geanylatex/src/bibtexlabels.c:108 +msgid "Citation key of the cross-referenced entry" +msgstr "Chiave di citazione della voce cross-referenced" + +#: ../geanylatex/src/bibtexlabels.c:109 +msgid "Edition of the book (such as \"first\" or \"second\")" +msgstr "Edizione del libro (come \"prima\" o \"seconda\")" + +#: ../geanylatex/src/bibtexlabels.c:110 +msgid "Name(s) of the editor(s), separated by 'and' if more than one" +msgstr "Nome/i dell'editore/i, separati da 'e' se più di uno" + +#: ../geanylatex/src/bibtexlabels.c:111 +msgid "Specification of electronic publication" +msgstr "Specifica di pubblicazione elettronica" + +#: ../geanylatex/src/bibtexlabels.c:112 +msgid "Publishing method if the method is nonstandard" +msgstr "Metodo di pubblicazione se il metodo non è standard" + +#: ../geanylatex/src/bibtexlabels.c:113 +msgid "Institution that was involved in the publishing" +msgstr "Istitutzione che è coinvolta nella pubblicazione" + +#: ../geanylatex/src/bibtexlabels.c:114 +msgid "Journal or magazine in which the work was published" +msgstr "Giornale o rivista in cui il lavoro sarà pubblicata" + +#: ../geanylatex/src/bibtexlabels.c:115 +msgid "" +"Hidden field used for specifying or overriding the alphabetical order of " +"entries" +msgstr "" +"Campi nascosti usati per specificare o sovrascrivere l'ordine alfabetico " +"delle voci" + +#: ../geanylatex/src/bibtexlabels.c:116 +msgid "Month of publication or creation if unpublished" +msgstr "" +"Mese di pubblicazione o, se non pubblicato, di creazione" + +#: ../geanylatex/src/bibtexlabels.c:117 +msgid "Miscellaneous extra information" +msgstr "Altre informazione extra" + +#: ../geanylatex/src/bibtexlabels.c:118 +msgid "Number of journal, magazine, or tech-report" +msgstr "Numero del giornale, rivista o report tecnico" + +#: ../geanylatex/src/bibtexlabels.c:119 +msgid "Sponsor of the conference" +msgstr "Sponsor della conferenza" + +#: ../geanylatex/src/bibtexlabels.c:120 +msgid "Page numbers separated by commas or double-hyphens" +msgstr "Numeri di pagine separati da virgole o doppi trattini" + +#: ../geanylatex/src/bibtexlabels.c:121 +msgid "Name of publisher" +msgstr "Nome dell'editore" + +#: ../geanylatex/src/bibtexlabels.c:122 +msgid "School where thesis was written" +msgstr "Scuola dove la tesi è stata scritta." + +#: ../geanylatex/src/bibtexlabels.c:123 +msgid "Series of books in which the book was published" +msgstr "Serie di libri in cui il libro fa parte" + +#: ../geanylatex/src/bibtexlabels.c:124 +msgid "Title of the work" +msgstr "Titolo del lavoro" + +#: ../geanylatex/src/bibtexlabels.c:125 +msgid "Type of technical report" +msgstr "Tipo di report tecnico" + +#: ../geanylatex/src/bibtexlabels.c:126 +msgid "Internet address" +msgstr "Indirizzo Internet" + +#: ../geanylatex/src/bibtexlabels.c:127 +msgid "Number of the volume" +msgstr "Numero del volume" + +#: ../geanylatex/src/bibtexlabels.c:128 +msgid "Year of publication or creation if unpublished" +msgstr "Anno di pubblicazione, o se non pubblicato, di creazione" + +#: ../geanylatex/src/geanylatex.c:41 +msgid "GeanyLaTeX" +msgstr "GeanyLaTeX" + +#: ../geanylatex/src/geanylatex.c:42 +msgid "Plugin to provide better LaTeX support" +msgstr "Plugin per fornire un supporto migliore di LaTeX" + +#: ../geanylatex/src/geanylatex.c:116 +msgid "Runs LaTeX wizard" +msgstr "Esegui wizard LaTeX" + +#: ../geanylatex/src/geanylatex.c:117 +msgid "Marks selected text as italic" +msgstr "Imposta il testo selezionato come corsivo" + +#: ../geanylatex/src/geanylatex.c:118 +msgid "Marks selected text as bold" +msgstr "Imposta ilt esto selezionato come grassetto" + +#: ../geanylatex/src/geanylatex.c:119 +msgid "Underlines selected text" +msgstr "Sottolinea il testo selezionato" + +#: ../geanylatex/src/geanylatex.c:120 ../geanylatex/src/formatpatterns.c:45 +msgid "Centered" +msgstr "Centrato" + +#: ../geanylatex/src/geanylatex.c:121 ../geanylatex/src/formatpatterns.c:46 +msgid "Left side oriented" +msgstr "A sinistra" + +#: ../geanylatex/src/geanylatex.c:122 ../geanylatex/src/formatpatterns.c:47 +msgid "Right side oriented" +msgstr "A destra" + +#: ../geanylatex/src/geanylatex.c:298 +msgid "Use KOMA script by default" +msgstr "Utilizza lo script KOMA di default" + +#: ../geanylatex/src/geanylatex.c:300 +msgid "Show extra plugin toolbar" +msgstr "Visualizza una extra-toolbar per il plugin" + +#: ../geanylatex/src/geanylatex.c:302 +msgid "Capitalize sentence on typing" +msgstr "Rendi maiuscola la prima lettera mentre scrivi" + +#: ../geanylatex/src/geanylatex.c:304 +msgid "Add a wizard icon to Geany's main toolbar" +msgstr "Aggiungi un'icona wizard al toolbar principale di Geany" + +#: ../geanylatex/src/geanylatex.c:306 +msgid "Lower selection when formating smallcaps (\\textsc{})" +msgstr "" +"Passare la selezione in minuscono quando è formattata in maiuscoletto " +"(\\textsc{})" + +#: ../geanylatex/src/geanylatex.c:310 +#, fuzzy +msgid "Don't care about this inside plugin" +msgstr "Non interessarti di questo per il plugin" + +#: ../geanylatex/src/geanylatex.c:312 +msgid "Always perform autocompletion on LaTeX" +msgstr "Esegui sempre l'autocompletamento in LaTeX" + +#: ../geanylatex/src/geanylatex.c:325 +msgid "Modus of autocompletion" +msgstr "Modo di autocompletamento" + +#: ../geanylatex/src/geanylatex.c:809 +msgid "Insert Label" +msgstr "Inserisci etichetta" + +#: ../geanylatex/src/geanylatex.c:811 +msgid "Label name:" +msgstr "Nome etichetta" + +#: ../geanylatex/src/geanylatex.c:833 +msgid "Insert Command" +msgstr "Inserisci comando" + +#: ../geanylatex/src/geanylatex.c:835 +msgid "Command name:" +msgstr "Nome comando:" + +#: ../geanylatex/src/geanylatex.c:878 +msgid "Insert Reference" +msgstr "Inserisci Riferimento" + +#: ../geanylatex/src/geanylatex.c:891 +msgid "Reference name:" +msgstr "Nome Riferimento:" + +#: ../geanylatex/src/geanylatex.c:916 +msgid "_Standard Reference" +msgstr "Riferimento _Standard" + +#: ../geanylatex/src/geanylatex.c:921 +msgid "_Page Reference" +msgstr "Riferimento _Pagina" + +#: ../geanylatex/src/geanylatex.c:926 +msgid "_Add both" +msgstr "_Aggiungi entrambi" + +#: ../geanylatex/src/geanylatex.c:1123 +msgid "More" +msgstr "More" + +#: ../geanylatex/src/geanylatex.c:1179 +msgid "Add additional package" +msgstr "Aggiungi package aggiuntivo" + +#: ../geanylatex/src/geanylatex.c:1192 +msgid "Package name:" +msgstr "Nome package:" + +#: ../geanylatex/src/geanylatex.c:1195 +msgid "Package options:" +msgstr "Opzioni package:" + +#: ../geanylatex/src/geanylatex.c:1243 +msgid "Insert BibTeX Reference" +msgstr "Inserisci riferimento BibTeX" + +#: ../geanylatex/src/geanylatex.c:1256 +msgid "BibTeX reference name:" +msgstr "Nome riferimento BibTeX:" + +#: ../geanylatex/src/geanylatex.c:1679 +msgid "Dear Sir or Madame" +msgstr "Gentile Signore o Signora" + +#: ../geanylatex/src/geanylatex.c:1680 +msgid "With kind regards" +msgstr "Cordiali saluti" + +#: ../geanylatex/src/geanylatex.c:1688 +msgid "No template assigned. Aborting" +msgstr "Nessun template assignato. Aborting" + +#. Building the wizard-dialog and showing it +#: ../geanylatex/src/geanylatex.c:1715 +msgid "LaTeX-Wizard" +msgstr "LaTeX-Wizard" + +#. Templates +#. * Adds custom templates if there are any. If there are none just +#. * adds default one +#. TEMPLATE FILE +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 +msgid "Template:" +msgstr "Template:" + +#: ../geanylatex/src/geanylatex.c:1734 +msgid "Set the template which should be used for creating the new document" +msgstr "Imposta il template che dovrà essere usato per creare un nuovo " +"documento" + +#: ../geanylatex/src/geanylatex.c:1743 +msgid "Default" +msgstr "Default" + +#. Documentclass +#: ../geanylatex/src/geanylatex.c:1754 +msgid "Documentclass:" +msgstr "Documentclass:" + +#: ../geanylatex/src/geanylatex.c:1757 +msgid "Choose the kind of document you want to write" +msgstr "Scegli il tipo di documento che vuoi scrivere" + +#: ../geanylatex/src/geanylatex.c:1761 +msgid "Article" +msgstr "Articolo" + +#: ../geanylatex/src/geanylatex.c:1763 +msgid "Report" +msgstr "Report" + +#: ../geanylatex/src/geanylatex.c:1765 +msgid "Letter" +msgstr "Lettera" + +#: ../geanylatex/src/geanylatex.c:1767 +msgid "Presentation" +msgstr "Presentazione" + +#. Encoding +#: ../geanylatex/src/geanylatex.c:1777 +msgid "Encoding:" +msgstr "Codifica:" + +#: ../geanylatex/src/geanylatex.c:1781 +msgid "Set the encoding for your new document" +msgstr "Imposta la codifica per il tuo nuovo documento" + +#. fontsize +#: ../geanylatex/src/geanylatex.c:1797 +msgid "Font size" +msgstr "Dimensione testo" + +#: ../geanylatex/src/geanylatex.c:1803 +msgid "Set the default font size of your new document" +msgstr "Imposta la dimensione del testo predefinita per i nuovi documenti" + +#. Author +#: ../geanylatex/src/geanylatex.c:1815 +msgid "Author:" +msgstr "Autore:" + +#: ../geanylatex/src/geanylatex.c:1818 +msgid "" +"Sets the value of the \\author command. In most cases this should be your " +"name" +msgstr "" +"Imposta il valore del comando \\author. Nella maggior parte dei casi questo " +"dovrebbe essere il tuo nome." + +#. Date +#: ../geanylatex/src/geanylatex.c:1832 +msgid "Date:" +msgstr "Data:" + +#: ../geanylatex/src/geanylatex.c:1835 +msgid "" +"Sets the value of the \\date command inside header of your new created LaTeX-" +"document. Keeping it at \\today is a good decision if you don't need any " +"fixed date." +msgstr "" +"Imposta il valore del comando \\date dentro l'header del tuo nuovo documento " +"LaTeX. Tieni presente che \\today può essere usato se non hai necessità " +"di una data fissa." + +#. Title of the new document +#: ../geanylatex/src/geanylatex.c:1847 +msgid "Title:" +msgstr "Titolo:" + +#: ../geanylatex/src/geanylatex.c:1850 +msgid "Sets the title of your new document." +msgstr "Imposta il titolo del tuo nuovo documento." + +#. Papersize +#: ../geanylatex/src/geanylatex.c:1859 +msgid "Paper size:" +msgstr "Dimensione pagina:" + +#: ../geanylatex/src/geanylatex.c:1862 +msgid "Choose the paper format for the newly created document" +msgstr "Scegli il formato della pagina per il nuovo documento creato" + +#. Paper direction +#: ../geanylatex/src/geanylatex.c:1875 +msgid "Paper Orientation:" +msgstr "Orientazione pagina:" + +#: ../geanylatex/src/geanylatex.c:1878 +msgid "Choose the paper orientation for the newly created document" +msgstr "Scegli l'orientamento della pagina per il nuovo documento creato" + +#: ../geanylatex/src/geanylatex.c:1899 +msgid "Use KOMA-script classes if possible" +msgstr "Usa le classi di KOMA-script se possibile" + +#: ../geanylatex/src/geanylatex.c:1901 +msgid "" +"Uses the KOMA-script classes by Markus Kohm.\n" +"Keep in mind: To compile your document these classes have to be installed " +"before." +msgstr "" +"Usa le classi KOMA-script di Markus Kohm.\n" +"Tieni presente: per compilare il tuo documento le classi devono essere " +"installate precedentemente." + +#: ../geanylatex/src/geanylatex.c:1908 +msgid "Use draft mode" +msgstr "Usa modalità bozza" + +#: ../geanylatex/src/geanylatex.c:1910 +msgid "" +"Set the draft flag inside new created documents to get documents with a " +"number of debugging helpers" +msgstr "" +"Imposta il flag bozza all'interno dei nuovi documenti per ottenere documenti " +"con un alcuni aiuti per il debugging" + +#: ../geanylatex/src/geanylatex.c:1927 +msgid "Run LaTeX-Wizard" +msgstr "Esegui LaTeX-Wizard" + +#: ../geanylatex/src/geanylatex.c:1929 +msgid "Insert \\label" +msgstr "Inserisci \\label" + +#: ../geanylatex/src/geanylatex.c:1931 +msgid "Insert \\ref" +msgstr "Inserisci \\ref" + +#: ../geanylatex/src/geanylatex.c:1933 +msgid "Insert linebreak \\\\ " +msgstr "Inserisci fine riga \\\\ " + +#: ../geanylatex/src/geanylatex.c:1936 +msgid "Insert command" +msgstr "Inserisci comando" + +#: ../geanylatex/src/geanylatex.c:1938 +msgid "Turn input replacement on/off" +msgstr "Attiva/Disattiva sostituzione input" + +#: ../geanylatex/src/geanylatex.c:1942 +msgid "Replace special characters" +msgstr "Sostituisci caratteri speciali" + +#: ../geanylatex/src/geanylatex.c:1945 +msgid "Run insert environment dialog" +msgstr "Mostra la finestra di dialogo inserimento ambiente" + +#: ../geanylatex/src/geanylatex.c:1947 +msgid "Insert \\item" +msgstr "Inserisci \\item" + +#: ../geanylatex/src/geanylatex.c:1949 +msgid "Format selection in bold font face" +msgstr "Imposta grassetto su selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1951 +msgid "Format selection in italic font face" +msgstr "Imposta corsivo su selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1953 +msgid "Format selection in typewriter font face" +msgstr "Imposta typewriter su selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1955 +msgid "Format selection centered" +msgstr "Centra la selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1957 +msgid "Format selection left-aligned" +msgstr "Allinea a sinistra la selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1959 +msgid "Format selection right-aligned" +msgstr "Allinea a destra la selezione corrente" + +#: ../geanylatex/src/geanylatex.c:1962 +msgid "Insert description list" +msgstr "Inserisci una lista di descrizione" + +#: ../geanylatex/src/geanylatex.c:1965 +msgid "Insert itemize list" +msgstr "Inserisci elenco puntato" + +#: ../geanylatex/src/geanylatex.c:1968 +msgid "Insert enumerate list" +msgstr "Inserisci elenco numerato" + +#: ../geanylatex/src/geanylatex.c:1971 +msgid "Set selection one level up" +msgstr "Imposta selezione un livello sopra" + +#: ../geanylatex/src/geanylatex.c:1974 +msgid "Set selection one level down" +msgstr "Imposta selezione un livello sotto" + +#: ../geanylatex/src/geanylatex.c:1977 +msgid "Insert \\usepackage{}" +msgstr "Inserisci \\usepackage{}" + +#: ../geanylatex/src/geanylatex.c:1980 +msgid "Insert BibTeX reference dialog" +msgstr "Inserisci riferimento BibTeX" + +#: ../geanylatex/src/geanylatex.c:1987 +msgid "" +"GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" +"\n" +"Please report all bugs or feature requests to one of the authors." +msgstr "" +"GeanyLaTeX è un plugin per migliorare il supporto LaTeX in Geany.\n" +"\n" +"Riporta tutti gli eventuali bug o richieste di nuove funzionalità a " +"uno degli autori." + +#: ../geanylatex/src/geanylatex.c:2025 +msgid "" +"glatex_set_autocompletion_contextsize has been initialized with an invalid " +"value. Default value taken. Please check your configuration file" +msgstr "" +"glatex_set_autocompletion_contextsize è stato inizializzato con un valore " +"non valido. Saranno usati i valori di default, si prega di controllare il " +"file di configurazione." + +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 +msgid "page \\pageref{{{reference}}}" +msgstr "pagina \\pageref{{{reference}}}" + +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 +msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" +msgstr "\\ref{{{reference}}}, pagina \\pageref{{{reference}}}" + +#. Build up menu for menubar +#: ../geanylatex/src/geanylatex.c:2106 +msgid "_LaTeX" +msgstr "_LaTeX" + +#. Filling up menubar menus +#. LaTeX menu +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 +msgid "LaTeX-_Wizard" +msgstr "LaTeX-_Wizard" + +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 +msgid "Starts a Wizard to easily create LaTeX-documents" +msgstr "Avvia un Wizard per creare facilemente documenti LaTeX" + +#: ../geanylatex/src/geanylatex.c:2123 +msgid "I_nsert Special Character" +msgstr "I_nserisci Carattere Speciale" + +#: ../geanylatex/src/geanylatex.c:2125 +msgid "Helps to use some not very common letters and signs" +msgstr "Aiuta non usare molto lettere e segni non comuni." + +#: ../geanylatex/src/geanylatex.c:2135 +msgid "Insert _Reference" +msgstr "Inserisci _Riferimento" + +#: ../geanylatex/src/geanylatex.c:2137 +msgid "Inserting references to the document" +msgstr "Inserimento riferimenti al documento" + +#: ../geanylatex/src/geanylatex.c:2142 +msgid "Insert _Label" +msgstr "Inserisci _Etichetta" + +#: ../geanylatex/src/geanylatex.c:2144 +msgid "Helps at inserting labels to a document" +msgstr "Aiuta a inserire etichette al documento" + +#: ../geanylatex/src/geanylatex.c:2150 +msgid "Insert _Environment" +msgstr "Inserisci _Ambiente" + +#: ../geanylatex/src/geanylatex.c:2152 +msgid "Helps at inserting an environment a document" +msgstr "Aiuta a inserire un ambiente al documento" + +#: ../geanylatex/src/geanylatex.c:2158 +msgid "Insert P_ackage" +msgstr "Inserisci _Package" + +#: ../geanylatex/src/geanylatex.c:2160 +msgid "A small dialog to insert \\usepackage{} into header of current file" +msgstr "" +"Un piccolo dialogo per inserire \\usepackage{} dentro l'header " +"del file corrente" + +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 +msgid "_Format" +msgstr "_Formato" + +#. Add font size menu +#: ../geanylatex/src/geanylatex.c:2182 +msgid "F_ont size" +msgstr "_Dimensione Testo" + +#: ../geanylatex/src/geanylatex.c:2200 +msgid "_Special Character Replacement" +msgstr "_Sostituzione Carattere Speciale" + +#: ../geanylatex/src/geanylatex.c:2208 +msgid "Bulk _Replace Special Characters" +msgstr "Amplia _Sostituzione Caratteri Speciali" + +#: ../geanylatex/src/geanylatex.c:2210 +msgid "_Replace selected special characters with TeX substitutes" +msgstr "_Sostituisci i caratteri speciali con sostituti TeX" + +#: ../geanylatex/src/geanylatex.c:2218 +msgid "Toggle _Special Character Replacement" +msgstr "A_ttiva/Disattiva sostituzione caratteri speciali" + +#: ../geanylatex/src/geanylatex.c:2229 +msgid "Insert _Command" +msgstr "Inserisci _Comando" + +#: ../geanylatex/src/geanylatex.c:2231 +msgid "Inserting costumized command to document" +msgstr "Inserisci un comando personalizzato al documento" + +#: ../geanylatex/src/geanylatex.c:2256 +msgid "_BibTeX" +msgstr "_BibTeX" + +#: ../geanylatex/src/geanylatex.c:2264 +msgid "Insert B_ibTeX reference" +msgstr "Inserisci riferimento B_ibTeX" + +#: ../geanylatex/src/geanylatex.c:2266 +msgid "Helps to insert a reference out of BibTeX files" +msgstr "Aiuta a inserire un riferimento fuori dai BibTeX file" + +#: ../geanylatex/src/geanylatex.c:2271 +msgid "_BibTeX entries" +msgstr "voce _BibTeX" + +#: ../geanylatex/src/letters.c:40 +msgid "LaTeX letters" +msgstr "Lettere LaTeX" + +#: ../geanylatex/src/letters.c:41 +msgid "Greek letters" +msgstr "Lettere greche" + +#: ../geanylatex/src/letters.c:42 +msgid "German umlauts" +msgstr "Dieresi tedesche" + +#: ../geanylatex/src/letters.c:43 +msgid "Misc" +msgstr "Misc" + +#: ../geanylatex/src/letters.c:44 +msgid "Arrow characters" +msgstr "Caratteri frecce" + +#: ../geanylatex/src/letters.c:45 +msgid "Relational" +msgstr "Relazionale" + +#: ../geanylatex/src/letters.c:46 +msgid "Binary operation" +msgstr "Operazione binaria" + +#: ../geanylatex/src/formatpatterns.c:38 +msgid "Italic" +msgstr "Corsivo" + +#: ../geanylatex/src/formatpatterns.c:39 +msgid "Bold" +msgstr "Grassetto" + +#: ../geanylatex/src/formatpatterns.c:40 +msgid "Underline" +msgstr "Sottolineato" + +#: ../geanylatex/src/formatpatterns.c:41 +msgid "Typewriter" +msgstr "Typewriter" + +#: ../geanylatex/src/formatpatterns.c:42 +msgid "Small Caps" +msgstr "Maiuscoletto" + +#: ../geanylatex/src/formatpatterns.c:43 +msgid "Slanted" +msgstr "Inclinato" + +#: ../geanylatex/src/formatpatterns.c:44 +msgid "Emphasis" +msgstr "Enfasi" + +#: ../geanylatex/src/formatpatterns.c:64 +msgid "tiny" +msgstr "tiny" + +#: ../geanylatex/src/formatpatterns.c:65 +msgid "scriptsize" +msgstr "scriptsize" + +#: ../geanylatex/src/formatpatterns.c:66 +msgid "footnotesize" +msgstr "footnotesize" + +#: ../geanylatex/src/formatpatterns.c:67 +msgid "small" +msgstr "small" + +#: ../geanylatex/src/formatpatterns.c:68 +msgid "normalsize" +msgstr "normalsize" + +#: ../geanylatex/src/formatpatterns.c:69 +msgid "large" +msgstr "large" + +#: ../geanylatex/src/formatpatterns.c:70 +msgid "Large" +msgstr "Large" + +#: ../geanylatex/src/formatpatterns.c:71 +msgid "LARGE" +msgstr "LARGE" + +#: ../geanylatex/src/formatpatterns.c:72 +msgid "huge" +msgstr "huge" + +#: ../geanylatex/src/formatpatterns.c:73 +msgid "Huge" +msgstr "Huge" + +#: ../geanylatex/src/latexencodings.c:37 +msgid "UTF-8" +msgstr "UTF-8" + +#: ../geanylatex/src/latexencodings.c:38 +msgid "US-ASCII" +msgstr "US-ASCII" + +#: ../geanylatex/src/latexencodings.c:39 +msgid "ISO-8859-1 (Latin-1)" +msgstr "ISO-8859-1 (Latin-1)" + +#: ../geanylatex/src/latexencodings.c:41 +msgid "ISO-8859-2 (Latin-2)" +msgstr "ISO-8859-2 (Latin-2)" + +#: ../geanylatex/src/latexencodings.c:43 +msgid "ISO-8859-3 (Latin-3)" +msgstr "ISO-8859-3 (Latin-3)" + +#: ../geanylatex/src/latexencodings.c:45 +msgid "ISO-8859-4 (Latin-4)" +msgstr "ISO-8859-4 (Latin-4)" + +#: ../geanylatex/src/latexencodings.c:47 +msgid "ISO-8859-5 (Latin-5)" +msgstr "ISO-8859-5 (Latin-5)" + +#: ../geanylatex/src/latexencodings.c:49 +msgid "ISO-8859-9 (Latin-9)" +msgstr "ISO-8859-9 (Latin-9)" + +#: ../geanylatex/src/latexencodings.c:51 +msgid "ISO-8859-10 (Latin-10)" +msgstr "ISO-8859-10 (Latin-10)" + +#: ../geanylatex/src/latexencodings.c:53 +msgid "IBM 850 code page" +msgstr "IBM 850 code page" + +#: ../geanylatex/src/latexencodings.c:55 +msgid "IBM 852 code page" +msgstr "IBM 852 code page" + +#: ../geanylatex/src/latexencodings.c:57 +msgid "Don't set any encoding" +msgstr "Non impostare alcuna codifica" + +#: ../geanylipsum/src/geanylipsum.c:40 +msgid "GeanyLipsum" +msgstr "GeanyLipsum" + +#: ../geanylipsum/src/geanylipsum.c:41 +msgid "Creating dummy text with Geany" +msgstr "Crea un testo fittizio con Geany" + +#: ../geanylipsum/src/geanylipsum.c:89 +msgid "Lipsum-Generator" +msgstr "Lipsum-Generator" + +#: ../geanylipsum/src/geanylipsum.c:90 +msgid "Enter the length of Lipsum text here" +msgstr "Inserisci la lunghezza del testo Lipsum qui" + +#. Building menu entry +#: ../geanylipsum/src/geanylipsum.c:164 +msgid "_Lipsum" +msgstr "_Lipsum" + +#: ../geanylipsum/src/geanylipsum.c:165 +msgid "Include Pseudotext to your code" +msgstr "Includi uno Pseudotext al tuo codice" + +#: ../geanylipsum/src/geanylipsum.c:179 +msgid "Insert Lipsum text" +msgstr "Inserisci testo Lipsum" + +#: ../geanylua/glspi.h:100 ../geanylua/gsdlg_lua.c:95 +#: ../geanylua/glspi_kfile.c:54 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +" expected type \"%s\" for argument #%d\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +" atteso tipo \"%s\" per l'argomento #%d\n" + + +#: ../geanylua/glspi.h:114 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +" expected type \"%s\" or \"%s\" for argument #%d\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +" atteso tipo \"%s\" or \"%s\" per l'argomento #%d\n" + +#: ../geanylua/glspi.h:128 ../geanylua/gsdlg_lua.c:108 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +" invalid table in argument #%d:\n" +" expected type \"%s\" for element #%d\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +" tabella non valida nell'argomento #%d:\n" +" atteso tipo \"%s\" per l'elemento #%d\n" + +#. +#. * glspi_ver.c - This file is part of the Lua scripting plugin for the Geany IDE +#. * See the file "geanylua.c" for copyright information. +#. +#: ../geanylua/glspi_ver.h:7 +msgid "Lua Script" +msgstr "Lua Script" + +#: ../geanylua/glspi_ver.h:9 +msgid "Write and run Lua scripts for custom commands." +msgstr "Scrivi ed esegui gli script Lua per comandi personalizzati." + +#: ../geanylua/glspi_ver.h:19 +msgid "Lua Script Plugin" +msgstr "Lua Script Plugin" + +#: ../geanylua/glspi_run.c:90 ../geanylua/glspi_run.c:97 +msgid "Lua script error:" +msgstr "Errore script Lua:" + +#: ../geanylua/glspi_run.c:197 +msgid "Script timeout" +msgstr "Script timeout" + +#: ../geanylua/glspi_run.c:198 +msgid "" +"A Lua script seems to be taking excessive time to complete.\n" +"Do you want to continue waiting?" +msgstr "" +"Lo script Lua sembra metterci un tempo eccessivo per completare.\n" +"Vuoi continuare ad aspettare?" + +#: ../geanylua/glspi_run.c:206 +msgid "Script timeout exceeded." +msgstr "Timeout script raggiunto." + +#: ../geanylua/glspi_run.c:382 +msgid "(error object is not a string)" +msgstr "(l'oggetto error non è una stringa)" + +#: ../geanylua/glspi_run.c:387 +msgid "Unknown Error inside script." +msgstr "Errore Sconosciuto all'interno dello script" + +#: ../geanylua/glspi_run.c:459 +msgid "Out of memory." +msgstr "Memoria esaurita." + +#: ../geanylua/glspi_run.c:462 +msgid "Failed to open script file." +msgstr "Impossibile aprire il file dello script." + +#: ../geanylua/glspi_run.c:465 +msgid "Unknown error while loading script file." +msgstr "Errore sconosciuto leggendo il file dello script." + +#: ../geanylua/glspi_init.c:381 +msgid "_Lua Scripts" +msgstr "_Lua Scripts" + +#: ../geanylua/glspi_init.c:428 +#, c-format +msgid " ==>> %s: Building menu from '%s'\n" +msgstr " ==>> %s: Costruendo menu da '%s'\n" + +#: ../geanylua/glspi_init.c:527 +msgid "Nothing to configure!" +msgstr "Niente da configurare!" + +#: ../geanylua/glspi_init.c:529 +#, c-format +msgid "" +"You can create the script:\n" +"\n" +"\"%s\"\n" +"\n" +"to add your own custom configuration dialog." +msgstr "" +"Puoi creare lo script:\n" +"\n" +"\"%s\"\n" +"\n" +"per aggiungere il tuo dialogo di configurazione personalizzato." + +#: ../geanylua/gsdlg.c:103 ../geanylua/glspi_dlg.c:420 +msgid "Open file" +msgstr "Apri file" + +#: ../geanylua/gsdlg.c:107 +msgid "Select file" +msgstr "Seleziona file" + +#: ../geanylua/gsdlg.c:154 +msgid "Browse..." +msgstr "Sfoglia..." + +#: ../geanylua/gsdlg.c:176 +msgid "Select Color" +msgstr "Selezione colore" + +#: ../geanylua/gsdlg.c:207 +msgid "Choose..." +msgstr "Scegli..." + +#: ../geanylua/gsdlg.c:228 +msgid "Select Font" +msgstr "Seleziona Font" + +#: ../geanylua/gsdlg.c:255 +msgid "Select..." +msgstr "Seleziona..." + +#: ../geanylua/glspi_sci.c:427 +#, c-format +msgid "" +"Error in module \"%s\" at function navigate():\n" +"unknown navigation mode \"%s\" for argument #1.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione navigate():\n" +"navigation mode sconosciuta \"%s\" per l'argomento #1.\n" + +#: ../geanylua/glspi_sci.c:603 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +"API command \"%s\" not implemented.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +"Comando API \"%s\" non implementato.\n" + +#: ../geanylua/glspi_sci.c:614 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +"not enough arguments for command \"%s\".\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +"parametri non sufficienti per il comando \"%s\".\n" + +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +"unknown command \"%s\" given for argument #1.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +"comando sconosciuto \"%s\" per l'argomento #1.\n" + +#: ../geanylua/glspi_sci.c:794 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +" invalid table in argument #%d:\n" +" unknown flag \"%s\" for element #%d\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +" tabella non valida nell'argomento #%d:\n" +" flag \"%s\" sconosciuto per l'elemento #%d\n" + +#: ../geanylua/glspi_sci.c:798 +msgid "" +msgstr "" + +#: ../geanylua/glspi_dlg.c:336 +msgid "File exists" +msgstr "Il file esiste" + +#: ../geanylua/glspi_dlg.c:336 +msgid "Do you want to overwrite it?" +msgstr "Vuoi sovrascriverlo?" + +#: ../geanylua/glspi_dlg.c:337 +msgid "confirm" +msgstr "conferma" + +#: ../geanylua/glspi_dlg.c:410 +msgid "Save file" +msgstr "Salva file" + +#: ../geanylua/glspi_dlg.c:436 +#, c-format +msgid "" +"Error in module \"%s\" at function pickfile():\n" +"failed to parse filter string at argument #3.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione pickfile():\n" +"impossibile effettuare parse filter string all'argomento #3.\n" + +#: ../geanylua/glspi_dlg.c:486 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +"expected string \"open\" or \"save\" for argument #1.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +"attesa stringa \"open\" o \"save\" per l'argomento #1.\n" + +#: ../geanylua/geanylua.c:163 +#, c-format +msgid "%s: Can't load support library %s!\n" +msgstr "%s: impossibile caricare la libreria di support %s!\n" + +#: ../geanylua/geanylua.c:175 +#, c-format +msgid "%s: Failed to initialize support library %s!\n" +msgstr "%s: impossibile inizalizzare la libreria di supporto %s!\n" + +#: ../geanylua/geanylua.c:180 +#, c-format +msgid "%s: Support library version mismatch: %s for %s (should be %s)!\n" +msgstr "" +"%s: versione della libreria di supporto errata: %s per %s " +"(dovrebbe essere %s)!\n" + +#: ../geanylua/geanylua.c:186 +#, c-format +msgid "%s: Support library ABI mismatch: %d for %s (should be %d)!\n" +msgstr "" +"%s: versione ABI della libreria di supporto errata: %d per %s " +"(dovrebbe essere %d)!\n" + +#: ../geanylua/geanylua.c:215 +#, c-format +msgid "%s: Can't find support library %s!\n" +msgstr "%s: impossibile trovare la libreira %s!\n" + +#: ../geanylua/geanylua.c:234 +#, c-format +msgid "" +"The %s plugin failed to load properly.\n" +"Please check your installation." +msgstr "" +"Impossibile caricare correttamente il plugin %s\n" +"Controlla la tua installazione." + +#: ../geanylua/glspi_app.c:21 +#, c-format +msgid "" +"%s %s: %s\n" +"Copyright (c) 2007-2010 " +msgstr "" +"%s %s: %s\n" +"Copyright (c) 2007-2010 " + +#: ../geanylua/glspi_app.c:151 +#, c-format +msgid "" +"Error in module \"%s\" at function %s():\n" +"widget \"%s\" not found for argument #1.\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s():\n" +"il widget \"%s\" non è stato trovato per il argomento #1.\n" + +#: ../geanylua/glspi_app.c:160 +#, c-format +msgid "" +"Error in module \"%s\" at function %s() argument #2:\n" +"widget \"%s\" has no signal named \"%s\".\n" +msgstr "" +"Errore nel modulo \"%s\" alla funzione %s() argomento #2:\n" +"il widget \"%s\" non ha un segnale chiamato \"%s\".\n" + +#: ../geanymacro/src/geanymacro.c:55 +msgid "Cut to Clipboard" +msgstr "Taglia negli appunti" + +#: ../geanymacro/src/geanymacro.c:56 +msgid "Copy to Clipboard" +msgstr "Copia negli appunti" + +#: ../geanymacro/src/geanymacro.c:57 +msgid "Paste from Clipboard" +msgstr "Incolla dagli appunti" + +#: ../geanymacro/src/geanymacro.c:58 +msgid "Cut current line to Clipboard" +msgstr "Taglia la riga corrente negli appunti" + +#: ../geanymacro/src/geanymacro.c:59 +msgid "Copy current line to Clipboard" +msgstr "Copia la riga corrente negli appunti" + +#: ../geanymacro/src/geanymacro.c:61 +msgid "Delete character to the left" +msgstr "Elimina il carattere a sinistra" + +#: ../geanymacro/src/geanymacro.c:62 +msgid "Delete character to the right" +msgstr "Elimina il carattere a destra" + +#: ../geanymacro/src/geanymacro.c:63 +msgid "Delete character to the left (but not newline)" +msgstr "Elimina il caratter a sinistra (ma non il fine riga)" + +#: ../geanymacro/src/geanymacro.c:64 +msgid "Delete up to start of word to the Left" +msgstr "Elimina fino all'inizio della parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:65 +msgid "Delete up to start of word to the Right" +msgstr "Elimina fino all'inizio della parola a destra" + +#: ../geanymacro/src/geanymacro.c:66 +msgid "Delete up to end of word to the Right" +msgstr "Elimina fino alla fine della parola a destra" + +#: ../geanymacro/src/geanymacro.c:67 +msgid "Delete to beginning of line" +msgstr "Elimina fino a inizio riga" + +#: ../geanymacro/src/geanymacro.c:68 +msgid "Delete to end of line" +msgstr "Elimina fino a fine riga" + +#: ../geanymacro/src/geanymacro.c:69 +msgid "Delete current line" +msgstr "Elimina la riga corrente" + +#: ../geanymacro/src/geanymacro.c:70 +msgid "Backwards Tab (deletes tab if nothing after it)" +msgstr "Backwards Tab (Elimina il tab se non c'è niente dopo)" + +#: ../geanymacro/src/geanymacro.c:72 +msgid "Scroll Display down a line" +msgstr "Muovi la finestra di una riga giù" + +#: ../geanymacro/src/geanymacro.c:73 +msgid "Scroll Display up a line" +msgstr "Muovi la finestra di una riga su" + +#: ../geanymacro/src/geanymacro.c:74 +msgid "Zoom view in" +msgstr "Zoom finestra in" + +#: ../geanymacro/src/geanymacro.c:75 +msgid "Zoom view out" +msgstr "Zoom finestra out" + +#: ../geanymacro/src/geanymacro.c:77 +msgid "Move Cursor Down" +msgstr "Sposta il cursore giù" + +#: ../geanymacro/src/geanymacro.c:78 +msgid "Move Cursor Up" +msgstr "Sposta il cursore su" + +#: ../geanymacro/src/geanymacro.c:79 +msgid "Move Cursor Left" +msgstr "Sposta il cursore a sinistra" + +#: ../geanymacro/src/geanymacro.c:80 +msgid "Move Cursor Right" +msgstr "Sposta il cursore a destra" + +#: ../geanymacro/src/geanymacro.c:81 +msgid "Move Cursor to start of Word to the Left" +msgstr "Muovi il cursore all'inizio della parola a Sinistra" + +#: ../geanymacro/src/geanymacro.c:82 +msgid "Move Cursor to start of Word to the Right" +msgstr "Muovi il cursore all'inizio della parola a Destra" + +#: ../geanymacro/src/geanymacro.c:83 +msgid "Move Cursor to start of Part of Word to the Left" +msgstr "Muovi il cursore all'inizio della parte della parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:84 +msgid "Move Cursor to start of Part of Word to the Right" +msgstr "Muovi il cursore all'inizio della parte della parola a destra" + +#: ../geanymacro/src/geanymacro.c:85 +msgid "Move Cursor to start of line" +msgstr "Muovi il cursore a inizio riga" + +#: ../geanymacro/src/geanymacro.c:86 +msgid "Move Cursor to end of line" +msgstr "Muovi il cursore a fine riga" + +#: ../geanymacro/src/geanymacro.c:87 +msgid "Move Cursor to 1st line of Document" +msgstr "Muovi il cursore alla prima linea del documento" + +#: ../geanymacro/src/geanymacro.c:88 +msgid "Move Cursor to last line of document" +msgstr "Muovi il cursore all'ultima linea del documento" + +#: ../geanymacro/src/geanymacro.c:89 +msgid "Move Cursor up one Page" +msgstr "Muovi il cursore una Pagina su" + +#: ../geanymacro/src/geanymacro.c:90 +msgid "Move Cursor down one Page" +msgstr "Muovi il cursore una Pagina giù" + +#: ../geanymacro/src/geanymacro.c:91 +msgid "Move Cursor to first visible character" +msgstr "Muovi il cursore al primo carattere visibile" + +#: ../geanymacro/src/geanymacro.c:92 +msgid "Move Cursor to last visible character" +msgstr "Muovi il cursore all'ultimo carattere visibile" + +#: ../geanymacro/src/geanymacro.c:93 +msgid "" +"Move Cursor to 1st non-whitespace character of line, or 1st character of " +"line if already at 1st non-whitespace character" +msgstr "" +"Muovi il cursore al primo carattere della linea (non spazio) oppure al " +"primo carattere della linea se già il primo carattere non è spazio" + +#: ../geanymacro/src/geanymacro.c:95 +msgid "Move Cursor to beginning of next paragraph" +msgstr "Muovi il cursore all'inizio del prossimo paragrafo" + +#: ../geanymacro/src/geanymacro.c:96 +msgid "Move Cursor up to beginning of current/previous paragraph" +msgstr "Muoviil cursore all'inizio del corrente/precedente paragrafo" + +#: ../geanymacro/src/geanymacro.c:97 +msgid "Move Cursor to end of Word to the Left" +msgstr "Muovi il cursore alla fine della parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:98 +msgid "Move Cursor to end of Word to the Right" +msgstr "Muovi il cursore alla fine della parola a destra" + +#: ../geanymacro/src/geanymacro.c:100 +msgid "Extend Selection down a line" +msgstr "Estendi la selezione in giù di una riga" + +#: ../geanymacro/src/geanymacro.c:101 +msgid "Extend Selection up a line" +msgstr "Estendi la selezione in su di una riga" + +#: ../geanymacro/src/geanymacro.c:102 +msgid "Extend Selection Left a line" +msgstr "Estendi la selezione a sinistra di una riga" + +#: ../geanymacro/src/geanymacro.c:103 +msgid "Extend Selection Right a line" +msgstr "Estendi la selezione a destra di una riga" + +#: ../geanymacro/src/geanymacro.c:104 +msgid "Extend Selection to start of Word to the Left" +msgstr "Estendi la selezione all'inizio di una parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:105 +msgid "Extend Selection to start of Word to the Right" +msgstr "Estendi la selezione all'inizio di una parola a destra" + +#: ../geanymacro/src/geanymacro.c:106 +msgid "Extend Selection to start of Part of Word to the Left" +msgstr "Estendi la selezione all'inizio di una parte di una parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:107 +msgid "Extend Selection to start of Part of Word to the Right" +msgstr "Estendi la selezione all'inizio di una parte di una parola a destra" + +#: ../geanymacro/src/geanymacro.c:108 +msgid "Extend Selection to start of line" +msgstr "Estendi la selezione all'inizio di una riga" + +#: ../geanymacro/src/geanymacro.c:109 +msgid "Extend Selection to end of line" +msgstr "Estendi la selezione alla fine di una riga" + +#: ../geanymacro/src/geanymacro.c:110 +msgid "Extend Selection to start of document" +msgstr "Estendi la selezione all'inizio del documento" + +#: ../geanymacro/src/geanymacro.c:111 +msgid "Extend Selection to end of document" +msgstr "Estendi la selezione alla fine del documento" + +#: ../geanymacro/src/geanymacro.c:112 +msgid "Extend Selection up one Page" +msgstr "Estendi la selezione su di una pagina" + +#: ../geanymacro/src/geanymacro.c:113 +msgid "Extend Selection down one Page" +msgstr "Estendi la selezione giù di una pagina" + +#: ../geanymacro/src/geanymacro.c:114 +msgid "Extend Selection to fist visible character" +msgstr "Estendi la selezione al primo carattere visibile" + +#: ../geanymacro/src/geanymacro.c:115 +msgid "Extend Selection to last visible character" +msgstr "Estendi la selezione all'ultimo carattere visibile" + +#: ../geanymacro/src/geanymacro.c:116 +msgid "" +"Extend Selection to 1st non-whitespace character of line, or 1st character " +"of line if already at 1st non-whitespace character" +msgstr "" +"Estendi la selezione al primo carattere di una linea (non spazio) oppure " +"al primo carattere della linea se già il primo carattere non è spazio" + +#: ../geanymacro/src/geanymacro.c:118 +msgid "Extend Selection to beginning of next paragraph" +msgstr "Estendi la selezione all'inizio del prossimo paragrafo" + +#: ../geanymacro/src/geanymacro.c:119 +msgid "Extend Selection up to beginning of current/previous paragraph" +msgstr "Estendi la selezione all'inizio del corrente/precedente paragrafo" + +#: ../geanymacro/src/geanymacro.c:120 +msgid "Extend Selection to end of Word to the Left" +msgstr "Estendi la selezione alla fine della parola a sinistra" + +#: ../geanymacro/src/geanymacro.c:121 +msgid "Extend Selection to end of Word to the Right" +msgstr "Estendi la selezione alla fine della parola a destra" + +#: ../geanymacro/src/geanymacro.c:123 +msgid "Extend Rectangular Selection down a line" +msgstr "Estendi la selezione rettangolare in giù di una riga" + +#: ../geanymacro/src/geanymacro.c:124 +msgid "Extend Rectangular Selection up a line" +msgstr "Estendi la selezione rettangolare in su di una riga" + +#: ../geanymacro/src/geanymacro.c:125 +msgid "Extend Rectangular Selection Left a line" +msgstr "Estendi la selezione rettangolare a sinistra di una riga" + +#: ../geanymacro/src/geanymacro.c:126 +msgid "Extend Rectangular Selection Right a line" +msgstr "Estendi la selezione rettangolare a destra di una riga" + +#: ../geanymacro/src/geanymacro.c:127 +msgid "Extend Rectangular Selection to start of line" +msgstr "Estendi la selezione rettangolare all'inizio riga" + +#: ../geanymacro/src/geanymacro.c:128 +msgid "Extend Rectangular Selection to end of line" +msgstr "Estendi la selezione rettangolare alla fine della riga" + +#: ../geanymacro/src/geanymacro.c:129 +msgid "Extend Rectangular Selection up one Page" +msgstr "Estendi la selezione rettangolare una pagina su" + +#: ../geanymacro/src/geanymacro.c:130 +msgid "Extend Rectangular Selection down one Page" +msgstr "Estendi la selezione rettangolare una pagina giù" + +#: ../geanymacro/src/geanymacro.c:131 +msgid "" +"Extend Rectangular Selection to 1st non-whitespace character of line, or 1st " +"character of line if already at 1st non-whitespace character" +msgstr "" +"Estendi la selezione rettangolare al primo carattere di una linea (non " +"spazio) oppure al primo carattere della linea se già il primo carattere non è spazio" + + +#: ../geanymacro/src/geanymacro.c:134 +msgid "Cancel Selection" +msgstr "Elimina selezione" + +#: ../geanymacro/src/geanymacro.c:136 +msgid "Toggle Insert/Overwrite mode" +msgstr "Attiva/Disattiva modalità sovrascrivi" + +#: ../geanymacro/src/geanymacro.c:137 ../pretty-printer/src/ConfigUI.c:239 +msgid "Tab" +msgstr "Tab" + +#: ../geanymacro/src/geanymacro.c:138 +msgid "Newline" +msgstr "Fine riga" + +#: ../geanymacro/src/geanymacro.c:140 ../geanymacro/src/geanymacro.c:1625 +#, c-format +msgid "Insert/replace with \"\"" +msgstr "Inserisci/Sostituisci con \"\"" + +#: ../geanymacro/src/geanymacro.c:142 +msgid "Swap current line wih one above" +msgstr "Scambia la riga corrente con la precedente" + +#: ../geanymacro/src/geanymacro.c:143 +msgid "Change selected text to lowercase" +msgstr "Imposta il testo selezionato a minuscolo" + +#: ../geanymacro/src/geanymacro.c:144 +msgid "Change selected text to uppercase" +msgstr "Imposta il testo selezionato a maiuscolo" + +#: ../geanymacro/src/geanymacro.c:146 +msgid "Insert duplicate of current line below" +msgstr "Inserisci un duplicato della riga corrente sotto" + +#: ../geanymacro/src/geanymacro.c:147 +msgid "" +"Insert duplicate of selected text after selection. If nothing selected, " +"duplicate line" +msgstr "" +"Inserisci duplicato del testo selezionato dopo la selezione. Se nulla è " +"selezionato, duplica la riga" + +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "Cerca il prossimo \"\"" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "Cerca il precedente \"\"" + +#: ../geanymacro/src/geanymacro.c:152 +msgid "Set start of search to beginning of selection" +msgstr "Imposta l'inizio della ricerca in cima alla selezione" + +#: ../geanymacro/src/geanymacro.c:181 +msgid "Macros" +msgstr "Macro" + +#: ../geanymacro/src/geanymacro.c:181 +msgid "Macros for Geany" +msgstr "Macro per Geany" + +#: ../geanymacro/src/geanymacro.c:369 +msgid "No text in clipboard!" +msgstr "Nessun testo negli appunti!" + +#: ../geanymacro/src/geanymacro.c:546 +#, c-format +msgid "" +"Unrecognised message\n" +"%i %i %i" +msgstr "" +"Messaggio non riconosciuto\n" +"%i %i %i" + +#: ../geanymacro/src/geanymacro.c:820 +msgid "Save Macros when close Geany" +msgstr "Salva le Macro quando chiudi Geany" + +#: ../geanymacro/src/geanymacro.c:826 +msgid "Ask before replaceing existing Macros" +msgstr "Chiedi prima di sovrascrivere le Macro esistenti" + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:847 +msgid "Geany Macros help" +msgstr "Aiuto Geany Macro" + +#: ../geanymacro/src/geanymacro.c:855 +msgid "" +"This Plugin implements Macros in Geany.\n" +"\n" +msgstr "" +"Questo Plugin implementa le Macro in Geany.\n" +"\n" + + +#: ../geanymacro/src/geanymacro.c:856 +msgid "This plugin allows you to record and use your own macros. " +msgstr "Questo plugin ti permette di registrare e usare macro personalizzate." + +#: ../geanymacro/src/geanymacro.c:857 +msgid "" +"These are sequences of actions that can then be repeated with a single key " +"combination. " +msgstr "" +"Le macro sono sequenze di azioni che possono essere ripetute con una singola " +"combinazione di tasti. " + +#: ../geanymacro/src/geanymacro.c:858 +msgid "" +"So if you had dozens of lines where you wanted to delete the last 2 " +"characters, you could simply start recording, press End, Backspace, " +"Backspace, down line and then stop recording. " +msgstr "" +"Se hai dozzine di righe di cui vuoi eliminare gli ultimi due caratteri, " +"puoi semplicemente avviare la registrazione, premere End, Backspace, " +"Backspace, scendere di una riga e poi fermare la registrazione. " + + +#: ../geanymacro/src/geanymacro.c:860 +msgid "" +"Then simply trigger the macro and it would automatically edit the line and " +"move to the next. " +msgstr "" +"Quindi semplicemente avvia la macro e automaticamente la riga corrente verrà " +"modificata e si sposterà alla successiva. " + +#: ../geanymacro/src/geanymacro.c:861 +msgid "" +"Select Record Macro from the Tools menu and you will be prompted with a " +"dialog box. " +msgstr "" +"Seleziona Registra Macro dal menu Strumenti e verrà aperta una finestra. " + +#: ../geanymacro/src/geanymacro.c:862 +msgid "" +"You need to specify a key combination that isn't being used, and a name for " +"the macro to help you identify it. " +msgstr "" +"Specifica una combinazione di tasti non ancora usata e un nome per la macro " +"per aiutarti a identificarla." + +#: ../geanymacro/src/geanymacro.c:864 +msgid "Then press Record. " +msgstr "Premi Registra." + +#: ../geanymacro/src/geanymacro.c:865 +msgid "" +"What you do in the editor is then recorded until you select Stop Recording " +"Macro from the Tools menu. " +msgstr "" +"Quello che fai nell'editor viene registrato fino a che non premi Ferma " +"Registrazione Macro dal menu Strumenti. " + +#: ../geanymacro/src/geanymacro.c:867 +msgid "Simply pressing the specified key combination will re-run the macro. " +msgstr "" +"Semplicemente premi la combinazioni tasti specificata per rieseguire " +"la macro. " + +#: ../geanymacro/src/geanymacro.c:868 +msgid "To edit the macros you have, select Edit Macro from the Tools menu. " +msgstr "Per modificare la macro devi selezionare Modifica Macro dal menu Strumenti" + +#: ../geanymacro/src/geanymacro.c:869 +msgid "You can select a macro and delete it, or re-record it. " +msgstr "Puoi selezionare la macro e eliminarla o ri-registrarla." + +#: ../geanymacro/src/geanymacro.c:870 +msgid "" +"You can also click on a macro's name and change it, or the key combination " +"and re-define that assuming that it's not already in use. " +msgstr "" +"Puoi anche cliccare sul nome della macro o sulla combinazione tasti e " +"cambiarli, prestando attenzione che le nuove impostazioni non siano già in uso" + +#: ../geanymacro/src/geanymacro.c:872 +msgid "" +"Selecting the edit option allows you to view all the individual elements " +"that make up the macro. " +msgstr "" +"Selezionare l'opzione di modifica ti permette di visualizzare tutti gli " +"elementi che compongono la macro. " + +#: ../geanymacro/src/geanymacro.c:874 +msgid "" +"You can select a diferent command for each element, move them, add new " +"elements, delete elements, or if it's replace/insert, you can edit the text " +"that replaces the selected text, or is inserted.\n" +"\n" +msgstr "" +"Puoi selezionare un comando differente per ogni elemento, spostarlo, " +"aggiungerne uno nuovo, eliminarlo o sostituirlo, puoi anche modificare " +"il testo che sostituisce il testo selezionato o inserito.\n" + +#: ../geanymacro/src/geanymacro.c:878 +msgid "" +"The only thing to bear in mind is that undo and redo actions are not " +"recorded, and won't be replayed when the macro is re-run.\n" +"\n" +msgstr "" +"L'unica cosa da tenere ben in mente è che i comandi 'annulla' e 'ripeti' " +"quindi non sono registrati e non possono essere replicati quando la macro " +"viene eseguita. \n\n" + +#: ../geanymacro/src/geanymacro.c:881 +msgid "" +"You can alter the default behaviour of this plugin by selecting Plugin " +"Manager under the Tools menu, selecting this plugin, and cliking " +"Preferences. " +msgstr "" +"Puoi modificare il comportamento di questo plugin selezionando Plugin " +"Manager nel menu Strumenti, selezionare il plugin, e cliccando " +"Preferenze. " + + +#: ../geanymacro/src/geanymacro.c:883 +msgid "You can change:\n" +msgstr "Puoi cambiare:\n" + +#: ../geanymacro/src/geanymacro.c:884 +msgid "" +"Save Macros when close Geany - If this is selected then Geany will save any " +"recorded macros and reload them for use the next time you open Geany, if not " +"they will be lost when Geany is closed.\n" +msgstr "" +"Salva le Macro quando Geany viene chiuso. Se è selezionato allora Geany " +"salverà qualsiasi macro registrata e verranno ricaricate la prossima volta " +"che aprirai Geany.\n" + +#: ../geanymacro/src/geanymacro.c:887 +msgid "" +"Ask before replaceing existing Macros - If this is selected then if you try " +"recording a macro over an existing one it will check before over-writing it, " +"giving you the option of trying a different name or key trigger combination, " +"otherwise it will simply erase any existing macros with the same name, or " +"the same key trigger combination." +msgstr "" +"Chiedi prima di sovrascrivere Macro esistenti - Se è selezionato se provi a " +"registrare una macro sopra una esistente, ti verrà chiesto se vuoi provare " +"con un nome o combinazione di tasti diversa, altrimenti eliminerà semplicemente" +"qualsiasi macro già esistente con lo stesso nome o con la stessa combinazione " +"di tasti." + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:1057 +msgid "Record Macro" +msgstr "Registra Macro" + +#. create buttons +#: ../geanymacro/src/geanymacro.c:1063 +msgid "Record" +msgstr "Registra" + +#: ../geanymacro/src/geanymacro.c:1064 +msgid "Cancel" +msgstr "Annulla" + +#: ../geanymacro/src/geanymacro.c:1071 +msgid "Macro Trigger:" +msgstr "Macro Trigger:" + +#: ../geanymacro/src/geanymacro.c:1085 +msgid "Macro Name:" +msgstr "Nome Macro:" + +#: ../geanymacro/src/geanymacro.c:1121 +#, c-format +msgid "" +"Macro name \"%s\"\n" +" is already in use.\n" +"Replace?" +msgstr "" +"Nome Macro \"%s\"\n" +" è già in uso.\n" +"Sostituire?" + +#: ../geanymacro/src/geanymacro.c:1137 +#, c-format +msgid "" +"Macro trigger \"%s\"\n" +" is already in use.\n" +"Replace?" +msgstr "" +"Il trigger Macro \"%s\"\n" +" è già in uso.\n" +"Sostituire?" + +#: ../geanymacro/src/geanymacro.c:1333 +#, c-format +msgid "Search %s, looking for %s%s%s.%s%s%s%s%s" +msgstr "Ricerca %s per %s%s%s.%s%s%s%s%s" + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:1388 +msgid "Search Options:" +msgstr "Opzioni di ricerca:" + +#. create buttons +#: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 +msgid "_Ok" +msgstr "_Ok" + +#: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 +#: ../geanymacro/src/geanymacro.c:1827 +msgid "_Cancel" +msgstr "_Annulla" + +#: ../geanymacro/src/geanymacro.c:1403 +msgid "Search Forwards" +msgstr "Cerca successivo" + +#: ../geanymacro/src/geanymacro.c:1404 +msgid "Search Backwards" +msgstr "Cerca precedente" + +#. create checkbox to check for search options +#: ../geanymacro/src/geanymacro.c:1410 +msgid "Search for contents of clipboard" +msgstr "Cerca contenuto negli appunti" + +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:93 +msgid "Search for:" +msgstr "Cerca per:" + +#. create checkbox to check for search options +#: ../geanymacro/src/geanymacro.c:1442 +msgid "Search is case sensitive" +msgstr "La ricerca è case-sensitive" + +#: ../geanymacro/src/geanymacro.c:1447 +msgid "Search for whole word" +msgstr "Cerca per parola intera" + +#: ../geanymacro/src/geanymacro.c:1452 +msgid "Search for start of word" +msgstr "Cerca all'inizio della parola" + +#: ../geanymacro/src/geanymacro.c:1457 +msgid "Search text is regular expression" +msgstr "Cerca regular-expression" + +#: ../geanymacro/src/geanymacro.c:1462 +msgid "Search text is POSIX compatible" +msgstr "Cerca testo POSIX-compatibile" + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:1531 +msgid "Edit Insert/Replace Text" +msgstr "Modifica Inserimento/Rimpiazzo testo" + +#: ../geanymacro/src/geanymacro.c:1544 +msgid "Text:" +msgstr "Testo:" + +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 +#, c-format +msgid "Insert/replace with \"%s\"" +msgstr "Inserisci/Sostituisci con \"%s\"" + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:1735 +#, c-format +msgid "Edit: %s" +msgstr "Modifica: %s" + +#. add column +#: ../geanymacro/src/geanymacro.c:1801 +msgid "Event" +msgstr "Evento" + +#. add buttons +#: ../geanymacro/src/geanymacro.c:1816 +msgid "Move _Up" +msgstr "Sposta _Su" + +#: ../geanymacro/src/geanymacro.c:1818 +msgid "Move Do_wn" +msgstr "Sposta _Giù" + +#: ../geanymacro/src/geanymacro.c:1820 +msgid "New _Above" +msgstr "Nuovo _Sopra" + +#: ../geanymacro/src/geanymacro.c:1821 +msgid "New _Below" +msgstr "Nuovo So_tto" + +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 +msgid "_Delete" +msgstr "_Elimina" + +#. create dialog box +#: ../geanymacro/src/geanymacro.c:2065 +msgid "Edit Macros" +msgstr "Modifica Macro" + +#: ../geanymacro/src/geanymacro.c:2095 +msgid "Macro Name" +msgstr "Nome Macro" + +#: ../geanymacro/src/geanymacro.c:2101 +msgid "Key Trigger" +msgstr "Tasto Trigger" + +#. add buttons +#: ../geanymacro/src/geanymacro.c:2116 +msgid "_Re-Record" +msgstr "_Re-Registra" + +#. add record macro menu entry +#: ../geanymacro/src/geanymacro.c:2260 +msgid "Record _Macro" +msgstr "Registra _Macro" + +#. add stop record macromenu entry +#: ../geanymacro/src/geanymacro.c:2266 +msgid "Stop Recording _Macro" +msgstr "Ferma Registrazione _Macro" + +#. add Edit Macro menu entry +#: ../geanymacro/src/geanymacro.c:2272 +msgid "_Edit Macros" +msgstr "_Modifica Macro" + +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" +"GMS : Geany Mini-Script filter Plugin\n" +"Questo plugin è uno strumento per applicare un filtro-script a:\n" +" o una selezione di testo,\n" +" o documento corrente,\n" +" o tutti i documenti della sessione corrente.\n" +"\n" +"Il fitlro può essere:\n" +" o uno script di shell Unix,\n" +" o script perl,\n" +" o script python,\n" +" o comandi sed,\n" +" o script awk.\n" +"\n" +"AUTORE\n" +" Scritto da Pascal BURLOT (December,2008)\n" +"\n" +"LICENZA:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." + +#: ../geanyminiscript/src/gms_gui.c:253 +msgid "Load Mini-Script File" +msgstr "Carica file Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:310 +msgid "Save Mini-Script File" +msgstr "Salva file Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:419 +msgid "Mini-Script Filter" +msgstr "Filtro Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:445 +msgid "Clear the mini-script window" +msgstr "Pulisci la finestra Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:450 +msgid "Load a mini-script into this window" +msgstr "Carica un Mini-Script in questa finestra" + +#: ../geanyminiscript/src/gms_gui.c:455 +msgid "Save the mini-script into a file" +msgstr "Salva il Mini-Script in un file" + +#: ../geanyminiscript/src/gms_gui.c:460 +msgid "Display a information about the mini-script plugin" +msgstr "Visualizza informazioni sul plugin Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:468 +msgid "select the mini-script type" +msgstr "Seleziona il tipo di Mini-Script" + +#. Hbox : Radio bouttons for choosing the input: +#. * selection/current document/all documents of the current session +#: ../geanyminiscript/src/gms_gui.c:499 +msgid "filter input" +msgstr "filtro input" + +#: ../geanyminiscript/src/gms_gui.c:501 +msgid "select the input of mini-script filter" +msgstr "seleziona l'input del filtro mini-script" + +#: ../geanyminiscript/src/gms_gui.c:507 +msgid "selection" +msgstr "selezione" + +#: ../geanyminiscript/src/gms_gui.c:508 +msgid "document" +msgstr "documento" + +#: ../geanyminiscript/src/gms_gui.c:509 +msgid "session" +msgstr "sessione" + +#. Hbox : Radio bouttons for choosing the output: +#. * current document/ or new document +#: ../geanyminiscript/src/gms_gui.c:518 +msgid "filter output" +msgstr "filtro output" + +#: ../geanyminiscript/src/gms_gui.c:520 +msgid "select the output of mini-script filter" +msgstr "seleziona l'output del filtro Mini-Script" + +#: ../geanyminiscript/src/gms_gui.c:526 +msgid "Current Doc." +msgstr "Doc. corrente" + +#: ../geanyminiscript/src/gms_gui.c:527 +msgid "New Doc." +msgstr "Nuovo Doc." + +#: ../geanyminiscript/src/gms_gui.c:748 +msgid "script configuration" +msgstr "Configurazione script" + +#: ../geanyminiscript/src/gms.c:58 +msgid "Mini Script" +msgstr "Mini Script" + +#: ../geanyminiscript/src/gms.c:59 +msgid "" +"A tool to apply a script filter on a text selection or current document(s)" +msgstr "" +"Uno strumento per applicare uno script filtro a una selezione di testo o " +"ai documenti correnti." + +#: ../geanyminiscript/src/gms.c:60 +msgid "Pascal BURLOT, a Geany user" +msgstr "Pascal BURLOT, un utente di Geany" + +#. Add an item to the Tools menu +#: ../geanyminiscript/src/gms.c:249 +msgid "_Mini-Script" +msgstr "_Mini-Script" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 +msgid "Numbered Bookmarks for Geany" +msgstr "Segnalibri numerati per Geany" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 +#, c-format, fuzzy +msgid "Unable to apply all markers to '%s' as all being used." +msgstr "Impossibile applicare tutti i marcatori a '%s' come tutti in uso." + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 +msgid "_Okay" +msgstr "_Okay" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 +#, c-format +msgid "" +"'%s' has been edited since it was last saved by geany. Marker positions may " +"be unreliable and will not be loaded.\n" +"Press Ignore to try an load markers anyway." +msgstr "" +"'%s' è stato modificato dall'ultimo salvataggio di Geany. La posizione dei " +"segnalibri potrebbe essere inaffidabile e non verranno quindi caricati.\n" +"Premi Ignora per provare a caricarli ugualmente." + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 +msgid "_Ignore" +msgstr "_Ignora" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 +msgid "remember fold state" +msgstr "Ricorda stato di espansione" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 +msgid "Center view when goto bookmark" +msgstr "Centra la vista quando vai a un segnalibro" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 +msgid "Move to start of line" +msgstr "Sposta a inizio riga" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 +msgid "Move to remembered position in line" +msgstr "Sposta nella posizione salvata della riga" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 +msgid "Move to position in current line" +msgstr "Sposta nella posizione corrente" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 +msgid "Move to End of line" +msgstr "Sposta a fine riga" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 +msgid "Save file settings with program settings" +msgstr "Salva le preferenze con le impostazioni del programma" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 +msgid "Save file settings to filename with suffix" +msgstr "Salva il file delle preferenze con un suffisso" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 +msgid "remember normal Bookmarks" +msgstr "Ricorda normali Segnalibri" + +#. create dialog box +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 +msgid "Numbered Bookmarks help" +msgstr "Aiuto segnalibri numerati" + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 +msgid "" +"This Plugin implements Numbered Bookmarks in Geany, as well as remembering " +"the state of folds, and positions of standard non-numbered bookmarks when a " +"file is saved.\n" +"\n" +"It allows you to use up to 10 numbered bookmarks. To set a numbered bookmark " +"press Ctrl+Shift+a number from 0 to 9. You will see a marker apear next to " +"the line number. If you press Ctrl+Shift+a number on a line that already has " +"that bookmark number then it removes the bookmark, otherwise it will move " +"the bookmark there if it was set on a different line, or create it if it had " +"not already been set. Only the most recently set bookmark on a line will be " +"shown, but you can have more than one bookmark per line. To move to a " +"previously set bookmark, press Ctrl+a number from 0 to 9." +msgstr "" +"Questo Plugin implementa i Segnalibri Numerati in Geany, lo stato delle espansioni " +"e contrazioni del codice e le posizioni dei segnalibri standard non numerati " +"questo il file viene salvato.\n" +"\n" +"Ti permette di usare fino a 10 segnalibri numerati. Per avere un sengalibro " +"numerato premi Ctrl+Shift+ un numero da 0 a 9. Vedrai un simbolo comparire " +"vicino al numero della riga. Se premi Ctrl+Shift+ un numero su una riga " +"che ne ha già quel numero, quel segnalibro sarà rimosso, altrimenti si " +"sposterà da un'altra riga (se esiste) oppure verrà creato. Solo l'ultimo " +"segnalibro inserito su ogni riga verrà visualizzato, ma puoi avere più " +"segnalibri per linea. Per muoverti a un segnalibro precedentemente impostato " +"premi Ctrl+un numero da 0 a 9." + +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 +#, fuzzy +msgid "Unable to apply markers as all being used." +msgstr "Impossibile applicare tutti i marcatori come tutti in uso" + +#: ../geanypg/src/decrypt_cb.c:33 ../geanypg/src/encrypt_cb.c:32 +#: ../geanypg/src/sign_cb.c:33 +msgid "couldn't create tempfile" +msgstr "Impossibile creare file temporaneo" + +#: ../geanypg/src/encrypt_cb.c:84 +#, c-format +msgid "" +"The key with user ID \"%s\" has validity \"%s\".\n" +"\n" +"WARNING: It is NOT certain that the key belongs to the person named in the " +"user ID.\n" +"\n" +"Are you *really* sure you want to use this key anyway?" +msgstr "" +"La chiave con user ID \"%s\" ha validità \"%s\".\n" +"\n" +"ATTENZIONE: Non è certo che appartiene alla persona indicata nello user ID. " +"\n" +"\n" +"Sei *davvero* sicuro di voler usare questa chiave comunque?" + +#: ../geanypg/src/encrypt_cb.c:96 +msgid "" +"No recipients were selected,\n" +"use symetric cipher?" +msgstr "" +"Nessun destinatario selezionato,\n" +"usare cifratura simmetrica?" + +#: ../geanypg/src/geanypg.c:37 +msgid "gpg encryption plugin for geany" +msgstr "Plugin per la crittografia gpg in Geany" + +#: ../geanypg/src/geanypg.c:39 +msgid "Hans Alves " +msgstr "Hans Alves " + +#: ../geanypg/src/geanypg.c:47 +msgid "Using libgpgme version:" +msgstr "Usando versione libgpgme:" + +#: ../geanypg/src/geanypg.c:60 ../geanypg/src/geanypg.c:61 +msgid "Error from" +msgstr "Errore da" + +#: ../geanypg/src/geanypg.c:86 +msgid "Encrypt" +msgstr "Crifra" + +#: ../geanypg/src/geanypg.c:87 +msgid "Sign" +msgstr "Firma" + +#: ../geanypg/src/geanypg.c:88 +msgid "Decrypt / Verify" +msgstr "Decifra / Verifica" + +#: ../geanypg/src/geanypg.c:89 +msgid "Verify detached signature" +msgstr "Verifica firma separata" + +#: ../geanypg/src/key_selection_dialog.c:152 +msgid "Please select any recipients" +msgstr "Si prega di selezionare eventuali destinatari" + +#: ../geanypg/src/key_selection_dialog.c:154 +msgid "Sign the message as:" +msgstr "Firma il messaggio come:" + +#: ../geanypg/src/key_selection_dialog.c:162 +msgid "Select recipients" +msgstr "Seleziona destinatari" + +#: ../geanypg/src/key_selection_dialog.c:224 +msgid "Choose a key to sign with:" +msgstr "Scegli una chiave per firmare:" + +#: ../geanypg/src/key_selection_dialog.c:232 +msgid "Select signer" +msgstr "Seleziona firmatario" + +#. shouldn't get here +#: ../geanypg/src/pinentry.c:111 +msgid "Could not use pinentry." +msgstr "Impossibile usare pinentry." + +#: ../geanypg/src/pinentry.c:123 +msgid "Unexpected output from pinentry." +msgstr "Output inaspettato da pinentry." + +#. read the rest of the first line after OK +#: ../geanypg/src/pinentry.c:131 +msgid "Passphrase entry" +msgstr "Inserimento parola chiave" + +#: ../geanypg/src/pinentry.c:135 +msgid "Passphrase" +msgstr "Parola chiave" + +#: ../geanypg/src/pinentry.c:140 +msgid "Enter passphrase for" +msgstr "Inserisci parola chiave per" + +#: ../geanypg/src/pinentry.c:171 +msgid "pinentry gave error" +msgstr "pinentry ha resituito un errore" + +#: ../geanypg/src/pinentry.c:174 +msgid "Unexpected error from pinentry." +msgstr "Errore inaspettato da pinentry." + +#: ../geanypg/src/pinentry.c:199 +msgid "" +"Error, Passphrase input without using gpg-agent is not supported on Windows " +"yet." +msgstr "" +"Errore, l'input di parola chiave senza usare un gpg-agent non è ancora supportato " +"su Windows" + +#: ../geanypg/src/verify_aux.c:53 +msgid "a key with fingerprint" +msgstr "una chiave con fingerprint" + +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 +msgid "unknown" +msgstr "sconosciuto" + +#: ../geanypg/src/verify_aux.c:67 +msgid "undefined" +msgstr "non definito" + +#: ../geanypg/src/verify_aux.c:68 +msgid "never" +msgstr "mai" + +#: ../geanypg/src/verify_aux.c:69 +msgid "marginal" +msgstr "marginale" + +#: ../geanypg/src/verify_aux.c:70 +msgid "full" +msgstr "pieno" + +#: ../geanypg/src/verify_aux.c:71 +msgid "ultimate" +msgstr "finale" + +#: ../geanypg/src/verify_aux.c:72 ../geanypg/src/verify_aux.c:74 +msgid "[bad validity value]" +msgstr "[valore validità errato]" + +#. buffer should be more than 105 bytes long +#: ../geanypg/src/verify_aux.c:79 +msgid " valid" +msgstr " valido" + +#: ../geanypg/src/verify_aux.c:80 +msgid " green" +msgstr " verde" + +#: ../geanypg/src/verify_aux.c:81 +msgid " red" +msgstr " rosso" + +#: ../geanypg/src/verify_aux.c:82 +msgid " revoked" +msgstr " revocato" + +#: ../geanypg/src/verify_aux.c:83 +msgid " key-expired" +msgstr "chiave scaduta" + +#: ../geanypg/src/verify_aux.c:84 +msgid " sig-expired" +msgstr " firma scaduta" + +#: ../geanypg/src/verify_aux.c:85 +msgid " key-missing" +msgstr " chiave mancante" + +#: ../geanypg/src/verify_aux.c:86 +msgid " crl-missing" +msgstr " crl mancante" + +#: ../geanypg/src/verify_aux.c:87 +msgid " crl-too-old" +msgstr " crl troppo vecchio" + +#: ../geanypg/src/verify_aux.c:88 +msgid " bad-policy" +msgstr " policy errata" + +#: ../geanypg/src/verify_aux.c:89 +msgid " sys-error" +msgstr " errore sistema" + +#: ../geanypg/src/verify_aux.c:96 +#, c-format +msgid "" +"status ....: %s\n" +"summary ...:%s\n" +"fingerprint: %s\n" +"created ...: %sexpires ...: %svalidity ..: %s\n" +"val.reason : %s\n" +"pubkey algo: %s\n" +"digest algo: %s\n" +"pka address: %s\n" +"pka trust .: %s\n" +"other flags:%s%s\n" +"notations .: %s\n" +msgstr "" +"stato ....: %s\n" +"riepilogo ...:%s\n" +"fingerprint: %s\n" +"creato ...: %sexpires ...: %svalidità ..: %s\n" +"motivo val.: %s\n" +"pubkey algo: %s\n" +"digest algo: %s\n" +"pka address: %s\n" +"pka trust .: %s\n" +"altri flags:%s%s\n" +"note .: %s\n" + +#: ../geanypg/src/verify_aux.c:119 ../geanypg/src/verify_aux.c:124 +msgid "Unknown\n" +msgstr "Sconosciuto\n" + +#: ../geanypg/src/verify_aux.c:129 ../geanypg/src/verify_aux.c:136 +#: ../geanypg/src/verify_aux.c:147 ../geanypg/src/verify_aux.c:154 +msgid "[None]" +msgstr "[Nessuno]" + +#: ../geanypg/src/verify_aux.c:134 ../geanypg/src/verify_aux.c:135 +#: ../geanypg/src/verify_aux.c:152 ../geanypg/src/verify_aux.c:153 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 +msgid "n/a" +msgstr "n.d." + +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 +msgid "bad" +msgstr "errato" + +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 +msgid "okay" +msgstr "okay" + +#: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 +msgid "RFU" +msgstr "RFU" + +#: ../geanypg/src/verify_aux.c:138 ../geanypg/src/verify_aux.c:156 +msgid " wrong-key-usage" +msgstr " uso-chiave-errato" + +#: ../geanypg/src/verify_aux.c:139 ../geanypg/src/verify_aux.c:156 +msgid " chain-model" +msgstr " chain-model" + +#: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 +msgid "yes" +msgstr "sì" + +#: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 +msgid "no" +msgstr "no" + +#: ../geanypg/src/verify_aux.c:175 +msgid "Found a signature from" +msgstr "Cerca una firma da" + +#: ../geanypg/src/verify_aux.c:178 +msgid "Signature" +msgstr "Firma" + +#: ../geanypg/src/verify_aux.c:201 +msgid "Could not find verification results" +msgstr "Impossibile trovare risultati della verifica" + +#: ../geanypg/src/verify_aux.c:202 +msgid "Error, could not find verification results" +msgstr "Errore, impossibile trovare risultati della verifica" + +#: ../geanypg/src/verify_cb.c:27 +msgid "Open a signature file" +msgstr "Apri un file firma" + +#: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 +#: ../gproject/src/gproject-sidebar.c:849 +msgid "Project" +msgstr "Progetto" + +#: ../geanyprj/src/geanyprj.c:38 +msgid "Alternative project support." +msgstr "Supporto alternativo progetto." + +#: ../geanyprj/src/geanyprj.c:224 +msgid "Find a text in geanyprj's project" +msgstr "Cerca un testo in un progetto geanyprj" + +#: ../geanyprj/src/geanyprj.c:238 +msgid "Display sidebar" +msgstr "Visualizza barra laterale" + +#: ../geanyprj/src/menu.c:92 +msgid "Project Preferences" +msgstr "Preferenze progetto" + +#: ../geanyprj/src/menu.c:101 ../geanyprj/src/menu.c:377 +#: ../geanyprj/src/sidebar.c:172 +msgid "New Project" +msgstr "Nuovo progetto" + +#: ../geanyprj/src/menu.c:110 +msgid "C_reate" +msgstr "C_rea" + +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 +msgid "Name:" +msgstr "Nome:" + +#: ../geanyprj/src/menu.c:132 +msgid "Location:" +msgstr "Posizione:" + +#: ../geanyprj/src/menu.c:147 +msgid "Choose Project Location" +msgstr "Scegli una posizione per il progetto" + +#: ../geanyprj/src/menu.c:155 +msgid "Base path:" +msgstr "Percorso base:" + +#: ../geanyprj/src/menu.c:160 +msgid "" +"Base directory of all files that make up the project. This can be a new " +"path, or an existing directory tree. You can use paths relative to the " +"project filename." +msgstr "" +"Directory base di tutti i file che compongono il progetto. Questo può essere " +"un nuovo percorso o uno già esistente. Puoi usare anche percorsi relativi " +"al file del progetto." + +#: ../geanyprj/src/menu.c:163 +msgid "Choose Project Base Path" +msgstr "Scegli percorso base del progetto" + +#: ../geanyprj/src/menu.c:170 +msgid "Generate file list on load" +msgstr "Genera lista file all'apertura" + +#: ../geanyprj/src/menu.c:172 +msgid "" +"Automatically add files that match project type on project load " +"automatically. You can't manually add/remove files if you checked this " +"option, since your modification will be lost on on next project load" +msgstr "" +"Aggiunge automaticamente i file che corrispondono al tipo progetto all'" +"apertura di quest'ultimo. Non puoi manualmente aggiungere/rimuovere file " +"se selezioni questa opzione, perché le tue modifiche andranno perse alla " +"prossima apertura del progetto." + + +#: ../geanyprj/src/menu.c:180 +msgid "Type:" +msgstr "Tipo:" + +#: ../geanyprj/src/menu.c:218 +#, c-format +msgid "Project file \"%s\" already exists" +msgstr "Il file del progetto \"%s\" esiste già" + +#: ../geanyprj/src/menu.c:368 +msgid "_Project" +msgstr "_Progetto" + +#: ../geanyprj/src/menu.c:386 ../geanyprj/src/sidebar.c:181 +msgid "Delete Project" +msgstr "Elimina Progetto" + +#: ../geanyprj/src/menu.c:397 ../geanyprj/src/sidebar.c:194 +msgid "Add File" +msgstr "Aggiungi file" + +#: ../geanyprj/src/menu.c:408 ../geanyprj/src/sidebar.c:216 +msgid "Preferences" +msgstr "Preferenze" + +#: ../geanyprj/src/menu.c:419 ../geanyprj/src/sidebar.c:229 +msgid "Find in Project" +msgstr "Cerca nel progetto" + +#: ../geanyprj/src/sidebar.c:203 +msgid "Remove File" +msgstr "Rimuovi file" + +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:828 +msgid "H_ide Sidebar" +msgstr "Nascond_i barra laterale" + +#: ../geanyprj/src/xproject.c:96 +#, c-format +msgid "Project \"%s\" opened." +msgstr "Progetto \"%s\" aperto." + +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "GeanyPy" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "Supporto plugins in Python" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Impossibile 'pre-load' sulla libreria Python: %s." + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "Impossibile importare modulo 'manager'" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "Impossibile ottenere PluginManager da modulo 'manager'" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "Impossibile trovare la directory di sistema per i plugin." + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "Impossibile instanziare new PluginManager" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "Impossibile ottenere show_all() sul plugin manager" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Impossibile creare la Python plugins directory: %s: %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "Python Plugin Manager" + +#: ../geanysendmail/src/geanysendmail.c:43 +msgid "GeanySendMail" +msgstr "GeanySendMail" + +#: ../geanysendmail/src/geanysendmail.c:44 +msgid "" +"A little plugin to send the current file as attachment by user's favorite " +"mailer" +msgstr "" +"Un picolo plugin per inviare il file corrente come allegato del programma " +"di posta preferito" + +#: ../geanysendmail/src/geanysendmail.c:98 +msgid "Recipient's Address" +msgstr "Indirizzo destinatario" + +#: ../geanysendmail/src/geanysendmail.c:100 +msgid "Enter the recipient's e-mail address:" +msgstr "Inserisci l'email del destinatario:" + +#: ../geanysendmail/src/geanysendmail.c:138 +msgid "Filename placeholder not found. The executed command might have failed." +msgstr "Segnaposto nome file non trovato. Il comando eseguito potrebbe aver fallito." + +#: ../geanysendmail/src/geanysendmail.c:144 +msgid "" +"Recipient address placeholder not found. The executed command might have " +"failed." +msgstr "" +"Segnaposto indirizzo destinatario non trovato. Il comando eseguito potrebbe " +"aver fallito." + +#: ../geanysendmail/src/geanysendmail.c:159 +msgid "Could not execute mailer. Please check your configuration." +msgstr "Impossibile eseguire il gestore mail. Controlla la tua configurazione. " + +#: ../geanysendmail/src/geanysendmail.c:168 +msgid "Please define a mail client first." +msgstr "Devi definire un client mail prima." + +#: ../geanysendmail/src/geanysendmail.c:173 +msgid "File has to be saved before sending." +msgstr "Il file deve essere salvato prima di inviare." + +#: ../geanysendmail/src/geanysendmail.c:191 +msgid "Mail" +msgstr "Mail" + +#: ../geanysendmail/src/geanysendmail.c:222 +msgid "Send by mail" +msgstr "Inviato via mail" + +#. add a label and a text entry to the dialog +#: ../geanysendmail/src/geanysendmail.c:312 +msgid "Path and options for the mail client:" +msgstr "Percorso e opzioni per il client mail:" + +#: ../geanysendmail/src/geanysendmail.c:320 +msgid "" +"Note: \n" +"\t%f will be replaced by your file.\n" +"\t%r will be replaced by recipient's email address.\n" +"\t%b will be replaced by basename of a file\n" +"\tExamples:\n" +"\tsylpheed --attach \"%f\" --compose \"%r\"\n" +"\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" +msgstr "" +"Note: \n" +"\t%f sarà sostituito dal nome del tuo file.\n" +"\t%r sarà sostituito dall'indirizzo mail del destinatario.\n" +"\t%b sarà sostituito dal percorso base del file\n" +"\tEsempi:\n" +"\tsylpheed --attach \"%f\" --compose \"%r\"\n" +"\tmutt -s \"Invio '%b'\" -a \"%f\" \"%r\"" + +#: ../geanysendmail/src/geanysendmail.c:330 +msgid "Show toolbar icon" +msgstr "Visualizza icona nella toolbar" + +#: ../geanysendmail/src/geanysendmail.c:332 +msgid "Shows a icon in the toolbar to send file more easy." +msgstr "Visualizza un'icona nella toolbar per inviare il file più semplicemente." + +#: ../geanysendmail/src/geanysendmail.c:338 +msgid "Use dialog for entering email address of recipients" +msgstr "Usa un dialogo per inserire gli indirizzi email dei destinatari" + +#: ../geanysendmail/src/geanysendmail.c:360 +msgid "Send file by mail" +msgstr "Invia file via mail" + +#. Build up menu entry +#: ../geanysendmail/src/geanysendmail.c:383 +msgid "_Mail document" +msgstr "Documento _mail" + +#: ../geanysendmail/src/geanysendmail.c:386 +msgid "" +"Sends the opened file as unzipped attachment by any mailer from your $PATH" +msgstr "" +"Invia un file aperto come allegato non compresso da qualsiasi programma " +"dal tuo $PATH" + +#: ../geanyvc/src/geanyvc.c:53 +msgid "GeanyVC" +msgstr "GeanyVC" + +#: ../geanyvc/src/geanyvc.c:54 +msgid "Interface to different Version Control systems." +msgstr "Interfaccia per differenti sistemi di Controllo Versione (VCS)" + +#: ../geanyvc/src/geanyvc.c:475 +#, c-format +msgid "geanyvc: s_spawn_sync error: %s" +msgstr "geanyvc: errore s_spawn_sync: %s" + +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "File %s: azioni %s eseguiti da %s." + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 +#, c-format +msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" +msgstr "geanyvc: vcdiff_file_activated: Impossibile rinonimare '%s' in '%s'" + +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 +msgid "No changes were made." +msgstr "Nessuna modifica effettuata." + +#: ../geanyvc/src/geanyvc.c:728 +msgid "No history available" +msgstr "Cronologia non disponibile" + +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 +#, c-format +msgid "Do you really want to revert: %s?" +msgstr "Vuoi davvero ripristinare: %s?" + +#: ../geanyvc/src/geanyvc.c:937 +#, c-format +msgid "Do you really want to add: %s?" +msgstr "Vuoi davvero aggiungere: %s?" + +#: ../geanyvc/src/geanyvc.c:944 +#, c-format +msgid "Do you really want to remove: %s?" +msgstr "Vuoi davvero rimuovere: %s?" + +#: ../geanyvc/src/geanyvc.c:967 +msgid "Do you really want to update?" +msgstr "Vuoi davvero aggiornare: %s?" + +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" +"Le differenze risultanti non possono essere visualizzare perché i cambiamenti " +"sono troppo grandi da mostrare e rallenterebbero eccessivamente l'interfaccia.\n" +"\n" +"Per vedere le differenze, chiudere questa finestra ed aprirle in Geany " +"tramite in menu GeanyVC (Directory Base -> Diff)." + +#: ../geanyvc/src/geanyvc.c:1243 +msgid "Commit Y/N" +msgstr "Commit S/N" + +#: ../geanyvc/src/geanyvc.c:1253 +msgid "Status" +msgstr "Stato" + +#: ../geanyvc/src/geanyvc.c:1260 +msgid "Path" +msgstr "Percorso" + +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "Linea: %d Colonna: %d" + +#: ../geanyvc/src/geanyvc.c:1370 +msgid "Commit" +msgstr "Commit" + +#: ../geanyvc/src/geanyvc.c:1412 +msgid "_De-/select all files" +msgstr "_De-/seleziona tutti i file" + +#: ../geanyvc/src/geanyvc.c:1456 +msgid "Commit message:" +msgstr "Messaggio commit:" + +#: ../geanyvc/src/geanyvc.c:1475 +msgid "C_ommit" +msgstr "C_ommit" + +#: ../geanyvc/src/geanyvc.c:1556 +msgid "Nothing to commit." +msgstr "Niente da committare." + +#: ../geanyvc/src/geanyvc.c:1602 +#, c-format +msgid "Error initializing spell checking: %s" +msgstr "Errore nell'inizializzazione del controllo ortografia: %s" + +#: ../geanyvc/src/geanyvc.c:1614 +#, c-format +msgid "" +"Error while setting up language for spellchecking. Please check " +"configuration. Error message was: %s" +msgstr "" +"Errore mentre la lingua del controllo ortografia veniva impostata. Si " +"prega di controllare la configurazione. Messaggio di errore: %s" + +#: ../geanyvc/src/geanyvc.c:1890 +msgid "Set Changed-flag for document tabs created by the plugin" +msgstr "Imposta flag-modificato per i tabs documenti creati dal plugin" + +#: ../geanyvc/src/geanyvc.c:1893 +msgid "" +"If this option is activated, every new by the VC-plugin created document tab " +"will be marked as changed. Even this option is useful in some cases, it " +"could cause a big number of annoying \"Do you want to save\"-dialogs." +msgstr "" +"Se questa opzione è attivata, ogni nuovo documento creato da VC-plugin " +"sarà impostato come modificato. Anche se questa opzione può essere utile " +"in alcuni casi, potrebbe produrre un noioso grande numero di finestre " +"\"Vuoi salvare il file?\"" + +#: ../geanyvc/src/geanyvc.c:1901 +msgid "Confirm adding new files to a VCS" +msgstr "Conferma aggiunta nuovo file to VCS" + +#: ../geanyvc/src/geanyvc.c:1904 +msgid "Shows a confirmation dialog on adding a new (created) file to VCS." +msgstr "" +"Visualizza un dialogo di conferma per aggiungere un nuovo (creato) file " +"al VCS." + +#: ../geanyvc/src/geanyvc.c:1910 +msgid "Maximize commit dialog" +msgstr "Ingrandisci dialogo commit" + +#: ../geanyvc/src/geanyvc.c:1911 +msgid "Show commit dialog maximize." +msgstr "Visualizza dialogo commit ingrandito." + +#: ../geanyvc/src/geanyvc.c:1917 +msgid "Use external diff viewer" +msgstr "Usa editor diff esterno" + +#: ../geanyvc/src/geanyvc.c:1919 +msgid "Use external diff viewer for file diff." +msgstr "Usa editor diff esterno per differenze." + +#: ../geanyvc/src/geanyvc.c:1925 +msgid "Show VC entries at editor menu" +msgstr "Visualizza voci VC nel menu editor" + +#: ../geanyvc/src/geanyvc.c:1927 +msgid "Show entries for VC functions inside editor menu" +msgstr "Visualizza voci per le funzioni VC all'interno del menu editor" + +#: ../geanyvc/src/geanyvc.c:1932 +msgid "Attach menu to menubar" +msgstr "Poni menu nella menubar" + +#: ../geanyvc/src/geanyvc.c:1934 +msgid "" +"Whether menu for this plugin are getting placed either inside tools menu or " +"directly inside Geany's menubar.Will take in account after next start of " +"GeanyVC" +msgstr "" +"Imposta se il menu per questo plugin deve essere posizionato all'interno " +"del menu strumenti o direttamente nella toolbar di Geany. La modifica sarà " +"visibile dopo il riavvio di Geany." + +#: ../geanyvc/src/geanyvc.c:1942 +msgid "Enable CVS" +msgstr "Abilita CVS" + +#: ../geanyvc/src/geanyvc.c:1947 +msgid "Enable GIT" +msgstr "Abilita GIT" + +#: ../geanyvc/src/geanyvc.c:1952 +msgid "Enable SVN" +msgstr "Abilita SVN" + +#: ../geanyvc/src/geanyvc.c:1957 +msgid "Enable SVK" +msgstr "Abilita SVK" + +#: ../geanyvc/src/geanyvc.c:1962 +msgid "Enable Bazaar" +msgstr "Abilita Bazaar" + +#: ../geanyvc/src/geanyvc.c:1967 +msgid "Enable Mercurial" +msgstr "Abilita Mercurial" + +#: ../geanyvc/src/geanyvc.c:1973 +msgid "Spellcheck language" +msgstr "Lingua controllo ortografia" + +#: ../geanyvc/src/geanyvc.c:2064 +msgid "_VC file Actions" +msgstr "_VC file azioni" + +#. Diff of current file +#. Diff of the current dir +#. Complete diff of base directory +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 +msgid "_Diff" +msgstr "_Diff" + +#: ../geanyvc/src/geanyvc.c:2073 +msgid "Make a diff from the current active file" +msgstr "Crea un diff dal file attivo corrente" + +#. Revert current file +#. Revert current dir +#. Revert everything +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 +msgid "_Revert" +msgstr "_Ripristina (revert)" + +#: ../geanyvc/src/geanyvc.c:2081 +msgid "Restore pristine working copy file (undo local edits)." +msgstr "Ripristina una versione originale del file (annulla modifiche locali)." + +#. Blame for current file +#: ../geanyvc/src/geanyvc.c:2090 +msgid "_Blame" +msgstr "_Responsabilità" + +#: ../geanyvc/src/geanyvc.c:2093 +msgid "Shows the changes made at one file per revision and author." +msgstr "Visualizza le modifiche fatte a un file per revisione e autore." + +#. History/log of current file +#. History/log of the current dir +#. Complete History/Log of base directory +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 +msgid "_History (log)" +msgstr "_Cronologia (log)" + +#: ../geanyvc/src/geanyvc.c:2103 +msgid "Shows the log of the current file" +msgstr "Visualizza i log del file corrente" + +#. base version of the current file +#: ../geanyvc/src/geanyvc.c:2108 +msgid "_Original" +msgstr "_Originale" + +#: ../geanyvc/src/geanyvc.c:2111 +msgid "Shows the original of the current file" +msgstr "Visualizza l'originale del file corrente" + +#. add current file +#: ../geanyvc/src/geanyvc.c:2119 +msgid "_Add to Version Control" +msgstr "_Aggiungi a Controllo Versione" + +#: ../geanyvc/src/geanyvc.c:2121 +msgid "Add file to repository." +msgstr "Aggiungi file al repository." + +#. remove current file +#: ../geanyvc/src/geanyvc.c:2127 +msgid "_Remove from Version Control" +msgstr "_Rimuovi da Controllo Versione" + +#: ../geanyvc/src/geanyvc.c:2129 +msgid "Remove file from repository." +msgstr "Rimuovi file da repository." + +#: ../geanyvc/src/geanyvc.c:2144 +msgid "_Directory" +msgstr "_Directory" + +#: ../geanyvc/src/geanyvc.c:2150 +msgid "Make a diff from the directory of the current active file" +msgstr "Crea una diff dalla directory del file attivo corrente" + +#: ../geanyvc/src/geanyvc.c:2159 +msgid "Restore original files in the current folder (undo local edits)." +msgstr "" +"Ripristina file originali nella cartella corrente (annulla modifiche locali)" + +#: ../geanyvc/src/geanyvc.c:2169 +msgid "Shows the log of the current directory" +msgstr "Visualizza log directory corrente" + +#: ../geanyvc/src/geanyvc.c:2183 +msgid "_Base Directory" +msgstr "_Base Directory" + +#: ../geanyvc/src/geanyvc.c:2189 +msgid "Make a diff from the top VC directory" +msgstr "Crea diff dalla directory VC primaria" + +#: ../geanyvc/src/geanyvc.c:2197 +msgid "Revert any local edits." +msgstr "Annulla qualsiasi modifica locale." + +#: ../geanyvc/src/geanyvc.c:2210 +msgid "Shows the log of the top VC directory" +msgstr "Visualizza log della directory VC primaria" + +#: ../geanyvc/src/geanyvc.c:2236 +msgid "VC _Commit" +msgstr "VC _Commit" + +#: ../geanyvc/src/geanyvc.c:2271 +msgid "Show diff of file" +msgstr "Visualizza diff del file" + +#: ../geanyvc/src/geanyvc.c:2273 +msgid "Show diff of directory" +msgstr "Visualizza diff della directory" + +#: ../geanyvc/src/geanyvc.c:2275 +msgid "Show diff of basedir" +msgstr "Visualizza diff della basedir" + +#: ../geanyvc/src/geanyvc.c:2278 +msgid "Commit changes" +msgstr "Commit cambiamenti" + +#: ../geanyvc/src/geanyvc.c:2280 +msgid "Show status" +msgstr "Visualizza status" + +#: ../geanyvc/src/geanyvc.c:2282 +msgid "Revert single file" +msgstr "Ripristina singolo file" + +#: ../geanyvc/src/geanyvc.c:2284 +msgid "Revert directory" +msgstr "Ripristina directory" + +#: ../geanyvc/src/geanyvc.c:2286 +msgid "Revert base directory" +msgstr "Ripristina directory base" + +#: ../geanyvc/src/geanyvc.c:2288 +msgid "Update file" +msgstr "Aggiorna file" + +#: ../geanyvc/src/geanyvc.c:2316 +msgid "_VC" +msgstr "_VC" + +#: ../geanyvc/src/geanyvc.c:2322 +msgid "_Version Control" +msgstr "_Version Control" + +#. Status of basedir +#: ../geanyvc/src/geanyvc.c:2344 +msgid "_Status" +msgstr "_Status" + +#: ../geanyvc/src/geanyvc.c:2346 +msgid "Show status." +msgstr "Visualizza status." + +#: ../geanyvc/src/geanyvc.c:2353 +msgid "Update from remote repository." +msgstr "Aggiorna dal repository remoto." + +#. Commit all changes +#: ../geanyvc/src/geanyvc.c:2358 +msgid "_Commit" +msgstr "_Commit" + +#: ../geanyvc/src/geanyvc.c:2360 +msgid "Commit changes." +msgstr "Commit modifiche." + +#: ../geniuspaste/src/geniuspaste.c:101 +msgid "Paste your code on your favorite pastebin" +msgstr "Incolla il tuo codice da un pastebin preferito" + +#: ../geniuspaste/src/geniuspaste.c:222 +msgid "Refusing to create blank paste" +msgstr "Rifiuta di creare appunti vuoti" + +#: ../geniuspaste/src/geniuspaste.c:341 +msgid "" +"Unable to paste the code on codepad.org\n" +"Retry or select another pastebin." +msgstr "" +"Impossibile incolla il codice su codepad.org\n" +"Riprova o seleziona un altro pastebin." + +#: ../geniuspaste/src/geniuspaste.c:393 +msgid "Paste Successful" +msgstr "Appunti caricato correttamente" + +#: ../geniuspaste/src/geniuspaste.c:395 +#, c-format +msgid "" +"Your paste can be found here:\n" +"%s" +msgstr "" +"Puoi trovare i tuoi appunti qui:\n" +"%s" + +#: ../geniuspaste/src/geniuspaste.c:403 +#, c-format +msgid "" +"Unable to paste the code. Check your connection and retry.\n" +"Error code: %d\n" +msgstr "" +"Impossibile caricare il codice. Controlla la tua connessione e riprova.\n" +"Codice errore: %d\n" + +#: ../geniuspaste/src/geniuspaste.c:416 +msgid "There are no opened documents. Open one and retry.\n" +msgstr "Non ci sono documenti aperti. Aprine uno e riprova.\n" + +#: ../geniuspaste/src/geniuspaste.c:429 +msgid "The author name field is empty!" +msgstr "Il campo del nome autore è vuoto!" + +#: ../geniuspaste/src/geniuspaste.c:448 +msgid "Select a pastebin:" +msgstr "Seleziona un pastbin:" + +#: ../geniuspaste/src/geniuspaste.c:451 +msgid "Enter the author name:" +msgstr "Inserisci nome autore:" + +#: ../geniuspaste/src/geniuspaste.c:466 +msgid "Show your paste in a new browser tab" +msgstr "Visualizza i tuoi appunti in un nuovo tab del browser" + +#: ../geniuspaste/src/geniuspaste.c:488 +msgid "_Paste it!" +msgstr "_Incollalo!" + +#: ../gproject/src/gproject-main.c:36 ../gproject/src/gproject-project.c:455 +msgid "GProject" +msgstr "GProject" + +#: ../gproject/src/gproject-main.c:37 +msgid "Glob-pattern-based project management plugin for Geany." +msgstr "Plugin per la gestione del progetto Glob-pattern-based in Geany." + +#: ../gproject/src/gproject-menu.c:353 +msgid "Find in Project Files" +msgstr "Cerca nei file del progetto" + +#: ../gproject/src/gproject-menu.c:359 +msgid "Find in project files" +msgstr "Cerca nei file del progetto" + +#: ../gproject/src/gproject-menu.c:363 +msgid "Find Project File" +msgstr "Cerca file progetto" + +#: ../gproject/src/gproject-menu.c:369 +msgid "Find project file" +msgstr "Cerca file progetto" + +#: ../gproject/src/gproject-menu.c:371 +msgid "Swap Intestazione/Sorgente" +msgstr "Scambia Intestazione/Sorgente" + +#: ../gproject/src/gproject-menu.c:376 +msgid "Swap intestazione/sorgente" +msgstr "Scambia intestazione/sorgente" + +#: ../gproject/src/gproject-menu.c:382 +msgid "Open Selected File (gproject)" +msgstr "Open file selezionato (gproject)" + +#: ../gproject/src/gproject-project.c:406 +msgid "Source patterns:" +msgstr "Patterns sorgente:" + +#: ../gproject/src/gproject-project.c:412 +msgid "" +"Space separated list of patterns that are used to identify source files." +msgstr "" +"Lista separata da spazi dei patterns che saranno usati per identificare " +"i file sorgenti." + +#: ../gproject/src/gproject-project.c:417 +msgid "Header patterns:" +msgstr "Intestazione patterns:" + +#: ../gproject/src/gproject-project.c:423 +msgid "" +"Space separated list of patterns that are used to identify headers. Used " +"mainly for header/source swapping." +msgstr "" +"Lista separata da spazi dei patterns che saranno usati per identificare " +"i file intestazione. Usato principalmente per scambiare intestazione/sorgente" + +#: ../gproject/src/gproject-project.c:429 +msgid "Ignored dirs patterns:" +msgstr "Ignora patters directory:" + +#: ../gproject/src/gproject-project.c:435 +msgid "" +"Space separated list of patterns that are used to identify directories that " +"are not scanned for source files." +msgstr "" +"Lista separata da spazi dei patterns che saranno usati per identificare " +"le directory che non saranno scansione per file sorgenti." + +#: ../gproject/src/gproject-project.c:443 +msgid "Generate tags for all project files" +msgstr "Genera tags per tutti i file del progetto" + +#: ../gproject/src/gproject-project.c:445 +msgid "" +"Generate tag list for all project files instead of only for the currently " +"opened files. Too slow for big projects (>1000 files) and should be disabled " +"in this case." +msgstr "" +"Genera lista tag per tutti i file del progetto al posto dei soli file " +"correttamente aperti. Troppo lento per grandi progetti (>1000 files) e " +"dovrebbe essere disabilitato in questo caso." + +#: ../gproject/src/gproject-project.c:451 +msgid "" +"Note: set the patterns of files belonging to the project under the Project " +"tab." +msgstr "" +"Nota: impostare i patterns dei file che appartengono al progetto sotto il " +"tab Progetto" + +#: ../gproject/src/gproject-sidebar.c:82 +#: ../gproject/src/gproject-sidebar.c:817 +msgid "Find File" +msgstr "Cerca file" + +#: ../gproject/src/gproject-sidebar.c:109 +msgid "Search inside:" +msgstr "Cerca all'interno:" + +#: ../gproject/src/gproject-sidebar.c:121 +msgid "C_ase sensitive" +msgstr "C_ase sensitive" + +#: ../gproject/src/gproject-sidebar.c:124 +msgid "Search in full path" +msgstr "Cerca nel percorso completo" + +#: ../gproject/src/gproject-sidebar.c:727 +msgid "Reload all" +msgstr "Ricarica tutto" + +#: ../gproject/src/gproject-sidebar.c:736 +#: ../treebrowser/src/treebrowser.c:1281 +msgid "Expand all" +msgstr "Espandi tutto" + +#: ../gproject/src/gproject-sidebar.c:742 +#: ../treebrowser/src/treebrowser.c:1285 +msgid "Collapse all" +msgstr "Collassa tutto" + +#: ../gproject/src/gproject-sidebar.c:751 +msgid "Follow active editor" +msgstr "Segui l'editor attivo" + +#: ../gproject/src/gproject-sidebar.c:799 +msgid "Expand All" +msgstr "Espandi tutto" + +#: ../gproject/src/gproject-sidebar.c:808 +msgid "Find in Files" +msgstr "Cerca nei files" + +#. POSITION OF VIEW +#: ../markdown/src/conf.c:567 +msgid "Position:" +msgstr "Positione:" + +#: ../markdown/src/conf.c:573 +msgid "Sidebar" +msgstr "Barra laterale" + +#: ../markdown/src/conf.c:581 +msgid "Message Window" +msgstr "Finestra messaggi" + +#: ../markdown/src/conf.c:595 +msgid "Font:" +msgstr "Font:" + +#: ../markdown/src/conf.c:612 +msgid "Code Font:" +msgstr "Font codice:" + +#: ../markdown/src/conf.c:629 +msgid "BG Color:" +msgstr "Colore sfondo:" + +#: ../markdown/src/conf.c:645 +msgid "FG Color:" +msgstr "Colore font:" + +#: ../markdown/src/conf.c:663 +msgid "Select Template File" +msgstr "Seleziona file template" + +#: ../markdown/src/plugin.c:35 +msgid "Real-time Markdown preview" +msgstr "Anteprima real-time Markdown" + +#: ../markdown/src/plugin.c:51 +msgid "Markdown Preview" +msgstr "Anteprima Markdown" + +#: ../markdown/src/plugin.c:162 +msgid "The current document does not have a Markdown filetype." +msgstr "Il documento corrente non ha un tipo di file Markdown." + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "Coppia tag Highlighter" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "Cerca e evidenzia corrispondenza apertura/chiusura tag HTML" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "Aiuto _Traduzione" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "Stringa _Precedente" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +msgid "Go to previous string" +msgstr "Vai alla stringa precedente" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "Stringa _Successiva" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to next string" +msgstr "Vai a stringa successiva" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "Traduzione mancante p_rec." + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "Vai alla traduzione mancante precedente" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "Traduzione mancante s_ucc." + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "Vai alla traduzione mancante successiva" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "Fu_zzy precedente" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "Vai alla precedente stringa 'fuzzy'" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "_Fuzzy successiva" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "Vai alla successiva stringa 'fuzzy'" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "Non tradotta o Fuzz_y precedente" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "Vai alla precedente stringa non tradotta o 'fuzzy'" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "Non tradotta o Fuzz_y successiva" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "Vai alla successiva stringa non tradotta o 'fuzzy'" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +msgid "Toggle current translation fuzziness" +msgstr "Dis-/Attiva 'fuzzy' per la traduzione corrente" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "Dis-/A_ttiva 'fuzzy'" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "Incolla _Messaggio come Traduzione" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "Incolla la stringa non tradotta originale come traduzione " + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "Riordina la stringa di traduzione corrente" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "_Riordina traduzione" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" +"Aggiorna le intestazioni della traduzione (autore, revision, data, ...) " +"quando il file viene salvato" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "Aggiorna _Intestazione quando salvi" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "Translation Helper" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "Aggiunge supporto per la traduzione dei file GetText." + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "Incolla stringa non tradotta originale alla traduzione" + +#: ../pohelper/src/gph-plugin.c:1099 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "Impossibile caricare file di configurazione: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "Impossibile create directory di configurazione \"%s\": %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "Impossibile salvare file di configurazione: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"Impossibile caricare definizioni UI, si prega di controllare l'installazione. " +"Messaggio di errore: %s" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" +"Impossibile trovare il widge t\"%s\" nella definizione delle UI, si prega " +"di controllare l'installazione." + +#: ../pretty-printer/src/PluginEntry.c:37 +msgid "XML PrettyPrinter" +msgstr "XML PrettyPrinter" + +#: ../pretty-printer/src/PluginEntry.c:38 +msgid "Formats an XML and makes it human-readable." +msgstr "Formatta XML e rendilo 'umanamente' leggibile" + +#. put the menu into the Tools +#: ../pretty-printer/src/PluginEntry.c:66 +msgid "PrettyPrinter XML" +msgstr "PrettyPrinter XML" + +#: ../pretty-printer/src/PluginEntry.c:74 +msgid "Run the PrettyPrinter XML" +msgstr "Esegui PrettyPrinter XML" + +#: ../pretty-printer/src/PluginEntry.c:148 +msgid "Unable to parse the content as XML." +msgstr "Impossibile effettuare parse del contenuto come XML" + +#: ../pretty-printer/src/PluginEntry.c:159 +msgid "" +"Unable to process PrettyPrinting on the specified XML because some features " +"are not supported.\n" +"\n" +"See Help > Debug messages for more details..." +msgstr "" +"Impossible precessare PrettyPrinting sull'XML specificato perchè alcune " +"funzioni non sono supportate.\n" +"\n" +"Vedi Aiuto > Messaggi di debug per dettagli..." + +#: ../pretty-printer/src/ConfigUI.c:73 +msgid "Comments" +msgstr "Commenti" + +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:75 +msgid "Put on one line" +msgstr "Metti in una riga" + +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:75 +msgid "Inline if possible" +msgstr "In riga se possibile" + +#: ../pretty-printer/src/ConfigUI.c:73 ../pretty-printer/src/ConfigUI.c:74 +#: ../pretty-printer/src/ConfigUI.c:75 +msgid "Alignment" +msgstr "Allineamneto" + +#: ../pretty-printer/src/ConfigUI.c:74 +msgid "Text nodes" +msgstr "Nodi di testo" + +#: ../pretty-printer/src/ConfigUI.c:75 +msgid "CDATA" +msgstr "CDATA" + +#: ../pretty-printer/src/ConfigUI.c:205 +msgid "Empty nodes" +msgstr "Nodi vuoti" + +#: ../pretty-printer/src/ConfigUI.c:206 +msgid "Concatenation ( to )" +msgstr "Concatenazione (da a )" + +#: ../pretty-printer/src/ConfigUI.c:207 +msgid "Spacing ( to )" +msgstr "Spaziatura (da a )" + +#: ../pretty-printer/src/ConfigUI.c:208 +msgid "Expansion ( to )" +msgstr "Espansione (da a )" + +#: ../pretty-printer/src/ConfigUI.c:235 +msgid "Indentation" +msgstr "Indentazione" + +#: ../pretty-printer/src/ConfigUI.c:240 +msgid "Space" +msgstr "Spazio" + +#: ../pretty-printer/src/ConfigUI.c:264 +msgid "Line break" +msgstr "Interruzione di riga" + +#: ../scope/data/scope.glade.h:1 +msgid "Debu_g" +msgstr "Debu_g" + +#: ../scope/data/scope.glade.h:2 +msgid "_Setup Program" +msgstr "Programma di In_stallazione" + +#: ../scope/data/scope.glade.h:3 +msgid "Recent _Programs" +msgstr "_Programmi recenti" + +#: ../scope/data/scope.glade.h:4 +msgid "_Run/Continue" +msgstr "_Esegui/Continua" + +#: ../scope/data/scope.glade.h:5 +msgid "Run to _Cursor" +msgstr "Esegui al _Cursore" + +#: ../scope/data/scope.glade.h:6 +#, fuzzy +msgid "Run to _Source" +msgstr "Esegui alla _Sorgente" + +#: ../scope/data/scope.glade.h:7 +msgid "Step _Into" +msgstr "Entra (step _into)" + +#: ../scope/data/scope.glade.h:8 +msgid "Step _Over" +msgstr "Scavalca (step _over)" + +#: ../scope/data/scope.glade.h:9 +msgid "Step O_ut" +msgstr "Esci (step o_ut)" + +#: ../scope/data/scope.glade.h:10 +msgid "_Terminate" +msgstr "_Termina" + +#: ../scope/data/scope.glade.h:11 +msgid "Toggle _Breakpoint" +msgstr "Attiva/Disattiva _Breakpoint" + +#: ../scope/data/scope.glade.h:12 +msgid "_GDB Command" +msgstr "Comando _GDB" + +#: ../scope/data/scope.glade.h:13 +msgid "_More" +msgstr "_Altro" + +#: ../scope/data/scope.glade.h:14 +msgid "_Show Terminal" +msgstr "_Visualizza terminale" + +#: ../scope/data/scope.glade.h:15 +msgid "_Reset Markers" +msgstr "_Reimposta marcatori" + +#: ../scope/data/scope.glade.h:16 +msgid "_Cleanup Files" +msgstr "_Pulisci files" + +#: ../scope/data/scope.glade.h:17 +msgid "_Feed" +msgstr "_Feed" + +#: ../scope/data/scope.glade.h:18 +msgid "_Window" +msgstr "_Finestra" + +#: ../scope/data/scope.glade.h:19 +msgid "_Auto Show" +msgstr "Mostra _Automaticamente" + +#: ../scope/data/scope.glade.h:20 +msgid "Auto _Hide" +msgstr "_Nascondi Automaticamente" + +#: ../scope/data/scope.glade.h:21 +msgid "Show on _Error" +msgstr "Visualizza se _Errore" + +#: ../scope/data/scope.glade.h:22 +msgid "_Unsorted" +msgstr "_Non ordinati" + +#: ../scope/data/scope.glade.h:23 +msgid "_View Source" +msgstr "_Visualizza sorgente" + +#: ../scope/data/scope.glade.h:24 +msgid "S_ynchronize" +msgstr "S_incronizza" + +#: ../scope/data/scope.glade.h:25 +msgid "_Interrupt" +msgstr "_Interrompi" + +#: ../scope/data/scope.glade.h:26 +msgid "_Send Signal" +msgstr "Invia _segnale" + +#: ../scope/data/scope.glade.h:27 +#, fuzzy +msgid "S_elect on" +msgstr "S_elezionate da" + +#: ../scope/data/scope.glade.h:28 +msgid "_Running" +msgstr "_Esecuzione" + +#: ../scope/data/scope.glade.h:29 +msgid "_Stopped" +msgstr "_Fermato" + +#: ../scope/data/scope.glade.h:30 +msgid "_Exited" +msgstr "_Terminato" + +#: ../scope/data/scope.glade.h:31 +msgid "_Follow" +msgstr "_Segui" + +#: ../scope/data/scope.glade.h:32 +msgid "_Columns" +msgstr "_Colonne" + +#: ../scope/data/scope.glade.h:33 +msgid "Show _Group" +msgstr "Visuliazza _Gruppo" + +#: ../scope/data/scope.glade.h:34 +msgid "Show _Core" +msgstr "Visualizza _Core" + +#: ../scope/data/scope.glade.h:35 +msgid "Add _Break" +msgstr "Aggiungi _Break" + +#: ../scope/data/scope.glade.h:36 +msgid "Add _Watch" +msgstr "Aggiunge _Vista" + +#: ../scope/data/scope.glade.h:37 +msgid "Apply on _Run" +msgstr "Applica quando _Esegui" + +#: ../scope/data/scope.glade.h:38 +msgid "_Show @entry" +msgstr "_Visualizza @entry" + +#: ../scope/data/scope.glade.h:39 +msgid "Show _Address" +msgstr "Visualizz_a Indirizzo" + +#: ../scope/data/scope.glade.h:40 +msgid "_Modify" +msgstr "_Modifica" + +#: ../scope/data/scope.glade.h:41 +msgid "_Watch" +msgstr "_Vista" + +#: ../scope/data/scope.glade.h:42 +msgid "_Inspect" +msgstr "_Ispeziona" + +#: ../scope/data/scope.glade.h:43 +msgid "_8-bit mode" +msgstr "Modalità _8-bit" + +#: ../scope/data/scope.glade.h:44 +msgid "_Default" +msgstr "_Default" + +#: ../scope/data/scope.glade.h:45 +msgid "_7 bit" +msgstr "_7 bit" + +#: ../scope/data/scope.glade.h:46 +msgid "_Locale" +msgstr "_Locale" + +#: ../scope/data/scope.glade.h:47 +msgid "_UTF-8" +msgstr "_UTF-8" + +#: ../scope/data/scope.glade.h:48 +msgid "_Show .names" +msgstr "Vi_sualizza .names" + +#: ../scope/data/scope.glade.h:49 +msgid "R_ead" +msgstr "L_eggi" + +#: ../scope/data/scope.glade.h:50 +msgid "_Group by" +msgstr "Ra_ggruppa per" + +#: ../scope/data/scope.glade.h:51 +msgid "_1" +msgstr "_1" + +#: ../scope/data/scope.glade.h:52 +msgid "_2" +msgstr "_2" + +#: ../scope/data/scope.glade.h:53 +msgid "_4" +msgstr "_" + +#: ../scope/data/scope.glade.h:54 +msgid "_8" +msgstr "_" + +#: ../scope/data/scope.glade.h:55 +msgid "_Jump To" +msgstr "Sal_ta a" + +#: ../scope/data/scope.glade.h:56 +msgid "_Apply" +msgstr "_Applica" + +#: ../scope/data/scope.glade.h:57 +msgid "_Expand" +msgstr "_Espandi" + +#: ../scope/data/scope.glade.h:59 +msgid "_Natural" +msgstr "_Naturale" + +#: ../scope/data/scope.glade.h:60 +msgid "_Decimal" +msgstr "_Decimale" + +#: ../scope/data/scope.glade.h:61 +msgid "_Hex" +msgstr "_Esadecimale" + +#: ../scope/data/scope.glade.h:62 +msgid "_Octal" +msgstr "_Ottale" + +#: ../scope/data/scope.glade.h:63 +msgid "_Binary" +msgstr "_Binario" + +#: ../scope/data/scope.glade.h:64 +msgid "_Raw" +msgstr "_Raw" + +#: ../scope/data/scope.glade.h:65 +msgid "_Evaluate/Modify" +msgstr "_Valuta/Modifica" + +#: ../scope/data/scope.glade.h:66 +msgid "_Watch Expression" +msgstr "Espressione _Watch" + +#: ../scope/data/scope.glade.h:67 +msgid "_Inspect Variable" +msgstr "_Ispeziona variabile" + +#: ../scope/data/scope.glade.h:68 +msgid "Threads" +msgstr "Threads" + +#: ../scope/data/scope.glade.h:69 +msgid "Stack" +msgstr "Stack" + +#: ../scope/data/scope.glade.h:70 +msgid "Locals" +msgstr "Locals" + +#: ../scope/data/scope.glade.h:71 +msgid "Watches" +msgstr "Watches" + +#: ../scope/data/scope.glade.h:72 +msgid "Memory" +msgstr "Memoria" + +#: ../scope/data/scope.glade.h:73 +msgid "Enter gdb command:" +msgstr "Inserisci comando gdb:" + +#: ../scope/data/scope.glade.h:74 +msgid "Convert _UTF-8 to locale" +msgstr "Converti _UTF-8 a locale" + +#: ../scope/data/scope.glade.h:75 +msgid "_Thread" +msgstr "_Thread" + +#: ../scope/data/scope.glade.h:76 +msgid "_Group" +msgstr "_Gruppo" + +#: ../scope/data/scope.glade.h:77 +msgid "_Frame" +msgstr "_Frame" + +#: ../scope/data/scope.glade.h:78 +msgid "Setup Program" +msgstr "Programma installazione" + +#: ../scope/data/scope.glade.h:79 +msgid "_Executable:" +msgstr "_Eseguibile:" + +#: ../scope/data/scope.glade.h:80 +msgid "_Arguments:" +msgstr "_Argomenti:" + +#: ../scope/data/scope.glade.h:81 +msgid "En_vironment:" +msgstr "Am_biente" + +#: ../scope/data/scope.glade.h:82 +msgid "_Working dir:" +msgstr "Directory di la_voro:" + +#: ../scope/data/scope.glade.h:83 +msgid "_Load script:" +msgstr "Script _Caricamento:" + +#: ../scope/data/scope.glade.h:84 +msgid "Auto _run program/exit gdb" +msgstr "Auto _esegui programma/esci gdb" + +#: ../scope/data/scope.glade.h:85 +msgid "_Non-stop mode" +msgstr "Modalità _non-stop" + +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" +msgstr "Breakpoint _temporaneo all'avvio a:" + +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" +msgstr "_Elimina tutti i breakpoint, viste, ispezioni e registri" + +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 +msgid "Program" +msgstr "Programma" + +#: ../scope/data/scope.glade.h:89 +msgid "Open on" +msgstr "Apri su" + +#: ../scope/data/scope.glade.h:90 +msgid "g_db load" +msgstr "carica g_db" + +#: ../scope/data/scope.glade.h:91 +msgid "p_rogram start" +msgstr "avvio p_rogramma" + +#: ../scope/data/scope.glade.h:92 +msgid "Update all _views" +msgstr "Aggiorna tutte le _viste" + +#: ../scope/data/scope.glade.h:93 +msgid "Panel" +msgstr "Pannello" + +#: ../scope/data/scope.glade.h:94 +msgid "Default 8-bit text mode:" +msgstr "Modalità testo default 8-bit:" + +#: ../scope/data/scope.glade.h:95 +msgid "_7-bit \\nnn" +msgstr "_7-bit \\nnn" + +#: ../scope/data/scope.glade.h:96 +msgid "Display" +msgstr "Display" + +#: ../scope/data/scope.glade.h:97 +msgid "_member" +msgstr "_membro" + +#: ../scope/data/scope.glade.h:98 +msgid "and" +msgstr "e" + +#: ../scope/data/scope.glade.h:99 +msgid "_argument" +msgstr "_argomento" + +#: ../scope/data/scope.glade.h:100 +msgid "names" +msgstr "_nomi" + +#: ../scope/data/scope.glade.h:101 +msgid "Values" +msgstr "Valori" + +#: ../scope/data/scope.glade.h:102 +msgid "E_xpand on apply" +msgstr "E_spandi quando applichi" + +#: ../scope/data/scope.glade.h:103 +msgid "S_how" +msgstr "_Visualizza" + +#: ../scope/data/scope.glade.h:104 +msgid "children" +msgstr "figlio" + +#: ../scope/data/scope.glade.h:105 +msgid "Inspect" +msgstr "Inspeziona" + +#: ../scope/data/scope.glade.h:106 +msgid "Show =li_brary messages" +msgstr "Visualizza messaggi =li_brary" + +#: ../scope/data/scope.glade.h:107 +msgid "Show _tooltips" +msgstr "Visualizza suggerimen_ti" + +#: ../scope/data/scope.glade.h:108 +msgid "Others" +msgstr "Altri" + +#: ../scope/data/scope.glade.h:109 +msgid "Options" +msgstr "Opzioni" + +#: ../scope/data/scope.glade.h:110 +msgid "_Import" +msgstr "_Importa" + +#: ../scope/data/scope.glade.h:111 +msgid "Enter assignment expression:" +msgstr "Inserisci espressione di assegnamento:" + +#: ../scope/data/scope.glade.h:112 +msgid "Inspect" +msgstr "Ispeziona" + +#: ../scope/data/scope.glade.h:113 +msgid "Object:" +msgstr "Oggetto:" + +#: ../scope/data/scope.glade.h:115 +msgid "-" +msgstr "-" + +#: ../scope/data/scope.glade.h:116 +msgid "Frame:" +msgstr "Frame:" + +#: ../scope/data/scope.glade.h:117 +msgid "@" +msgstr "@" + +#: ../scope/data/scope.glade.h:118 +msgid "_Apply on run" +msgstr "_Applica quando esegui" + +#: ../scope/data/scope.glade.h:119 +msgid "Expand" +msgstr "Espandi" + +#: ../scope/data/scope.glade.h:120 +msgid "Start:" +msgstr "Avvio:" + +#: ../scope/data/scope.glade.h:121 +msgid "Count:" +msgstr "Conteggio:" + +#: ../scope/data/scope.glade.h:122 +msgid "_Expand on apply" +msgstr "_Espandi quando applichi" + +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "Terminale programma" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "Registri" + +#: ../scope/src/break.c:97 +msgid "breakpoint" +msgstr "breakpoint" + +#: ../scope/src/break.c:98 +msgid "hardware breakpoint" +msgstr "hardware breakpoint" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "tracepoint" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "tracepoint veloce" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "watchpoint scrittura" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "watchpoint accesso" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "watchpoint lettura" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "catchpoint" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "CLI" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "MI non supportato" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "all'avvio" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "Esegui al cursore" + +#: ../scope/src/break.c:1013 +#, c-format +msgid "" +"There are two or more breakpoints at %s:%d.\n" +"\n" +"Use the breakpoint list to remove the exact one." +msgstr "" +"Ci sono due o più breakpoint a %s:%d.\n" +"\n" +"Usare la lista breakpoint per rimuoverne uno." + +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr ", %s" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "func %s" + +#: ../scope/src/break.c:1309 +msgid "Add Breakpoint" +msgstr "Aggiungi Breakpoint" + +#: ../scope/src/break.c:1324 +msgid "Add Watchpoint" +msgstr "Aggiungi Watchpoint" + +#: ../scope/src/conterm.c:106 +msgid "Feed Terminal" +msgstr "Terminale Feed" + +#: ../scope/src/conterm.c:106 +msgid "Enter char # (0..255):" +msgstr "Inserisci carattere # (0..255):" + +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 +#, c-format +msgid "Scope: %s." +msgstr "Ambito: %s" + +#: ../scope/src/debug.c:115 ../scope/src/debug.c:120 ../scope/src/utils.c:37 +#, c-format +msgid "%s: %s." +msgstr "%s: %s." + +#: ../scope/src/debug.c:363 +#, c-format +msgid "GDB died unexpectedly with status %d." +msgstr "GDB si è chiudo inaspettatamente con status %d." + +#: ../scope/src/debug.c:365 +msgid "Program terminated." +msgstr "Programma terminato." + +#: ../scope/src/debug.c:469 +msgid "No breakpoints. Hanging." +msgstr "Nessun breakpoint. Sospeso." + +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 +#, c-format +msgid "%s." +msgstr "%s." + +#: ../scope/src/inspect.c:66 +msgid "..." +msgstr "..." + +#: ../scope/src/inspect.c:339 +msgid "invalid data" +msgstr "dati invalidi" + +#: ../scope/src/inspect.c:371 +msgid "no children in range" +msgstr "nessun figlio nel range" + +#: ../scope/src/inspect.c:454 +msgid "out of scope" +msgstr "fuori dallo scope" + +#: ../scope/src/inspect.c:627 +msgid "Duplicate inspect variable name." +msgstr "Nome variabile ispezione duplicato." + +#: ../scope/src/memory.c:292 +msgid "Read Memory" +msgstr "Leggi memoria" + +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." +msgstr "Ambito: dimensione puntatore > %d, dati disabilitati." + +#: ../scope/src/menu.c:375 +msgid "Modify" +msgstr "Modifica" + +#: ../scope/src/menu.c:481 +msgid "Evaluate/modify" +msgstr "Valuta/Modifica" + +#: ../scope/src/menu.c:482 +msgid "Watch expression" +msgstr "Controlla espressione" + +#: ../scope/src/menu.c:483 +msgid "Inspect variable" +msgstr "Ispeziona variabile" + +#: ../scope/src/parse.c:437 +msgid "Undefined GDB error." +msgstr "Errore GDB non definito." + +#: ../scope/src/plugme.c:81 +msgid "Select Folder" +msgstr "Seleziona Cartella" + +#: ../scope/src/plugme.c:81 +msgid "Select File" +msgstr "Seleziona File" + +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 +#, c-format +msgid "Scope: %s: %s." +msgstr "Scope: %s: %s." + +#: ../scope/src/prefs.c:299 +msgid "Scope: created configuration file." +msgstr "Scope: creato file di configurazione." + +#: ../scope/src/program.c:251 +#, c-format +msgid "Loaded debug settings for %s." +msgstr "Caricate impostazioni debug per %s." + +#: ../scope/src/program.c:259 +#, c-format +msgid "Could not load debug settings file %s: %s." +msgstr "Impossibile caricare file di impostazione debug per %s:%s." + +#: ../scope/src/program.c:379 +#, c-format +msgid "" +"%s: %s.\n" +"\n" +"Continue?" +msgstr "" +"%s: %s.\n" +"\n" +"Continuare?" + +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" +msgstr "Eliminare tutti i breakpoint, viste, eccetera?" + +#: ../scope/src/program.c:523 +msgid "as _Name=value" +msgstr "come _Nome=valore" + +#: ../scope/src/program.c:524 +msgid "as _Name = value" +msgstr "come _Nome = valore" + +#: ../scope/src/scope.c:34 +msgid "Scope Debugger" +msgstr "Scope Debugger" + +#: ../scope/src/scope.c:35 +msgid "Relatively simple GDB front-end." +msgstr "Interfaccia relativamente semplice per GDB" + +#: ../scope/src/scope.c:62 +msgid "Setup program" +msgstr "Programma installazione" + +#: ../scope/src/scope.c:63 +msgid "Run/continue" +msgstr "Esegui/Continua" + +#: ../scope/src/scope.c:65 +msgid "Run to source" +msgstr "Esegui alla sorgente" + +#: ../scope/src/scope.c:69 +msgid "Terminate" +msgstr "Terminale" + +#: ../scope/src/scope.c:70 +msgid "Toggle breakpoint" +msgstr "Attiva/Disattiva breakpoint" + +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 +msgid "GDB command" +msgstr "Comando GDB" + +#: ../scope/src/scope.c:73 +msgid "Show terminal" +msgstr "Visualizza terminale" + +#: ../scope/src/scope.c:226 +msgid "Busy" +msgstr "Occupato" + +#: ../scope/src/scope.c:226 +msgid "Ready" +msgstr "Pronto" + +#: ../scope/src/scope.c:227 +msgid "Hang" +msgstr "Sospeso" + +#: ../scope/src/scope.c:227 +#, fuzzy +msgid "Assem" +msgstr "Assem" + +#: ../scope/src/scope.c:227 +msgid "Load" +msgstr "Carica" + +#: ../scope/src/scope.c:421 +msgid "Build action activated. Terminate debugging?" +msgstr "Generazione richiesta. Terminare debug?" + +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "Breaks" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Console" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "Console di Debug" + +#: ../scope/src/thread.c:48 +#, c-format +msgid "Thread group %s started." +msgstr "Thread gruppo %s avviato." + +#: ../scope/src/thread.c:63 +msgid "Thread group " +msgstr "Gruppo thread " + +#: ../scope/src/thread.c:83 +msgid " exited" +msgstr " uscito" + +#: ../scope/src/thread.c:86 +#, c-format +msgid " with exit code %s" +msgstr " con codice %s" + +#: ../scope/src/thread.c:748 +msgid "Send Signal" +msgstr "Invia segnale" + +#: ../scope/src/thread.c:748 +msgid "Enter signal #:" +msgstr "Inserisci segnale #:" + +#: ../scope/src/thread.c:788 +msgid "Terminate Process" +msgstr "Termina processo" + +#: ../scope/src/thread.c:788 +msgid "Enter exit code:" +msgstr "Inserisci codice uscita:" + +#: ../scope/src/thread.c:891 +msgid "Running" +msgstr "Esecuzione" + +#: ../scope/src/thread.c:892 +msgid "Stopped" +msgstr "Fermo" + +#: ../scope/src/utils.c:45 +#, c-format +msgid "%s: %s" +msgstr "%s:%s" + +#: ../scope/src/utils.c:225 +#, c-format +msgid "Scope: error reading [%s]." +msgstr "Scope: errore lettura [%s]." + +#: ../scope/src/views.c:526 +msgid "…" +msgstr "…" + +#: ../scope/src/views.c:549 +msgid "_Send" +msgstr "_Invia" + +#: ../scope/src/views.c:549 +msgid "_Busy" +msgstr "_Occupato" + +#: ../scope/src/views.c:558 +msgid "GDB Command" +msgstr "Comando GDB" + +#: ../spellcheck/src/speller.c:180 +msgid "Try: " +msgstr "Prova: " + +#: ../spellcheck/src/speller.c:252 +msgid "Checking" +msgstr "Controllo" + +#: ../spellcheck/src/speller.c:265 +#, c-format +msgid "Checking file \"%s\" (lines %d to %d using %s):" +msgstr "Controllo file \"%s\" (linee %d a %d usando %s):" + +#: ../spellcheck/src/speller.c:275 +#, c-format +msgid "Checking file \"%s\" (using %s):" +msgstr "Checking file \"%s\" (usando %s):" + +#: ../spellcheck/src/speller.c:302 +msgid "The checked text is spelled correctly." +msgstr "Il testo selezionato è scritto correttamente." + +#: ../spellcheck/src/speller.c:312 +#, c-format +msgid "The Enchant library couldn't be initialized (%s)." +msgstr "La libreria Enchant non può essere inizializzata (%s)." + +#: ../spellcheck/src/speller.c:313 +msgid "unknown error (maybe the chosen language is not available)" +msgstr "errore sconosciuto (forse la lingua scelto non è disponible)" + +#: ../spellcheck/src/scplugin.c:47 +msgid "Spell Check" +msgstr "Controllo ortografia" + +#: ../spellcheck/src/scplugin.c:48 +msgid "Checks the spelling of the current document." +msgstr "Controlla l'ortografia del documento corrente." + +#: ../spellcheck/src/scplugin.c:202 +msgid "Run Spell Check" +msgstr "Esegui controllo ortografia" + +#: ../spellcheck/src/scplugin.c:205 +msgid "Toggle Check While Typing" +msgstr "Attiva/Disattiva controllo mentre scrivi" + +#. initialise the dialog +#: ../spellcheck/src/scplugin.c:216 +msgid "Select Directory" +msgstr "Seleziona directory" + +#: ../spellcheck/src/scplugin.c:253 +msgid "Check spelling while typing" +msgstr "Controllo ortografico mentre scrivi" + +#: ../spellcheck/src/scplugin.c:258 +msgid "Show toolbar item to toggle spell checking" +msgstr "Visualizza un'icona nella toolbar per il controllo ortografico" + +#: ../spellcheck/src/scplugin.c:263 +msgid "Show editor menu item to show spelling suggestions" +msgstr "Visualizza elemento nel menu a tendina dell'editor per visualizzare suggerimenti" + +#: ../spellcheck/src/scplugin.c:269 +msgid "Print misspelled words and suggestions in the messages window" +msgstr "Stampa parole errate e suggerimento nella finestra messaggi" + +#: ../spellcheck/src/scplugin.c:273 +msgid "Language to use for the spell check:" +msgstr "Lingua da usare per il controllo ortografia:" + +#: ../spellcheck/src/scplugin.c:287 +msgid "_Directory to look for dictionary files:" +msgstr "_Directory in cui cercare i file del dizionario:" + +#: ../spellcheck/src/scplugin.c:295 +msgid "" +"Read additional dictionary files from this directory. For now, this only " +"works with myspell dictionaries." +msgstr "" +"Visualizza file del dizionario addizione da questa cartella. Per ora questo " +"funziona solo per i dizionari myspell" + +#: ../spellcheck/src/gui.c:76 +msgid "Spell checking while typing is now enabled" +msgstr "Controllo ortografia mentre scrivi è ora attivo" + +#: ../spellcheck/src/gui.c:78 +msgid "Spell checking while typing is now disabled" +msgstr "Controllo ortografia mentre scrivi è ora disattivato" + +#: ../spellcheck/src/gui.c:313 +msgid "" +"Search term is too long to provide\n" +"spelling suggestions in the editor menu." +msgstr "" +"Il termine di ricerca è troppo lungo per\n" +"fornire suggerimenti nel menu editor." + +#: ../spellcheck/src/gui.c:318 +msgid "Perform Spell Check" +msgstr "Esegui contrllo ortografia" + +#: ../spellcheck/src/gui.c:350 +msgid "More..." +msgstr "Altro..." + +#: ../spellcheck/src/gui.c:365 +msgid "(No Suggestions)" +msgstr "(Nessun suggerimento)" + +#: ../spellcheck/src/gui.c:374 +#, c-format +msgid "Add \"%s\" to Dictionary" +msgstr "Aggiungi \"%s\" al dizionario" + +#: ../spellcheck/src/gui.c:381 +msgid "Ignore All" +msgstr "Ignora tutti" + +#: ../spellcheck/src/gui.c:526 +#, c-format +msgid "Default (%s)" +msgstr "Default (%s)" + +#: ../spellcheck/src/gui.c:537 +#, c-format +msgid "Toggle spell check while typing (current language: %s)" +msgstr "Attiva/Disattiva controllo ortografico mentre scrivi (lingua corrente: %s)" + +#: ../spellcheck/src/gui.c:592 +msgid "Spelling Suggestions" +msgstr "Suggerimento ortografici" + +#: ../shiftcolumn/src/shiftcolumn.c:49 +msgid "Shift Column" +msgstr "Sposta Colonna" + +#: ../shiftcolumn/src/shiftcolumn.c:50 +msgid "Shift a selection left and right" +msgstr "Sposta una selezione a sinistra e destra" + +#: ../shiftcolumn/src/shiftcolumn.c:380 ../shiftcolumn/src/shiftcolumn.c:400 +msgid "Shift Left" +msgstr "Sposta a sinistra" + +#: ../shiftcolumn/src/shiftcolumn.c:387 ../shiftcolumn/src/shiftcolumn.c:402 +msgid "Shift Right" +msgstr "Sposta a destra" + +#: ../tableconvert/src/tableconvert.c:34 +msgid "Tableconvert" +msgstr "Convertitore tabella" + +#: ../tableconvert/src/tableconvert.c:35 +msgid "A little plugin to convert lists into tables" +msgstr "Un piccolo plugin per convertire liste in tabelle" + +#. OK. Something went not as expected. +#. * We did have a selection but cannot parse it into rows. +#. * Aborting +#: ../tableconvert/src/tableconvert.c:237 +msgid "Something went wrong on parsing selection. Aborting" +msgstr "Qualcosa è andato storto analizzando la selezione. Fallito." + +#: ../tableconvert/src/tableconvert.c:269 +msgid "Convert selection to table" +msgstr "Converti selezione in tabella" + +#. Build up menu entry +#: ../tableconvert/src/tableconvert.c:282 +msgid "_Convert to table" +msgstr "_Converti in tabella" + +#: ../tableconvert/src/tableconvert.c:285 +msgid "Converts current marked list to a table." +msgstr "Converti la lista corrente contrassegnata in una tabella." + +#: ../treebrowser/src/treebrowser.c:124 +msgid "TreeBrowser" +msgstr "TreeBrowser" + +#: ../treebrowser/src/treebrowser.c:125 +msgid "" +"This plugin adds a tree browser to Geany, allowing the user to browse files " +"using a tree view of the directory being browsed." +msgstr "" +"Questo plugin aggiunge a Geany un browser ad albero, permettendo all'utente di " +"sfogliare i file usando una vista ad albero delle directory." + +#: ../treebrowser/src/treebrowser.c:434 +#, c-format +msgid "%s: no such directory." +msgstr "%s: directory non trovata." + +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 +msgid "(Empty)" +msgstr "(Vuoto)" + +#: ../treebrowser/src/treebrowser.c:971 +#, c-format +msgid "Could not execute configured external command '%s' (%s)." +msgstr "Impossibile eseguire il comando esterno configurato '%s' (%s)." + +#: ../treebrowser/src/treebrowser.c:1042 +msgid "NewDirectory" +msgstr "Nuova Directory" + +#: ../treebrowser/src/treebrowser.c:1044 +msgid "NewFile" +msgstr "Nuovo File" + +#: ../treebrowser/src/treebrowser.c:1049 +#, c-format +msgid "" +"Target file '%s' exists\n" +", do you really want to replace it with empty file?" +msgstr "" +"File di destinazione '%s' esiste\n" +", vuoi davvero sostituirlo con un file vuoto?" + +#: ../treebrowser/src/treebrowser.c:1095 +#, c-format +msgid "Do you really want to delete '%s' ?" +msgstr "Vuoi davvero eliminare '%s' ?" + +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 +msgid "Go up" +msgstr "Vai su" + +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 +msgid "Set path from document" +msgstr "Imposta percorso dal documento" + +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" +msgstr "_Apri esternamente" + +#: ../treebrowser/src/treebrowser.c:1220 +msgid "Open Terminal" +msgstr "Apri terminale" + +#: ../treebrowser/src/treebrowser.c:1224 +msgid "Set as root" +msgstr "Imposta come radice" + +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../treebrowser/src/treebrowser.c:1233 +msgid "_Find in Files" +msgstr "Cerca nei _File" + +#: ../treebrowser/src/treebrowser.c:1241 +msgid "Create new directory" +msgstr "Crea nuova directory" + +#: ../treebrowser/src/treebrowser.c:1245 +msgid "Create new file" +msgstr "Crea un nuovo file" + +#: ../treebrowser/src/treebrowser.c:1249 +msgid "Rename" +msgstr "Rinonima" + +#: ../treebrowser/src/treebrowser.c:1254 +msgid "Delete" +msgstr "Elimina" + +#: ../treebrowser/src/treebrowser.c:1262 +#, c-format +msgid "Close: %s" +msgstr "Chiudi: %s" + +#: ../treebrowser/src/treebrowser.c:1267 +#, c-format +msgid "Close Child Documents " +msgstr "Chiudi documenti figlio " + +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" +msgstr "_Copia percorso completo negli appunti" + +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 +msgid "Show bookmarks" +msgstr "Visualizza segnalibri" + +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 +msgid "Show hidden files" +msgstr "Visualizza file nascosti" + +#: ../treebrowser/src/treebrowser.c:1302 +msgid "Show toolbars" +msgstr "Visualizza le toolbar" + +#: ../treebrowser/src/treebrowser.c:1621 +#, c-format +msgid "Target file '%s' exists, do you really want to replace it?" +msgstr "Il file obiettivo '%s' esiste, vuoi davvero sostituirlo?" + +#: ../treebrowser/src/treebrowser.c:1748 +msgid "Home" +msgstr "Home" + +#: ../treebrowser/src/treebrowser.c:1758 +#, fuzzy +msgid "Track path" +msgstr "Traccia percorso" + +#: ../treebrowser/src/treebrowser.c:1763 +#, fuzzy +msgid "Hide bars" +msgstr "Nascondi barre" + +#: ../treebrowser/src/treebrowser.c:1773 +#, fuzzy +msgid "" +"Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " +"reverse try for example this '!;*.c;*.h;*.cpp'" +msgstr "" +"Filtro (*.c;*.h;*.cpp) e se vuoi un filtro temporaneo usando '!' inverti, " +"per esemprio '!;*.c;*.h;*.cpp'" + +#: ../treebrowser/src/treebrowser.c:1781 +msgid "Addressbar for example '/projects/my-project'" +msgstr "Barra indirizzo per esempio '/progetti/mio-progetto'" + +#: ../treebrowser/src/treebrowser.c:1806 +msgid "Tree Browser" +msgstr "Tree Browser" + +#: ../treebrowser/src/treebrowser.c:1945 +msgid "External open command" +msgstr "Apri comando esterno" + +#: ../treebrowser/src/treebrowser.c:1950 +#, c-format +msgid "" +"The command to execute when using \"Open with\". You can use %f and %d " +"wildcards.\n" +"%f will be replaced with the filename including full path\n" +"%d will be replaced with the path name of the selected file without the " +"filename" +msgstr "" +"Il comando da eseguire quando usi \"Apri con\". Puoi usare %f e %d. " +"\n" +"%f sarà sostituito dal nome del file includo il percorso completo\n" +"%d sarà sostituito dal percorso del file selezionato senza il nome del " +"file" + +#: ../treebrowser/src/treebrowser.c:1958 +msgid "Toolbar" +msgstr "Barra degli strumenti" + +#: ../treebrowser/src/treebrowser.c:1960 +msgid "Hidden" +msgstr "Nascosto" + +#: ../treebrowser/src/treebrowser.c:1961 +msgid "Top" +msgstr "Sopra" + +#: ../treebrowser/src/treebrowser.c:1962 +msgid "Bottom" +msgstr "Sotto" + +#: ../treebrowser/src/treebrowser.c:1967 +msgid "If position is changed, the option require plugin restart." +msgstr "Se la posizione è cambiata, l'opzione richiedi il riavvio del plugin." + +#: ../treebrowser/src/treebrowser.c:1971 +msgid "Show icons" +msgstr "Visualizza icone" + +#: ../treebrowser/src/treebrowser.c:1973 +msgid "None" +msgstr "Nessuno" + +#: ../treebrowser/src/treebrowser.c:1974 +msgid "Base" +msgstr "Base" + +#: ../treebrowser/src/treebrowser.c:1975 +msgid "Content-type" +msgstr "Content-type" + +#: ../treebrowser/src/treebrowser.c:1986 +msgid "On Windows, this just hide files that are prefixed with '.' (dot)" +msgstr "In Windows, questa nasconde tutti i file che sono preceduti da '.' (punto)" + +#: ../treebrowser/src/treebrowser.c:1988 +msgid "Hide object files" +msgstr "Nascondi i file oggetto" + +#: ../treebrowser/src/treebrowser.c:1993 +msgid "" +"Don't show generated object files in the file browser, this includes *.o, *." +"obj. *.so, *.dll, *.a, *.lib" +msgstr "" +"Non visualizzare i file oggetto generati nel file browser, questo include *.o " +"*.obj, *.so, *.dll, *.a, *.lib" + +#: ../treebrowser/src/treebrowser.c:1995 +msgid "Reverse filter" +msgstr "Inverti filtro" + +#: ../treebrowser/src/treebrowser.c:2000 +msgid "Follow current document" +msgstr "Segui il documento corrente" + +#: ../treebrowser/src/treebrowser.c:2005 +msgid "Single click, open document and focus it" +msgstr "Click singolo, apri il documento e dagli il focus" + +#: ../treebrowser/src/treebrowser.c:2010 +msgid "Double click open directory" +msgstr "Doppio click per aprire la cartella" + +#: ../treebrowser/src/treebrowser.c:2015 +msgid "On delete file, close it if is opened" +msgstr "Quando un file viene eliminato, chiudilo se aperto" + +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "Porta il focus sull'editor quando un file viene aperto" + +#: ../treebrowser/src/treebrowser.c:2025 +msgid "Show tree lines" +msgstr "Visualizza linee dell'albero" + +#: ../treebrowser/src/treebrowser.c:2037 +msgid "Open new files" +msgstr "Apri nuovi file" + +#: ../treebrowser/src/treebrowser.c:2113 +msgid "Focus File List" +msgstr "Focus lista file" + +#: ../treebrowser/src/treebrowser.c:2115 +msgid "Focus Path Entry" +msgstr "Focus inserimento percorso" + +#: ../treebrowser/src/treebrowser.c:2117 +msgid "Rename Object" +msgstr "Rinonima oggetto" + +#: ../treebrowser/src/treebrowser.c:2119 +msgid "Create New File" +msgstr "Crea nuovo file" + +#: ../treebrowser/src/treebrowser.c:2121 +msgid "Create New Directory" +msgstr "Crea nuova cartella" + +#: ../updatechecker/src/updatechecker.c:41 +msgid "Updatechecker" +msgstr "Updatechecker" + +#: ../updatechecker/src/updatechecker.c:42 +msgid "" +"A plugin which is checking whether there are updates for Geany available." +msgstr "" +"Un plugin che controlla se ci sono update disponibili per Geany." + +#: ../updatechecker/src/updatechecker.c:190 +msgid "There is a more recent version available" +msgstr "C'è una versione più recente disponibile." + +#: ../updatechecker/src/updatechecker.c:198 +msgid "No update available" +msgstr "Nessun aggiornamento disponibile" + +#: ../updatechecker/src/updatechecker.c:210 +#, c-format +msgid "" +"Wasn't able to catch some version information.\n" +"Error code: %d \n" +"Error message: »%s«" +msgstr "" +"Impossibile ottenre alcune informazioni sulla versione.\n" +"Codice errore: %d \n" +"Messaggio errore: »%s«" + + +#: ../updatechecker/src/updatechecker.c:276 +msgid "Run updatecheck on startup" +msgstr "Esegui updatecheck all'avvio" + +#: ../updatechecker/src/updatechecker.c:319 +msgid "Check for Updates" +msgstr "Controlla aggiornamenti" + +#: ../webhelper/src/gwh-enum-types.c:15 +msgid "message-window" +msgstr "message-window" + +#: ../webhelper/src/gwh-enum-types.c:16 +msgid "sidebar" +msgstr "sidebar" + +#: ../webhelper/src/gwh-enum-types.c:17 +msgid "separate-window" +msgstr "separate-window" + +#: ../webhelper/src/gwh-enum-types.c:32 +msgid "none" +msgstr "none" + +#: ../webhelper/src/gwh-enum-types.c:33 +msgid "on-connexion" +msgstr "on-connexion" + +#: ../webhelper/src/gwh-enum-types.c:48 +msgid "normal" +msgstr "normal" + +#: ../webhelper/src/gwh-enum-types.c:49 +msgid "utility" +msgstr "utility" + +#: ../webhelper/src/gwh-settings.c:782 +#, c-format +msgid "%s:" +msgstr "%s:" + +#: ../webhelper/src/gwh-browser.c:534 +msgid "_Zoom" +msgstr "_Zoom" + +#: ../webhelper/src/gwh-browser.c:556 +msgid "Full-_content zoom" +msgstr "Zoom _contenuto intero" + +#: ../webhelper/src/gwh-browser.c:567 +msgid "Flip panes orientation" +msgstr "Inverti orientazione riquadri" + +#: ../webhelper/src/gwh-browser.c:814 +msgid "Back" +msgstr "Indietro" + +#: ../webhelper/src/gwh-browser.c:818 +msgid "Forward" +msgstr "Avanti" + +#: ../webhelper/src/gwh-browser.c:822 +msgid "Cancel loading" +msgstr "Annulla caricamento" + +#: ../webhelper/src/gwh-browser.c:826 +msgid "Reload current page" +msgstr "Ricarica pagina corrente" + +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 +msgid "Web inspector" +msgstr "Web inspector" + +#: ../webhelper/src/gwh-browser.c:840 +msgid "Toggle web inspector" +msgstr "Attiva/Disattiva web inspector" + +#: ../webhelper/src/gwh-plugin.c:50 +msgid "Web helper" +msgstr "Web helper" + +#: ../webhelper/src/gwh-plugin.c:51 +msgid "" +"Display a preview web page that gets updated upon document saving and " +"provide web analysis and debugging tools (aka Web Inspector), all using " +"WebKit." +msgstr "" +"Visualizza un'anteprima della pagina web che si aggiorna quando il documento " +"viene salvato, genera analisi web e strumenti per il debugging (cioè Web " +"Inspector), usando WebKit." + + +#: ../webhelper/src/gwh-plugin.c:141 +msgid "Web view" +msgstr "Vista web" + +#: ../webhelper/src/gwh-plugin.c:186 +msgid "Web preview" +msgstr "Anteprima web" + +#: ../webhelper/src/gwh-plugin.c:265 +msgid "Reload upon document saving" +msgstr "Ricarica al salvataggio del documento" + +#: ../webhelper/src/gwh-plugin.c:305 +msgid "Browser auto reload" +msgstr "Auto aggiornamento del browser" + +#: ../webhelper/src/gwh-plugin.c:306 +msgid "Whether the browser reloads itself upon document saving" +msgstr "Se il browser deve ricaricarsi da solo quando il documento viene salvato" + +#: ../webhelper/src/gwh-plugin.c:311 +msgid "Browser last URI" +msgstr "Ultimo URI del browser" + +#: ../webhelper/src/gwh-plugin.c:312 +msgid "Last URI visited by the browser" +msgstr "L'ultimo URI visitato dal browser" + +#: ../webhelper/src/gwh-plugin.c:317 +msgid "Browser orientation" +msgstr "Orientazione browser" + +#: ../webhelper/src/gwh-plugin.c:318 +msgid "Orientation of the browser widget" +msgstr "Orientazione del widget browser" + +#: ../webhelper/src/gwh-plugin.c:324 +msgid "Browser position" +msgstr "Posizione del browser" + +#: ../webhelper/src/gwh-plugin.c:325 +msgid "Position of the browser widget in Geany's UI" +msgstr "Posizione del widget browser nella UI di Geany" + +#: ../webhelper/src/gwh-plugin.c:331 +msgid "Browser separate window geometry" +msgstr "Geometria finestra browser separata" + +#: ../webhelper/src/gwh-plugin.c:332 +msgid "Last geometry of the separated browser's window" +msgstr "Ultima geometria della finestra separa del browser" + +#: ../webhelper/src/gwh-plugin.c:337 +msgid "Inspector window geometry" +msgstr "Geometria finestra Inspector" + +#: ../webhelper/src/gwh-plugin.c:338 +msgid "Last geometry of the inspector window" +msgstr "Ultima geometria della finestra separa del Inspector" + +#: ../webhelper/src/gwh-plugin.c:343 +msgid "Inspector detached" +msgstr "Inspector separato" + +#: ../webhelper/src/gwh-plugin.c:344 +msgid "Whether the inspector is in a separate window or docked in the browser" +msgstr "Se l'Inspector dovrà essere in una finestra separata o nel browser" + +#: ../webhelper/src/gwh-plugin.c:349 +msgid "Secondary windows skip task bar" +msgstr "Finestre secondarie non nella taskbar" + +#: ../webhelper/src/gwh-plugin.c:350 +msgid "" +"Whether to tell the window manager not to show the secondary windows in the " +"taskbar" +msgstr "" +"Se il gestore delle finestre non deve mostrare le finestre secondarie nella " +"barra delle applicazioni" + +#: ../webhelper/src/gwh-plugin.c:355 +msgid "Secondary windows are transient" +msgstr "Finestre secondarie transitorie" + +#: ../webhelper/src/gwh-plugin.c:356 +msgid "Whether secondary windows are transient children of their parent" +msgstr "Se le finestre secondarie sono figlie transitorie del loro padre" + +#: ../webhelper/src/gwh-plugin.c:361 +msgid "Secondary windows type" +msgstr "Tipo finestre secondarie" + +#: ../webhelper/src/gwh-plugin.c:362 +msgid "The type of the secondary windows" +msgstr "Il tipo delle finestre secondarie" + +#: ../webhelper/src/gwh-plugin.c:438 +msgid "Toggle Web Inspector" +msgstr "Attiva/Disattiva Web Inspector" + +#: ../webhelper/src/gwh-plugin.c:443 +msgid "Show/Hide Web View's Window" +msgstr "Visualizza/Nascondi la finestra Vista Web" + +#. Browser +#: ../webhelper/src/gwh-plugin.c:509 +msgid "Browser" +msgstr "Browser" + +#. Windows +#: ../webhelper/src/gwh-plugin.c:521 +msgid "Windows" +msgstr "Finestre" + +#: ../xmlsnippets/src/plugin.c:45 +msgid "XML Snippets" +msgstr "Frammenti XML" + +#: ../xmlsnippets/src/plugin.c:46 +msgid "Autocompletes XML/HTML tags using snippets." +msgstr "Autocompleta i tag XML/HTML usando i frammenti." diff -Nru geany-plugins-1.24.0+20140222+git/po/ja.po geany-plugins-1.24.1+dfsg/po/ja.po --- geany-plugins-1.24.0+20140222+git/po/ja.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/ja.po 2014-04-12 14:28:39.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Geany-plugins 1.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2011-10-21 14:08+0100\n" "Last-Translator: Masami Chikahiro \n" "Language-Team: Japanese\n" @@ -35,12 +35,12 @@ msgid "Contents" msgstr "内容" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "ブックマーク" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "更新(_U)" @@ -77,15 +77,15 @@ msgid "Context:" msgstr "コンテキスト:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "XMLタグ付け" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "挿入するタグ名:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -154,11 +154,12 @@ msgid "Run XML tagging" msgstr "XMLタグ付けを実行" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "プラグイン設定ディレクトリを作成できません。" @@ -247,6 +248,15 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "自動的に選択したものに括弧をつける(括弧をつけるためのキー入力は不要)" +#: ../autoclose/src/autoclose.c:50 +#, fuzzy +msgid "Auto-close" +msgstr "自動" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "コードナビ" @@ -315,8 +325,8 @@ msgid "Various debuggers integration." msgstr "統合デバッガ" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "デバッグ" @@ -450,7 +460,7 @@ msgid "Target" msgstr "対象" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "ブレークポイント" @@ -487,22 +497,22 @@ msgstr "再起動" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "中へ" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "次へ" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "外へ" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "カーソル位置まで実行" @@ -511,7 +521,8 @@ msgstr "ブレークポイントを追加/削除" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +#, fuzzy +msgid "Jump to the current instruction" msgstr "現在の命令に移動" #: ../debugger/src/watch_model.c:220 @@ -542,6 +553,14 @@ msgid "Save debug session data to a project" msgstr "デバッグ・セッション・データをプロジェクトに保存" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -653,7 +672,7 @@ msgstr "書籍:" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "書籍" @@ -781,12 +800,12 @@ msgid "A developers' help browser for GNOME" msgstr "GNOMEの開発者向けヘルプブラウザ" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "ファイル(_F)" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "編集(_E)" @@ -966,55 +985,64 @@ msgid "Column mode, select to line / brace / anchor." msgstr "列選択モード、行番号指定選択、対応する括弧、アンカーで選択" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "特殊な選択(_X)" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "列選択モード(_C)" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "列選択モード" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "行番号指定選択(_L)" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "行番号指定選択" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "対応する括弧で選択(_B)" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "対応する括弧で選択" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "選択範囲をテーブルに変換" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "アンカーを設定(_S)" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "アンカーを設定" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "アンカー指定選択(_A)" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "アンカー指定選択" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "アンカーで矩形選択(_R)" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "アンカーで矩形選択" @@ -1278,10 +1306,10 @@ "surprising since the comment will be generated for the last saved state of " "this document and not the current one." msgstr "" -"現在の文書からヘルプ文書を生成する前にディスクに保存するかどうかを指定します。" -"技術的な側面から見ると、タグ一覧が更新されます。このオプションを無効にし、更新さ" -"れた文書からヘルプ文書を生成すると、現在の文書ではなく、最後に保存された状態か" -"らコメントが生成されます。" +"現在の文書からヘルプ文書を生成する前にディスクに保存するかどうかを指定しま" +"す。技術的な側面から見ると、タグ一覧が更新されます。このオプションを無効に" +"し、更新された文書からヘルプ文書を生成すると、現在の文書ではなく、最後に保存" +"された状態からコメントが生成されます。" #. indent #: ../geanygendoc/src/ggd-plugin.c:637 @@ -1415,76 +1443,76 @@ msgid "Default documentation type for languages that does not have one set" msgstr "言語別の設定が用意されてしないすべて言語用の文書種類設定" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "番号を挿入" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "列に番号を挿入" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "数えています..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "準備中..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "挿入中..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "基数が11以上のとき" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "開始(_S):" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "増分(_T):" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "基数(_B):" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "文字:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "大文字(_U)" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "小文字(_L)" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "基数の接頭語(_P)" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "8進数には0,16進数には0x,正の10進数に+をつけることができます" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "余白:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "空白(_A)" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "ゼロ(_Z)" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "番号を挿入(_N)" @@ -1916,20 +1944,20 @@ msgid "BibTeX reference name:" msgstr "BibTeX 参照名:" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "敬称の書出し(Dear Sir や Madameなど)" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "文末の定型句(regardsなど)" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "テンプレートが割り当てられていません。終了します" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "LaTeXウィザード" @@ -1937,78 +1965,78 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "テンプレート:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "新規文書を作成するのに使用されるテンプレートを設定" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "標準" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "文書クラス:" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "作成する文書の種類を選択" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "論文" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "レポート" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "手紙" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "プレゼンテーション" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "エンコード方法:" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "新規文書のエンコード方法を設定" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "フォントサイズ:" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "新規文書の標準フォントサイズを設定" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "著者:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "\\author コマンドの値を設定。通常あなたの氏名を設定します。" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "日付:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2018,37 +2046,37 @@ "定にしたくないときは、\\todayのままにしておくのがよいでしょう。" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "題名:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "新規文書の題名を設定します。" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "用紙サイズ:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "新規文書の用紙を選択" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "用紙の向き" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "新規文書の用紙の向きを選択" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "可能であれば、KOMAスクリプトクラスを使用してください。" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " @@ -2058,106 +2086,106 @@ "使用の注意: あなたの文書をコンパイルするには、これらのクラスを事前にインス" "トールする必要があります。" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "草稿モードを使用" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" "新規文書に草稿フラグを設定し、デバッグヘルパーを使用した文書を作成します。" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "LaTeXウィザードを実行" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "ラベル(\\label)を挿入" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "参照(\\ref)を挿入" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "改行(\\\\)を挿入 " -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "コマンドを挿入" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "入力置き換えのOn/Off" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "特殊文字の置き換え" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "環境挿入ダイアログを実行" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "項目を挿入(\\item)" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "太字フォント" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "斜体フォント" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "固定幅フォント" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "中央合わせ" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "左寄せ" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "右寄せ " -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "説明リストを挿入" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "項目リストを挿入" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "列挙リストを挿入" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "レベルを上げる" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "レベルを下げる" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "パッケージ(\\usepackage{})を挿入" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "BibTeX参照ダイアログを挿入" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2166,7 +2194,7 @@ "GeanyLaTeX は Geany で LaTexをよりよくサポートするプラグインです。\n" "不具合や機能追加については作者にレポートしてください。" -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" @@ -2174,116 +2202,116 @@ "glatex_set_autocompletion_contextsize が不正な値で初期化されました。既定値に" "戻します。設定ファイルを確認してください。" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "page \\pageref{{{reference}}}" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "\\ref{{{reference}}}, page \\pageref{{{reference}}}" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "LaTeXウィザード(_W)" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "LaTeX 文書を簡単に作成するウィザードを開始" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "特殊文字の挿入(_N)" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "あまり使われない特殊文字や記号を入力するのを補助します。" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "参照を挿入(_R)" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "文書に参照を挿入します" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "ラベルを挿入(_L)" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "文書にラベルを挿入します" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "環境を挿入(_E)" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "文書に環境を挿入します" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "パッケージを挿入(_A)" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" "現在のファイルのヘッダに \\usepackage{} を挿入するための小さなダイアログ" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "書式(_F)" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "フォントサイズ(_O)" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "特殊文字の置換(_S)" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "特殊文字の大域置換(_R)" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "選択した特殊文字をTeXの構文に置換(_R)" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "特殊文字置換の切り替え(_S)" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "コマンドを挿入(_C)" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "文書にカスタムコマンドを挿入します" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "BibTeX 参照を挿入(_I)" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "BibTeXファイルの参照を挿入します" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "_BibTeX エントリー" @@ -2439,16 +2467,16 @@ msgid "Creating dummy text with Geany" msgstr "Geanyでダミーテキストを作成" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Lipsum-Generator" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "ダミーテキストの文字数を指定" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2586,19 +2614,19 @@ msgid "Browse..." msgstr "参照..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "色を選択" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "選択..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "フォントを選択" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "選択..." @@ -2629,7 +2657,7 @@ "モジュール \"%s\" が関数 %s() でエラー:\n" "コマンド \"%s\"の引数が不足しています。\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2669,7 +2697,7 @@ msgid "Save file" msgstr "ファイルを保存" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2678,7 +2706,7 @@ "モジュール \"%s\" が関数 pickfile() でエラー:\n" "引数 #3 のフィルタ文字列の解析に失敗。\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2722,7 +2750,7 @@ "プラグイン %s のロードに失敗。\n" "インストールを確認してください。" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" @@ -2731,7 +2759,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2010 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2740,7 +2768,7 @@ "モジュール \"%s\" が関数 %s() でエラー:\n" "ウィジェット \"%s\" がありません(引数 #1)\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3085,6 +3113,21 @@ msgstr "" "選択された文字列を下にコピー。選択されていなかったら、現在の行を下にコピー" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "検索文字列:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "単語の開始部分を検索" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "行頭まで削除" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "マクロ" @@ -3218,9 +3261,8 @@ "that replaces the selected text, or is inserted.\n" "\n" msgstr "" -"個々の操作に別のコマンドを指定、操作の順序を変更、新しい操作を追加、" -"操作の削除も可能です。選択した文字や挿入した文字の編集" -"も可能です。\n" +"個々の操作に別のコマンドを指定、操作の順序を変更、新しい操作を追加、操作の削" +"除も可能です。選択した文字や挿入した文字の編集も可能です。\n" "\n" #: ../geanymacro/src/geanymacro.c:878 @@ -3239,9 +3281,9 @@ "Manager under the Tools menu, selecting this plugin, and cliking " "Preferences. " msgstr "" -"このプラグインの既定の動作を変更することも可能です。ツールメニューのプラグイン" -"マネージャを選択し、このプラグインを選択して、設定ボタンをクリックしてくださ" -"い。" +"このプラグインの既定の動作を変更することも可能です。ツールメニューのプラグイ" +"ンマネージャを選択し、このプラグインを選択して、設定ボタンをクリックしてくだ" +"さい。" #: ../geanymacro/src/geanymacro.c:883 msgid "You can change:\n" @@ -3325,12 +3367,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "了解(_O)" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "キャンセル(_C)" @@ -3347,7 +3389,7 @@ msgid "Search for contents of clipboard" msgstr "クリップボードの内容を検索" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "検索文字列:" @@ -3381,58 +3423,58 @@ msgid "Text:" msgstr "文字列:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "\"%s\"を挿入/で置き換え" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "編集: %s" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "イベント" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "上に移動(_U)" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "下に移動(_W)" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "上に追加(_A)" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "下に追加(_B)" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" msgstr "削除(_D)" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "マクロを修正" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "マクロ名" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "マクロ・キー" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "再び記録(_R)" @@ -3451,6 +3493,33 @@ msgid "_Edit Macros" msgstr "マクロを修正(_E)" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "ミニスクリプトファイルを読み込み" @@ -3459,109 +3528,108 @@ msgid "Save Mini-Script File" msgstr "ミニスクリプトファイルを保存" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "ミニスクリプト フィルタ" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "ミニスクリプト ウィンドウをクリア" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "ミニスクリプトをウィンドウに読み込み" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "ミニスクリプトをファイルに保存" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "ミニスクリプト プラグインの詳細な情報を表示する" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "ミニスクリプト種類を選択" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "入力フィルタ" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "ミニスクリプト入力フィルタを選択" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "選択" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "文書" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "セッション" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "出力フィルタ" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "ミニスクリプト出力フィルタを選択" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "現在の文書" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "新規文書" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "スクリプトの設定" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" msgstr "ミニスクリプト" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "選択文字列や現在の文書にスクリプト フィルタを適用するツール" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "Pascal BURLOT, Geanyユーザ" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "ミニスクリプト(_M)" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "番号指定ブックマーク" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "すべて使用中のためマーカを '%s'に適用できません" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "了解(_O)" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3572,52 +3640,52 @@ "ロードしません。\n" "無視をクリックするとマーカを強制的にロードします。" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "無視(_I)" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "折りたたみ状態を保持" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "ブックマークに移動したときに画面の中心にする" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 msgid "Move to start of line" msgstr "行の始まりに移動" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "行の記録された位置に移動" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "現在の行の位置に移動" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 msgid "Move to End of line" msgstr "行の終わりに移動" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "プログラムの設定を保存" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "ファイルに設定を保存" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "通常のブックマークを保存" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "番号指定ブックマーク・ヘルプ" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3632,15 +3700,15 @@ "shown, but you can have more than one bookmark per line. To move to a " "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -"このプラグインは番号指定ブックマークを提供します。ブックマークを設定するには、" -"CtrlキーとShiftキーを押しながら、0から9のキーを押してください。行番号の隣に" -"マーカが表示されます。マーカの行でCtrl+Shift+数字キーを押すと、そのマーカは削" -"除されます。別の行でCtrl+Shift+数字キーを押すと、その行が新しいマーカ位置にな" -"ります。ある行にマーカが複数設定されているときは、最後に指定したマーカ番号が表" -"示されますが、設定された他のマーカも有効です。以前設定したマーカを移動するに" -"は、Ctrlキーと0から9のキーを押します。" +"このプラグインは番号指定ブックマークを提供します。ブックマークを設定するに" +"は、CtrlキーとShiftキーを押しながら、0から9のキーを押してください。行番号の隣" +"にマーカが表示されます。マーカの行でCtrl+Shift+数字キーを押すと、そのマーカは" +"削除されます。別の行でCtrl+Shift+数字キーを押すと、その行が新しいマーカ位置に" +"なります。ある行にマーカが複数設定されているときは、最後に指定したマーカ番号" +"が表示されますが、設定された他のマーカも有効です。以前設定したマーカを移動す" +"るには、Ctrlキーと0から9のキーを押します。" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "すべて使用中のためマーカを適用できません" @@ -3726,36 +3794,36 @@ msgstr "署名者を選択" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "pinentryを使用できません" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "pinentryからの不明な出力" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "パスフレーズ入力" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "パスフレーズ" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "パスフレーズを入力" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "pinentry エラー" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "pinentryからの不明なエラー" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3767,8 +3835,8 @@ msgid "a key with fingerprint" msgstr "フィンガープリントを使用したキー" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "不明" @@ -3935,7 +4003,7 @@ msgstr "署名ファイルを開く" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "プロジェクト" @@ -3964,7 +4032,7 @@ msgid "C_reate" msgstr "作成(_R)" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "名前:" @@ -4042,7 +4110,7 @@ msgid "Remove File" msgstr "ファイルを削除" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "サイドバーを隠す(_I)" @@ -4051,6 +4119,50 @@ msgid "Project \"%s\" opened." msgstr "プロジェクト \"%s\" が開かれました" +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyPG" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "設定ディレクトリを '%s' に作成できません" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "tty 一時ディレクトリがありません!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "設定ディレクトリを '%s' に作成できません" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4071,42 +4183,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "受信者の電子メールアドレスを入力:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "ファイル名がありません。実行したコマンドは間違っています。" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "受信者アドレスがありません。実行したコマンドは間違っています。" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "メールプログラムを実行できません。環境設定を確認してください。" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "メールプログラムを先に設定してください。" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "送信する前にファイルを保存する必要があります。" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "メール" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "電子メールとして送信" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "メールプログラムのパスとオプション:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4124,28 +4236,28 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"Sending '\\%b'\" -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "ツールバーアイコンを表示" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "ファイル送信を簡単にするためにツールバーにアイコンを表示します。" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "受信者のメールアドレスを入力するダイアログを使用" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "ファイルを電子メールとして送信" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "文書をメールとして送信(_M)" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4165,76 +4277,95 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc: s_spawn_sync エラー: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: '%s' から '%s' に名前変更できません。" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "変更されたものはありません。" -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "履歴が利用できません" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "変更を取り消してもよいですか: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "ファイルを追加してもよいですか: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "ファイルを削除してもよいですか: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "リポジトリから更新してもよいですか?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "リポジトリに反映してもよいですか Y/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "状態" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "パス" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "コミット" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "すべてのファイルを選択/解除(_D)" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "コミット メッセージ:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "コミット(_O)" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "反映させるものはありません。" -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "スペルチェッカ初期化エラー: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4243,11 +4374,11 @@ "スペルチェックの言語設定中にエラーになりました。環境設定を確認してください。" "エラーメッセージ: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "プラグインによって文書タブに作成された変更フラグを設定" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4257,44 +4388,44 @@ "更ありにマークされます。このオプションが便利な場合もありますが、多くの文書に" "対して逐一「保存しますか」ダイアログが表示される原因にもなります。" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "新規ファイルをVCSに追加するかどうか確認" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "新規に作成されたファイルをVCSに追加するかどうか確認ダイアログを表示します。" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "コミットダイアログを最大化" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "コミットダイアログを最大化して表示します。" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "外部diffビューアを使用" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "ファイルの差分を表示するのに外部のdiffビューアを使用します。" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "'VCエントリー'をエディタのメニューに追加" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "エディタメニュー内にVCの機能を表示" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "メニューをメニューバーに追加" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " @@ -4303,209 +4434,209 @@ "このプラグインのメニューがツールメニューの中に表示されるかGeanyのメニューバー" "に追加されるかを指定。GeanyVCの次回起動時に有効になります。" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "CVSを有効" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "GITを有効" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "SVNを有効" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "SVKを有効" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Bazaarを有効" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Mercurialを有効" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "スペルチェック言語" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "_VC ファイル アクション" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "差分(_D)" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "現在のファイルとレポジトリのファイルの差分を作成します。" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "取り消し(_R)" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "作業コピーのファイルを最初の状態に戻す(ローカルな編集を破棄)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "履歴を追跡(_B)" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "ファイルの変更履歴を版ごと修正者ごとに表示" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "履歴ログ(_H)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "現在のファイルのログを表示" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "オリジナル(_O)" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "現在のファイルのオリジナルを表示" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "バージョン管理に追加(_A)" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "ファイルをレポジトリに追加" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "バージョン管理から削除(_R)" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "レポジトリからファイルを削除" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "ディレクトリ(_D)" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "現在のファイルのディレクトリから差分を作成" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "現在のディレクトリの元のファイルを復元(ローカルな編集を破棄)" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "現在のディレクトリのログを表示" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "_BASE ディレクトリ" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "バージョン管理ディレクトリから diff を作成" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "ローカルな編集を元に戻す" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "バージョン管理ディレクトリのログを表示" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "VC コミット(_C)" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "ファイルの差分を表示" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "ディレクトリの差分を表示" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "BASEディレクトリの差分を表示" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "変更を反映" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "状態を表示" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "1つのファイルを元に戻す" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "ディレクトリを元に戻す" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "BASE ディレクトリに戻す" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "ファイルを更新" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "_VC" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "バージョン管理(_V)" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "状態(_S)" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "状態を表示" -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "外部のレポジトリから更新" #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "コミット(_C)" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "変更を反映" @@ -4544,7 +4675,8 @@ "Unable to paste the code. Check your connection and retry.\n" "Error code: %d\n" msgstr "" -"コードの貼り付けができません。インターネット接続を確認してもう一度実行します。\n" +"コードの貼り付けができません。インターネット接続を確認してもう一度実行しま" +"す。\n" "エラーコード: %d\n" #: ../geniuspaste/src/geniuspaste.c:416 @@ -4658,97 +4790,253 @@ msgid "" "Note: set the patterns of files belonging to the project under the Project " "tab." -msgstr "注: プロジェクトタブにプロジェクトに所属するファイルのパターンを設定します" +msgstr "" +"注: プロジェクトタブにプロジェクトに所属するファイルのパターンを設定します" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "ファイルを検索" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "検索範囲:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "大文字小文字を区別(_A)" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "完全パスで検索" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "すべて読み直し" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "すべて展開" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "すべて閉じる" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "アクティブなエディタに従う" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "すべて展開" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "複数ファイルを検索" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "位置:" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "サイドバー" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "メッセージウィンドウ" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "フォント:" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "コードフォント:" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "背景色:" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "前景色:" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "作業ファイルを選択" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "リアルタイム マークダウン プレビュー" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "マークダウン プレビュー" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "現在の文書はマークダウンファイルではありません" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "前の頁に移動" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "次の頁に移動" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "文書タブを切り替え" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "設定の読み込みに失敗: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "ファイル種類 \"%s\" 向けの設定ファイルが見つかりません: %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "設定の保存に失敗: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"プラグイン %s のロードに失敗。\n" +"インストールを確認してください。" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "XML整形" @@ -5085,255 +5373,331 @@ msgstr "2進(_B)" #: ../scope/data/scope.glade.h:64 +msgid "_Raw" +msgstr "" + +#: ../scope/data/scope.glade.h:65 msgid "_Evaluate/Modify" msgstr "評価/修正(_E)" -#: ../scope/data/scope.glade.h:65 +#: ../scope/data/scope.glade.h:66 msgid "_Watch Expression" msgstr "式をウォッチ(_W)" -#: ../scope/data/scope.glade.h:66 +#: ../scope/data/scope.glade.h:67 msgid "_Inspect Variable" msgstr "変数を検査(_I)" -#: ../scope/data/scope.glade.h:67 -msgid "Program Terminal" -msgstr "プログラム端末" - #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "スレッド" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 msgid "Stack" msgstr "スタック" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "ロケール" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "監視" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "メモリ" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "デバッグコンソール" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 msgid "Enter gdb command:" msgstr "GDB コマンドを入力:" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 msgid "Convert _UTF-8 to locale" msgstr "_UTF-8をロケールに変換" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "スレッド(_T)" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "グループ(_G)" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 msgid "_Frame" msgstr "フレーム(_F)" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" msgstr "プログラムを設定" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "実行ファイル(_E):" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "引数(_A):" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 msgid "En_vironment:" msgstr "環境(_V):" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "作業ディレクトリ(_W):" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "スクリプトを読込(_L):" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "自動起動プログラム/gdbを終了(_R)" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "ノンストップモード(_N)" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +#, fuzzy +msgid "_Temporary breakpoint on load at:" msgstr "一時的なブレークポイント(_T):" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +#, fuzzy +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "全てのブレークポイント,ウォッチ,検査を削除(_D)" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "プログラム" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 msgid "Open on" msgstr "開く" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "g_db ロード" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "プログラム開始(_R)" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 msgid "Update all _views" msgstr "全ての表示を更新(_V)" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "パネル" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "標準8ビットテキストモード:" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "_7ビット \\nnn" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "表示" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" msgstr "メンバー(_M)" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 msgid "and" msgstr "および" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 msgid "_argument" msgstr "引数(_A)" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 msgid "names" msgstr "名前" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" msgstr "展開(_X)" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "表示(_H)" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "子" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "検査" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "表示 =ライブラリメッセージ(_I)" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 msgid "Show _tooltips" msgstr "ツールチップを表示(_T)" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "その他" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 msgid "Options" msgstr "オプション" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 msgid "_Import" msgstr "読み込み(_I)" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" msgstr "割当て式を入力:" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "検証" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 msgid "Object:" msgstr "オブジェクト:" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "-" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 msgid "Frame:" msgstr "フレーム:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "@" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "実行時に適用(_A)" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "展開" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 msgid "Start:" msgstr "開始:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "回数:" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" msgstr "適用時に展開(_E)" -#: ../scope/src/break.c:947 -#, c-format +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "プログラム端末" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "ブレークポイント" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "ブレークポイントを修正" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "監視ポイント" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "監視ポイント" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "監視ポイントを修正" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "監視ポイント" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "監視ポイントを修正" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "監視ポイント" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +#, fuzzy +msgid "unsupported MI" +msgstr "ソートしない(_U)" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "g_db ロード" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "カーソル位置まで実行(_C)" + +#: ../scope/src/break.c:1013 +#, fuzzy, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" "%s:%d に複数のブレークポイントがあります。\n" "ブレークポイントリストより1つに変更してください。" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "ブレークポイントを追加" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "監視ポイントを追加" @@ -5345,7 +5709,8 @@ msgid "Enter char # (0..255):" msgstr "文字コード(0...255)を入力:" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "スコープ: %s" @@ -5364,60 +5729,61 @@ msgid "Program terminated." msgstr "プログラムは終了しました。" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "ブレークポイントがありません。中止。" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "%s." -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "無効なデータ" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "範囲に子がありません" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "スコープ範囲外" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "検査変数名が重複" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "メモリを読み込み" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, fuzzy, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "スコープ: ポインタサイズ > 8, データ無効" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "修正" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "評価/修正" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "式を監視" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 msgid "Inspect variable" msgstr "変数を検査" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "未定義GDBエラー" @@ -5429,34 +5795,26 @@ msgid "Select File" msgstr "ファイルを選択" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "ブレーク" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "コンソール" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "スコープ: %s: %s." -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "スコープ: 設定ファイルを生成しました。" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "%s 用のデバッグ設定を読み込みました" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "デバッグ設定ファイル %s の読み込みに失敗: %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5467,15 +5825,16 @@ "\n" "継続しますか?" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +#, fuzzy +msgid "Delete all breakpoints, watches et cetera?" msgstr "全てのブレークポイント、監視、検査を削除しますか?" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "_Name=value として" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "_Name = value として" @@ -5484,157 +5843,170 @@ msgstr "スコープデバッガ" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +#, fuzzy +msgid "Relatively simple GDB front-end." msgstr "シンプルなGDBフロントエンド." -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "プログラムを設定" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "実行/継続" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 msgid "Run to source" msgstr "ソース位置まで実行" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "終了" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" msgstr "ブレークポイントを切り替え" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "GDBコマンド" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "端末を表示" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "ビジー" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "レディ" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "ハング" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "Assem" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "ロード" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "ビルドがアクティブになりました.デバッグを終了しますか?" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "ブレーク" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "コンソール" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "デバッグコンソール" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "スレッドグループ %s を開始しました。" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "スレッドグループ " -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr " 終了" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr " コード %s で終了" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "シグナルを送信" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "シグナル番号を入力:" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "プロセスを終了" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "終了コードを入力:" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "実行中" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "停止" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "%s: エラー %lu。" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "%s: %s." -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "スコープ: [%s] 読み込み中にエラー。" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "..." -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "送信(_S)" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "ビジー(_B)" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 msgid "GDB Command" msgstr "GDBコマンド" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "候補: " -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "スペルチェック" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "ファイル \"%s\" を検査( %d から %d 行目に %s を使用):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "ファイル \"%s\" を検査(%s を使用):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "検査した文字の綴りは正しいです。" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "Enchantライブラリを初期化できません(%s)。" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "不明なエラー(選択した言語は利用できません)" @@ -5728,17 +6100,17 @@ msgid "Ignore All" msgstr "すべて無視" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "標準 (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "入力中のスペルチェックを有効/無効(現在の言語: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "正しい単語の候補" @@ -5769,28 +6141,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "不明なエラーのため中断" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "選択範囲をテーブルに変換" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "テーブルに変換(_C)" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "現在マークしたリストをテーブルに変換." -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "ツリーブラウザ" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5798,30 +6170,30 @@ "このプラグインはGeanyにツリーブラウザを追加し、ディレクトリをツリービューに表" "示して、ユーザがファイルを選択できるようにします。" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: ディレクトリがありません" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(空)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "設定済みの外部コマンド '%s' が実行できません (%s)." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "新規ディレクトリ" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "新規ファイル" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" @@ -5830,96 +6202,103 @@ "対象ファイル '%s' が存在します。\n" "このファイルを空のファイルで上書きしてもいいですか?" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "'%s' を削除してもよいですか?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "上に移動" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "文書からパスを設定" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" msgstr "外部アプリケーションで開く" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "端末で開く" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "rootに設定" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "表示を更新" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "複数ファイルを検索" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "ディレクトリを作成" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "ファイルを作成" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "名前変更" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "削除" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "閉じる: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "下位の文書を閉じる" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +#, fuzzy +msgid "_Copy full path to clipboard" msgstr "完全パスをクリップボードにコピー" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "ブックマークを表示" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "隠しファイルを表示" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "ツールバーを表示" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "対象ファイル '%s' が存在します。置き換えてもいいですか?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "ホーム" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "パスを記録" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "バーを隠す" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -5927,19 +6306,19 @@ "フィルタ(*.c;*.h;*.cpp)と '!' 反転を使った一時フィルタを使用するには次のよう" "にします '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "アドレスバーの入力例 '/projects/my-project'" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "ツリーブラウザ" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "他のプログラムで開く" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -5953,51 +6332,51 @@ "%f は完全パスを含むファイル名に置き換えられます。\n" "%d は選択したファイルがあるパス名に置き換えられます。" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "ツールバー" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "非表示" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "上" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "下" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "位置を変更したときは、プラグインの再起動が必要です。" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "アイコンを表示" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "なし" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "基本" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "内容" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "'.'(ドット)から始まるファイルを隠します" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "オブジェクトファイルを表示しない" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6005,47 +6384,56 @@ "ファイルブラウザにオブジェクトファイルを表示しません。除外されるファイルは *." "o, *.obj. *.so, *.dll, *.a, *.lib です。" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "フィルタを反転" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "現在の文書のディレクトリに合わせる" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "シングルクリックで文書を表示" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "ダブルクリックでディレクトリを表示" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "ファイル削除時に、開いていたら閉じる" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "ツリー行数を表示" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "ファイルを開く" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "ファイル覧に切り替え" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "パス入力に切り替え" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "オブジェクトの名前変更" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "ファイルを作成" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "ディレクトリを作成" @@ -6113,44 +6501,44 @@ msgid "utility" msgstr "ユーティリティ" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "ズーム(_Z)" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "内容全体にズーム(_C)" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "ペインの方向を切り替え" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "戻る" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "進む" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "読み込みを中断" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "現在のページを再読み込み" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Web検証" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Web検証を切り替え" @@ -6288,6 +6676,9 @@ msgid "Autocompletes XML/HTML tags using snippets." msgstr "スニペットを使用してXML/HTMLタグを自動補完" +#~ msgid "%s: error %lu." +#~ msgstr "%s: エラー %lu。" + #~ msgid "Plugins" #~ msgstr "プラグイン" @@ -6360,9 +6751,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "tty 一時ディレクトリが指定されていません!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "tty 一時ディレクトリがありません!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "tty ヘルパープログラムが指定されていません!\n" @@ -6429,21 +6817,12 @@ #~ msgid "No %s selected" #~ msgstr "%s が選ばれていません" -#~ msgid "watchpoint" -#~ msgstr "監視ポイント" - #~ msgid "Delete selected watchpoint?" #~ msgstr "選択した監視ポイントを削除しますか?" #~ msgid "Delete selected breakpoint?" #~ msgstr "選択したブレークポイントを削除しますか?" -#~ msgid "Edit watchpoint" -#~ msgstr "監視ポイントを修正" - -#~ msgid "Edit breakpoint" -#~ msgstr "ブレークポイントを修正" - #~ msgid "Enabled" #~ msgstr "有効" @@ -6873,9 +7252,6 @@ #~ msgid "Couldn't create tempfile" #~ msgstr "一時ファイルを作成できません" -#~ msgid "GeanyPG" -#~ msgstr "GeanyPG" - #~ msgid "Lionel Fuentes" #~ msgstr "Lionel Fuentes" diff -Nru geany-plugins-1.24.0+20140222+git/po/Makefile.in.in geany-plugins-1.24.1+dfsg/po/Makefile.in.in --- geany-plugins-1.24.0+20140222+git/po/Makefile.in.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/Makefile.in.in 2014-04-13 17:12:24.000000000 +0000 @@ -0,0 +1,222 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper +# Copyright (C) 2004-2008 Rodney Dawes +# +# This file may be copied and used freely without restrictions. It may +# be used in projects which are not available under a GNU Public License, +# but which still want to provide support for the GNU gettext functionality. +# +# - Modified by Owen Taylor to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize +# +# - Modified by Rodney Dawes for use with intltool +# +# We have the following line for use by intltoolize: +# INTLTOOL_MAKEFILE + +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = @SHELL@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +top_builddir = @top_builddir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +datarootdir = @datarootdir@ +libdir = @libdir@ +DATADIRNAME = @DATADIRNAME@ +itlocaledir = $(prefix)/$(DATADIRNAME)/locale +subdir = po +install_sh = @install_sh@ +# Automake >= 1.8 provides @mkdir_p@. +# Until it can be supposed, use the safe fallback: +mkdir_p = $(install_sh) -d + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot + +ALL_LINGUAS = @ALL_LINGUAS@ + +PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) + +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) + +USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) + +POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) + +DISTFILES = Makefile.in.in POTFILES.in $(POFILES) +EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS + +POTFILES = \ +# This comment gets stripped out + +CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) + +.SUFFIXES: +.SUFFIXES: .po .pox .gmo .mo .msg .cat + +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V)) +INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) +INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@; + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $< + +.po.gmo: + $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && gencat $@ $*.msg + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(GENPOT) + +install: install-data +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $$dir; \ + if test -r $$lang.gmo; then \ + $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $(srcdir)/$$lang.gmo as" \ + "$$dir/$(GETTEXT_PACKAGE).mo"; \ + fi; \ + if test -r $$lang.gmo.m; then \ + $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + if test -r $(srcdir)/$$lang.gmo.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ + $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $(srcdir)/$$lang.gmo.m as" \ + "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + true; \ + fi; \ + fi; \ + done + +# Empty stubs to satisfy archaic automake needs +dvi info ctags tags CTAGS TAGS ID: + +# Define this as empty until I found a useful application. +install-exec installcheck: + +uninstall: + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ + done + +check: all $(GETTEXT_PACKAGE).pot + rm -f missing notexist + srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m + if [ -r missing -o -r notexist ]; then \ + exit 1; \ + fi + +mostlyclean: + rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp + rm -f .intltool-merge-cache + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES stamp-it + rm -f *.mo *.msg *.cat *.cat.m *.gmo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f Makefile.in.in + +distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: $(DISTFILES) + dists="$(DISTFILES)"; \ + extra_dists="$(EXTRA_DISTFILES)"; \ + for file in $$extra_dists; do \ + test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ + done; \ + for file in $$dists; do \ + test -f $$file || file="$(srcdir)/$$file"; \ + ln $$file $(distdir) 2> /dev/null \ + || cp -p $$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + echo "$$lang:"; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.gmo failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +Makefile POTFILES: stamp-it + @if test ! -f $@; then \ + rm -f stamp-it; \ + $(MAKE) stamp-it; \ + fi + +stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/po/nl.po geany-plugins-1.24.1+dfsg/po/nl.po --- geany-plugins-1.24.0+20140222+git/po/nl.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/nl.po 2014-04-13 13:33:33.000000000 +0000 @@ -1,13 +1,13 @@ # Dutch translations for geany-plugins package. # Copyright (C) 2011 THE geany-plugins'S COPYRIGHT HOLDER # This file is distributed under the same license as the geany-plugins package. -# Peter Scholtens , 2011, 2013 +# Peter Scholtens , 2011, 2013-2014 # hans , 2011. msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2011-09-13 20:24+0100\n" "Last-Translator: Peter Scholtens \n" "Language-Team: Dutch\n" @@ -34,12 +34,12 @@ msgid "Contents" msgstr "Inhoud" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Bladwijzers" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "" @@ -76,15 +76,15 @@ msgid "Context:" msgstr "Context:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "XML labelen" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "In te voegen label naam:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -140,11 +140,11 @@ #: ../addons/src/addons.c:296 msgid "Focus Bookmark List" -msgstr "Focus bladwijzerlijst" +msgstr "Schakel naar bladwijzerlijst" #: ../addons/src/addons.c:298 msgid "Focus Tasks List" -msgstr "Focus takenlijst" +msgstr "Schakel naar takenlijst" #: ../addons/src/addons.c:300 msgid "Update Tasks List" @@ -154,11 +154,12 @@ msgid "Run XML tagging" msgstr "XML labelen uitvoeren" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "Plug-in configuratiemap kon niet worden aangemaakt." @@ -249,6 +250,15 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +#, fuzzy +msgid "Auto-close" +msgstr "Auteur:" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Code navigatie" @@ -316,8 +326,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "" @@ -449,7 +459,7 @@ msgid "Target" msgstr "Doel" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Breekpunten" @@ -488,22 +498,22 @@ msgstr "Herstart" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "Stap erin" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "Stap over" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "Stap eruit" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "Ga door tot cursor" @@ -512,7 +522,7 @@ msgstr "Voeg breekpunt toe (of verwijder)" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "" #: ../debugger/src/watch_model.c:220 @@ -544,6 +554,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -653,7 +671,7 @@ msgstr "Boek:" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Boek" @@ -782,12 +800,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "Bestand" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "Wijzig" @@ -970,55 +988,64 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Selecteer een ondertekenaar" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1405,76 +1432,76 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "" @@ -1904,20 +1931,20 @@ msgid "BibTeX reference name:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "" @@ -1925,78 +1952,78 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "Kies het soort document dat je wilt schrijven" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Artikel" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Rapport" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Brief" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Presentatie:" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Auteur:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2004,263 +2031,263 @@ msgstr "" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " "before." msgstr "" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" "Please report all bugs or feature requests to one of the authors." msgstr "" -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 msgid "_BibTeX" msgstr "" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "" @@ -2417,16 +2444,16 @@ msgid "Creating dummy text with Geany" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "" @@ -2550,19 +2577,19 @@ msgid "Browse..." msgstr "" -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "" -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "" @@ -2587,7 +2614,7 @@ "not enough arguments for command \"%s\".\n" msgstr "" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2622,14 +2649,14 @@ msgid "Save file" msgstr "" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2668,21 +2695,21 @@ "Please check your installation." msgstr "" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3022,6 +3049,21 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "Zoek naar:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "Zoek naar begin van een woord:" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Verwijder tot aan het begin van de regel" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "" @@ -3222,12 +3264,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "" @@ -3244,7 +3286,7 @@ msgid "Search for contents of clipboard" msgstr "Zoek naar inoud van klembord" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Zoek naar:" @@ -3278,59 +3320,59 @@ msgid "Text:" msgstr "" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "Verwijder" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3349,6 +3391,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3357,111 +3426,110 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "Selecteer een ondertekenaar" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "Documentatie" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" msgstr "" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3469,54 +3537,54 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Ga naar begin van de regel" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "Ga naar bewaarde positie op de regel" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "Ga naar positie in huidige regel" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Ga naar het eind van de regel" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3532,7 +3600,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3613,36 +3681,36 @@ msgstr "Selecteer een ondertekenaar" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "pinentry kan niet gebruikt worden" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "Onverwachte output van pinentry" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "Wachtwoord invoeren" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Wachtwoord" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "Voer wachtwoord in voor" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "er is een fout opgetreden in pinentry " -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "Onverwachte fout in pinentry" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3654,8 +3722,8 @@ msgid "a key with fingerprint" msgstr "een sleutel met vingerafdruk" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "onbekend" @@ -3822,7 +3890,7 @@ msgstr "Open handtekeningsbestand" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "" @@ -3851,7 +3919,7 @@ msgid "C_reate" msgstr "Creër" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Naam:" @@ -3872,9 +3940,10 @@ "Base directory of all files that make up the project. This can be a new " "path, or an existing directory tree. You can use paths relative to the " "project filename." -msgstr "Basismap van alle bestanden die samen het project vormen. Dit kan " -"zowel een nieuw of bestaande map zijn. Je kunt de paden relatief kiezen" -"ten opzichte van het projektbestand." +msgstr "" +"Basismap van alle bestanden die samen het project vormen. Dit kan zowel een " +"nieuw of bestaande map zijn. Je kunt de paden relatief kiezenten opzichte " +"van het projektbestand." #: ../geanyprj/src/menu.c:163 msgid "Choose Project Base Path" @@ -3924,7 +3993,7 @@ msgid "Remove File" msgstr "Verwijder bestand" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Verberg zijbalk" @@ -3933,6 +4002,49 @@ msgid "Project \"%s\" opened." msgstr "Projekt \"%s\" geopend." +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyVB" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Kon configuratie map niet creëren op '%s'" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Kon configuratie map niet creëren op '%s'" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "" @@ -3951,42 +4063,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -3997,29 +4109,29 @@ "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Laat Hulpmiddelenbalk pictogram" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Laat in de hulpmiddelenbalk een pictogram zien om een bestand te versturen." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4037,77 +4149,96 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: Kon \"%s\" niet hernoemen tot \"%s\"" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Er zijn geen wijzigingen gemaakt." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 #, fuzzy msgid "No history available" msgstr "Geen geschiedenis beschikbaar." -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Wil je echt de wijzigingen in \"%s\" terugdraaien?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Wil je echt \"%s\" toevoegen?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Wil je echt \"%s\" verwijderen" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Wil je echt updaten?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Doorvoeren J/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Toestand" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Pad" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Doorvoeren" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "(De-)selecteer alle bestanden" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Doorvoer commentaar:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "Doorvoeren" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Niets door te voeren." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Fout tijdens spellingscontrole-initialisatie: \"%s\"" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4116,12 +4247,12 @@ "Controleer configuratie: er is een fout opgetreden bij het instellen van de " "taal voor de spellingscontrole. Foutmelding: \"%s\"" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" "Zet vlag 'gewijzigd' bij tabbladen van de door plugin gecreërde documenten." -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4132,256 +4263,256 @@ "gevallen, zal het mogelijkerwijs ook een groot aantal hinderlijke 'Wil je " "dit bewaren' dialogen veroorzaken." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Bevestig het toevoegen van nieuwe bestanden aan VBS." -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Laat een bevestigingsdialoog zien bij het toevoegen van een nieuw (gecreërd) " "bestand aan het VBS." -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Maximaliseer doorvoer dialoog." -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Laat doorvoer dialoog maximalisatie zien." -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Gebruik externe diff viewer" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Gebruik externe diff viewer voor bestanden." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Laat VB entries zien bij editor menu" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "Laat entries voor VB functies in editor menu" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Spellingscontroletaal" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "VB bestandhandelingen" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Maak een 'diff' van het huidige actieve bestand" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "Draai terug" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "Herstel oorspronkelijke werkversie (maak lokale wijzigingen ongedaan)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Laat de wijzigingen van een bestand per revisie en auteur zien." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Laat de log van het huidige bestand zien" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "Origineel" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 #, fuzzy msgid "Shows the original of the current file" msgstr "Laat het origineel van het huidige bestand zien" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "Voeg aan Versie Beheer toe" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Voeg bestand aan opslagplaats toe." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "Verwijder van Versie Beheer" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Verwijder bestand van opslagplaats." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "Map" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Basismap" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "VB doorvoeren" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Laat verschil tussen bestanden zien" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Laat verschil tussen mappen zien" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Laat verschil van basismap zien" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Voer wijzigingen door" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Laat toestand zien" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Draai wijzigingen van bestand terug" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Draai wijzigingen map terug" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Draai wijzigingen basismap terug" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Update bestand" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "VB" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 #, fuzzy msgid "_Version Control" msgstr "Voeg aan Versie Beheer toe" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "Toestand" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Laat toestand zien." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Update van opslagplaats op afstand" #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "Doorvoeren" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Voer wijzigingen door." @@ -4452,19 +4583,19 @@ #: ../gproject/src/gproject-menu.c:353 msgid "Find in Project Files" -msgstr "" +msgstr "Zoek in projectbestanden" #: ../gproject/src/gproject-menu.c:359 msgid "Find in project files" -msgstr "" +msgstr "Zoek in projectbestanden" #: ../gproject/src/gproject-menu.c:363 msgid "Find Project File" -msgstr "" +msgstr "Zoek projectfile" #: ../gproject/src/gproject-menu.c:369 msgid "Find project file" -msgstr "" +msgstr "Zoek projectfile" #: ../gproject/src/gproject-menu.c:371 msgid "Swap Header/Source" @@ -4524,98 +4655,251 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Zoek bestand" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Zoek in:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Hoofdlettergevoelig" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Alles uitvouwen" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Alles samenvouwen" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Alles uitvouwen" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Zoek in bestanden" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Conditie" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 #, fuzzy msgid "Message Window" msgstr "_Verberg berichtenvenster" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "Selecteer een ondertekenaar" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "Vertalingshulp" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "Vorige string" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +msgid "Go to previous string" +msgstr "Ga naar vorige string" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "Volgende string" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to next string" +msgstr "Ga naar volgende string" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "Vorige onvertaalde string" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "Ga naar vorige onvertaalde string" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "Volgende onvertaalde string" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "Ga naar volgende onvertaalde string" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "Vorige onduidelijkheid" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "Ga naar de vorige onduidelijk vertaalde string" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "Volgende onduidelijkheid" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "Ga naar volgende onduidelijk vertaalde string" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "Vorige onvertaalde of onduidelijke string" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "Ga naar vorige onvertaalde of onduidelijke string" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "Volgende onvertaalde of onduidelijke string" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "Ga naar volgende onvertaalde of onduidelijke string" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +msgid "Toggle current translation fuzziness" +msgstr "Markeer huidige vertaling als (on)duidelijk" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "Zet (on)duidelijkheid" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "Plak bericht als vertaling" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "Plak de orginele onvertaalde string naar de vertaling" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" +"Of de vertalingsinformatie (auteur, revisiedatum, ...) aangepast moet worden " +"bij het wegschrijven" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "Pas vertalingsinfo aan bij wegschrijven" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "Vertalingshulp" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "Verbetert ondersteuning van GetText vertalingsbestanden." + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "Plak originele onvertaalde string naar vertalingsveld" + +#: ../pohelper/src/gph-plugin.c:1099 +msgid "Failed to load configuration file: %s" +msgstr "Kon configuratie bestand '%s' niet inlezen" + +#: ../pohelper/src/gph-plugin.c:1124 +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "Kon configuratie map niet creëren op \"%s\": '%s'" + +#: ../pohelper/src/gph-plugin.c:1127 +msgid "Failed to save configuration file: %s" +msgstr "Kon configuratiebestand niet wegschrijven: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"Kon definitie van grafische interface niet lezen. Controleer de installatie." +"Foutmelding '%s'" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" +"Kon widget '%s' niet vinden in grafische interface definitie. Controleer de " +"installatie." + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4968,272 +5252,340 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "Omgevingsvariabelen" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "Debug terminaalvenster" +msgid "_Inspect Variable" +msgstr "Omgevingsvariabelen" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 msgid "Stack" msgstr "" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "Lokale variabelen" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" msgstr "Extern commando op te openen" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 msgid "Convert _UTF-8 to locale" msgstr "" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 msgid "_Frame" msgstr "" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" msgstr "" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 #, fuzzy msgid "_Arguments:" msgstr "Uitlijning" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "Omgevingsvariabelen" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" msgstr "Open URI" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" msgstr "Update takenlijst" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" msgstr "" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "fout" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 msgid "_argument" msgstr "" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "Hernoem" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 #, fuzzy msgid "E_xpand on apply" msgstr "Alles uitvouwen" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "Laat balk met hulpmiddelen zien" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "Zoektermen:" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" msgstr "Rapport" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 #, fuzzy msgid "Enter assignment expression:" msgstr "Kan expressie niet evalueren" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "Hernoem object" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 msgid "Frame:" msgstr "" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 #, fuzzy msgid "Expand" msgstr "Alles uitvouwen" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "Herstart" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 #, fuzzy msgid "_Expand on apply" msgstr "Alles uitvouwen" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "Debug terminaalvenster" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Breekpunten" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Breekpunten" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "Breekpunten" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "Breekpunten" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Ga door tot cursor" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "Breekpunten" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "" @@ -5246,7 +5598,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "Sluit: %s" @@ -5265,62 +5618,63 @@ msgid "Program terminated." msgstr "" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "" -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 #, fuzzy msgid "Watch expression" msgstr "Kan expressie niet evalueren" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "Verwijder variabele?" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5334,36 +5688,27 @@ msgid "Select File" msgstr "Selecteer een ondertekenaar" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Breekpunten" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." msgstr "Fout gedurende inladen configuratie bestand" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5371,15 +5716,15 @@ "Continue?" msgstr "Ga door" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5388,165 +5733,178 @@ msgstr "" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 msgid "Setup program" msgstr "" # -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "Start / Ga door" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "Ga door tot cursor" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "Open terminalvenster" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "Breekpunten" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "Laat regels van boom zien" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "Breekpunten" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "Stop" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "Sluit: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Commando 0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Controleert bestand \"%s\" (regels %d t/m %d dmv. %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "Controleert bestand \"%s\" (dmv. %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "The gecontroleerde tekst is korrekt gespeld" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "De Enchant bibliotheek kon niet geïnitialiseerd worden (%s)" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "onbekende fout (misschien is de gekozen taal niet beschikbaar)" @@ -5636,17 +5994,17 @@ msgid "Ignore All" msgstr "Negeer alles" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Spellingssuggesties" @@ -5677,28 +6035,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5706,30 +6064,30 @@ "Deze plug-in voegt een TreeBrowser toe aan Geany, waardoor de gebruiker door " "de boomstructuur van de huidige map heen kan bladeren." -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: map bestaat niet." -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Leeg)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Kon extern geconfigureerde commando '%s' (%s) niet uitvoeren." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NieuweMap" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NieuwBestand" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" @@ -5738,96 +6096,100 @@ "Doelbestand '%s' bestaat reeds,\n" "wil je het echt vervangen door een leeg bestand?" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Wil je echt '%s' verwijderen?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Ga naar boven" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Zet pad van document" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" -msgstr "" +#: ../treebrowser/src/treebrowser.c:1215 +msgid "_Open externally" +msgstr "Open extern" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Open terminalvenster" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Stel in als begin" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Ververs" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +msgid "_Find in Files" +msgstr "Zoek in bestanden" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Creër nieuwe map" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Creër nieuw bestand" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Hernoem" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Verwijder" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Sluit: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "Sluit " -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" -msgstr "Kopiëer volledig pad naar klembord" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" +msgstr "Kopiëer volledig padnaam naar klembord" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Laat bladwijzers zien" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Laat verborgen bestanden zien" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "Laat balk met hulpmiddelen zien" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Doelbestand '%s' bestaat, wil je het echt vervangen?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Thuis" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "Volg pad" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Verberg balken" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -5835,19 +6197,19 @@ "Filter (*.c;*.h;*.cpp), en als je tijdelijk andersom wilt filteren gebruik " "'!' zoals bijvoorbeeld '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Adresregel, bijvoorbeeld '/projecten/mijn-project'" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Extern commando op te openen" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -5861,51 +6223,51 @@ "%f zal vervangen worden door de bestandsnaam inclusief volledig pad\n" "%d zal vervangen worden door slechts de padnaam van de geselecteerde bestand." -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "Hulpmiddelenbalk" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "Verborgen" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "Bovenaan" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "Onderaan" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "De plug-in moet herstart worden als de positie gewijzigd is." -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "Laat pictogrammen zien" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "Geen" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "Basis" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "Inhouds-type" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "Dit verbergt bestanden, in Windows, die beginnen met een '.' (punt)" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Verberg object bestanden" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -5913,51 +6275,56 @@ "Laat geen gegenereerde object bestanden zien in de bestandsbrowser, " "waaronder *.o, *.obj. *.so, *.dll, *.a, *.lib" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Keer filter om" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Volg huidige directory" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Enkele klik, open document en zet op de voorgrond" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Dubbelklik, open map" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Sluit bestand af wanneer het wordt verwijderd en nog geopend is." -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Laat regels van boom zien" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 #, fuzzy +msgid "Open new files" +msgstr "Creër nieuw bestand" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" -msgstr "Voorgrond bestandslijst" +msgstr "Zet bestandslijst op voorgrond" -#: ../treebrowser/src/treebrowser.c:2052 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" -msgstr "Voorgrond pad" +msgstr "Zet pad entry op voorgrond" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "Hernoem object" -#: ../treebrowser/src/treebrowser.c:2056 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:2119 msgid "Create New File" msgstr "Creër nieuw bestand" -#: ../treebrowser/src/treebrowser.c:2058 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New Directory" msgstr "Creër nieuwe map" @@ -6023,44 +6390,44 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Herlaad huidige bladzijde" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" @@ -6189,11 +6556,11 @@ #: ../xmlsnippets/src/plugin.c:45 msgid "XML Snippets" -msgstr "" +msgstr "XML Snippers" #: ../xmlsnippets/src/plugin.c:46 msgid "Autocompletes XML/HTML tags using snippets." -msgstr "" +msgstr "Completeerd automatisch XML/HTML labels." #~ msgid "Unknown signal" #~ msgstr "Onbekend signaal" diff -Nru geany-plugins-1.24.0+20140222+git/po/pt_BR.po geany-plugins-1.24.1+dfsg/po/pt_BR.po --- geany-plugins-1.24.0+20140222+git/po/pt_BR.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/pt_BR.po 2014-04-12 14:28:39.000000000 +0000 @@ -4,9 +4,9 @@ # Adrovane Marques Kade , 2009. msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: \n" "Last-Translator: Adrovane Marques Kade \n" "Language-Team: Adrovane Marques Kade \n" @@ -34,12 +34,12 @@ msgid "Contents" msgstr "Conteúdos" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Marcadores" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "At_ualizar" @@ -76,15 +76,15 @@ msgid "Context:" msgstr "Contexto:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "Rotulação XML" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nome de rótulo a ser inserido:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -155,11 +155,12 @@ msgid "Run XML tagging" msgstr "Executar rotulação de XML" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "O diretório de configuração de plugins não pôde ser criado." @@ -254,6 +255,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navegação no Código" @@ -324,8 +333,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Depurar" @@ -469,7 +478,7 @@ msgid "Target" msgstr "large" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Pontos de quebra" @@ -512,24 +521,24 @@ msgstr "iniciando" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 #, fuzzy msgid "Step into" msgstr "Step _in" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 #, fuzzy msgid "Step out" msgstr "Step _in" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 #, fuzzy msgid "Run to cursor" msgstr "Executar até o local" @@ -541,7 +550,7 @@ #: ../debugger/src/keys.c:57 #, fuzzy -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "Completa a função atualmente em execução." #: ../debugger/src/watch_model.c:220 @@ -576,6 +585,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 #, fuzzy @@ -690,7 +707,7 @@ msgstr "Book" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Book" @@ -821,12 +838,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Arquivo" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 #, fuzzy msgid "_Edit" msgstr "Editor" @@ -1019,57 +1036,66 @@ msgid "Column mode, select to line / brace / anchor." msgstr "Modo coluna, seleção até a linha / colchete casado." -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Seleção E_xtra" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "Modo _Coluna" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Modo coluna" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Selecionar até _Linha" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Seleciona até a linha" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Selecionar até o C_olchete Casado" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Selecionar até o colchete casado" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Formatar seleção alinhado à esquerda" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 #, fuzzy msgid "Select to _Anchor" msgstr "Selecionar até _Linha" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 #, fuzzy msgid "Select to anchor" msgstr "Seleciona até a linha" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1482,76 +1508,76 @@ msgstr "" "Tipo de documentação padrão para linguagens que não tem um tipo definido" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Inserir Números" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Inserir/Preencher colunas com números." -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Contando..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Preparando..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Inserindo..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Para base 11 e acima" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Início:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Passo:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Letras:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "Maiúsc_ulas" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "_Minúscul_o" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "_Prefixo base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "0 para octal, 0x para hexa, + para decimal positivo" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Padding:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Esp_aço" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Zero" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Inserir _Números" @@ -1990,20 +2016,20 @@ msgid "BibTeX reference name:" msgstr "Nome da referência:" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "Prezado Sr. ou Sra." -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "Atenciosamente" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "Nenhum template atribuído. Abortando." #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "LaTeX-Wizard" @@ -2011,68 +2037,68 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Template:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "Definir o template que deve ser usado para criar o novo documento" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "Padrão" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "Documentclass:" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "Escolha o tipo de documento que você quer escrever" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Article" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Report" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Letter" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Apresentação" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "Codificação" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "Define a codificação para o seu novo documento" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 #, fuzzy msgid "Font size" msgstr "Tamanho da fonte:" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "Define o tamanho da fonte padrão do seu novo documento" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Autor:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" @@ -2080,11 +2106,11 @@ "Define o valor do comando \\author. Na maioria dos casos, deve ser o seu nome" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "Data:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2095,37 +2121,37 @@ "data fixa." #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "Título:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "Define o título do seu documento." #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "Tamanho do papel:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "Escolha o formato de papel para o seu novo documento" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "Orientação do Papel:" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "Escolha a orientação do papel para o seu novo documento" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "Usar classes KOMA-script se possível" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " @@ -2135,11 +2161,11 @@ "Lembre-se: para compilar o seu documento essas classes devem estar " "previamente instaladas." -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "Usar modo rascunho" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" @@ -2147,96 +2173,96 @@ "Define o flag draft dentro de novos documentos para obter documentos com " "ajudantes de depuração" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "Executar LaTeX-Wizard" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "Inserir \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "Inserir \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "Inserir quebra de linha \\\\" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "Inserir comando" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "Liga/Desliga a substituição de entrada" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "Substituir caracteres especiais" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "Executar o diálogo Inserir Ambiente" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "Inserir \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "Formatar seleção em negrito" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "Formatar seleção em itálico" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "Formatar seleção em fonte máquina de escrever" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "Formatar seleção centralizado" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "Formatar seleção alinhado à esquerda" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "Formatar seleção alinhada à direita" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "Inserir lista de descrição" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "Inserir lista itemize" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "Inserir lista enumerate" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "Definir seleção um nível acima" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "Definir seleção um nível para baixo" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "Inserir \\usepackage{}" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 #, fuzzy msgid "Insert BibTeX reference dialog" msgstr "Inserir Referẽncia" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2246,7 +2272,7 @@ "\n" "Por favor, informe todos os erros ou pedidos de recursos a um dos autores." -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" @@ -2255,118 +2281,118 @@ "inválido. Assumido valor padrão. Por favor, verifique o seu arquivo de " "configuração" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "página \\pageref{{{reference}}}" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "\\ref{{{reference}}}, página \\pageref{{{reference}}}" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "LaTeX-_Wizard" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "Inicia um Assistente para criar facilmente documentos LaTeX" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "I_nserir Caracter Especial" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "Ajuda a usar algumas letras e símbolos não muito comuns" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "Inserir _Referência" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "Inserindo referências no documento" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "Inserir Rótu_lo" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "Ajuda a inserir rótulos em um documento" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "Inserir Ambi_ente" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "Ajuda a inserir um ambiente no documento" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "Inserir P_acote" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" "Um pequeno diálogo para inserir \\usepackage{} no cabeçalho do arquivo atual" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Formatar" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "Tamanh_o da fonte" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "_Substituir Caracteres Especiais" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "Substitui_r Caracteres Especiais em Volume" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "Substitui_r os caracteres especiais selecionados com substitutos TeX" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "Alternar _Substituição de Caracteres Especiais" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "Inserir _Comando" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "Inserindo comandos personalizados no documento" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 #, fuzzy msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 #, fuzzy msgid "Insert B_ibTeX reference" msgstr "Inserir _Referência" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 #, fuzzy msgid "_BibTeX entries" msgstr "_BibTeX" @@ -2525,16 +2551,16 @@ msgid "Creating dummy text with Geany" msgstr "Criação de texto modelo com o Geany" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Lipsum-Generator" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Informe o tamanho do texto Lipsum" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2672,19 +2698,19 @@ msgid "Browse..." msgstr "Navegar..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Selecionar Cor" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Escolher..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Selecionar Fonte" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Selecionar..." @@ -2715,7 +2741,7 @@ "Erro no módulo \"%s\" na função %s():\n" "argumentos insuficientes para o comando \"%s\".\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2755,7 +2781,7 @@ msgid "Save file" msgstr "Salvar arquivo" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2764,7 +2790,7 @@ "Erro no módulo \"%s\" na função pickfile():\n" "falhou ao reconhecer string de filtro no argumento #3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2810,7 +2836,7 @@ "O plugin %s falhou em carregar apropriadamente.\n" "Por favor, verifique a sua instalação." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, fuzzy, c-format msgid "" "%s %s: %s\n" @@ -2819,7 +2845,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2008 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2828,7 +2854,7 @@ "Erro no módulo \"%s\" na função %s():\n" "widget \"%s\" não encontrado para o argumento #1.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3206,6 +3232,21 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "Pesquisar símbolos:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "Pesquisar símbolos:" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Seleciona até a linha" + #: ../geanymacro/src/geanymacro.c:181 #, fuzzy msgid "Macros" @@ -3411,12 +3452,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 #, fuzzy msgid "_Cancel" msgstr "Codificação" @@ -3437,7 +3478,7 @@ msgid "Search for contents of clipboard" msgstr "Copiar caminho completo" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 #, fuzzy msgid "Search for:" msgstr "Pesquisar símbolos:" @@ -3477,61 +3518,61 @@ msgid "Text:" msgstr "Contexto:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, fuzzy, c-format msgid "Edit: %s" msgstr "Editar ponto de observação" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "Excluir" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 #, fuzzy msgid "Edit Macros" msgstr "Editar ponto de observação" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 #, fuzzy msgid "Key Trigger" msgstr "Gatilho de acesso:" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3550,6 +3591,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3558,115 +3626,114 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 #, fuzzy msgid "Display a information about the mini-script plugin" msgstr "Exibir informações adicionais sobre o item selecionado." -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "Selecionar Fonte" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "Enviar docu_mento" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "Novo Projeto" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 #, fuzzy msgid "script configuration" msgstr "Falha ao carregar configuração: %s" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 #, fuzzy msgid "Mini Script" msgstr "Script Lua" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3674,55 +3741,55 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 #, fuzzy msgid "_Ignore" msgstr "Ignorar Tudo" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Formatar seleção alinhado à esquerda" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Formatar seleção alinhado à esquerda" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3738,7 +3805,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3822,36 +3889,36 @@ msgstr "Selecionar arquivo" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3861,8 +3928,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "desconhecido" @@ -4024,7 +4091,7 @@ msgstr "Abrir arquivo" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Projeto" @@ -4053,7 +4120,7 @@ msgid "C_reate" msgstr "C_riar" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nome:" @@ -4132,7 +4199,7 @@ msgid "Remove File" msgstr "Remover arquivo" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Ocultar S_idebar" @@ -4141,6 +4208,50 @@ msgid "Project \"%s\" opened." msgstr "Projeto \"%s\" aberto." +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyGDB" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Falha ao salvar configuração: %s" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "diretório temporário tty não encontrado!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Falha ao salvar configuração: %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4162,13 +4273,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "Insira o endereço de e-mail do destinatário:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "Placeholder de nome de arquivo não encontrado. O comando executado deve ter " "falhado." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4176,34 +4287,34 @@ "Posicionador do endereço de destinatário não encontrado. O comando executado " "pode ter falhado." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Não foi possível executar o programa de correio. Por favor, verifique sua " "configuração." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Por favor, primeiro defina um cliente de e-mail." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "O arquivo precisa ser salvo antes de ser enviado." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Correio" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Enviar por correio" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Caminho e opções para o cliente de e-mail:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 #, fuzzy msgid "" "Note: \n" @@ -4222,31 +4333,31 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"Sending '\\%b'\" -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 #, fuzzy msgid "Show toolbar icon" msgstr "Exibir dicas de ferramentas." -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Exibe um ícone na barra de ferramentas para facilitar envio de arquivo." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 #, fuzzy msgid "Use dialog for entering email address of recipients" msgstr "Usar diálogo para inserir o endereço de e-mail dos destinatários" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Enviar arquivo por e-mail" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Enviar docu_mento" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4266,78 +4377,97 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc: s_spawn_sync error: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: Incapaz de renomear '%s' para '%s'" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Nenhuma alteração foi feita." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 #, fuzzy msgid "No history available" msgstr "Histórico não disponível" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Você deseja mesmo reverter: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Você deseja mesmo incluir: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Você deseja mesmo remover: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Você deseja mesmo atualizar?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Submeter S/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Estado" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Caminho" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Submeter" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "_De-/selecionar todos os arquivos" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Mensagem de submeter:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 #, fuzzy msgid "C_ommit" msgstr "Submeter" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Nada para submeter." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Erro ao inicializar verificação ortográfica automática: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4346,11 +4476,11 @@ "Erro ao definir linguagem para verificação ortográfica. Por favor, verifique " "a configuração. Mensagem de erro: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "Definir a flag Alterado para abas de documentos criados pelo plugin" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4360,255 +4490,255 @@ "CV será marcada como alterada. Mesmo que essa opção seja útil algumas vezes, " "pode causar diálogos de mensagens \"Você quer salvar\" irritantes." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Confirmar inclusão de novos arquivos em um SCV" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Exibe um diálogo de confirmação ao incluir um novo (criado) arquivo ao SCV." -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Maximizar diálogo de submeter" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Exibe o diálogo de submeter maximizado. " -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Usar vizualizador de diff externo" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Usar vizualizador externo de diff para diff de arquivos." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Exibir entradas VC no menu do editor" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "Exibir entradas para funções VC dentro do menu do editor" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Habilitar CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Habilitar GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Habilitar SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Habilitar SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Habilitar Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Habilitar Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Linguagem para verificação ortográfica" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "Ações de arquivo _VC" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diff" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Faz um diff do arquivo atualmente ativo" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Reverter" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "Restaura cópia funcional antiga do arquivo (desfaz edições locais)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Culpar" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Exibe as alterações feitas em um arquivo por revisão e autor." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Histórico (log)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Exibe o log do arquivo atual" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Original" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 #, fuzzy msgid "Shows the original of the current file" msgstr "Exibe o original do arquivo atual" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "_Incluir no Controle de Versões" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Inclui arquivo no repositório." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "_Remover do Controle de Versões" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Remove arquivo do repositório." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Directório" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Cria um diff do diretório do arquivo atualmente ativo" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "Restaura arquivos originais na pasta atual (desfaz edições locais)." -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Exibe o log do diretório atual" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Diretório _Base" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "Cria um diff do diretório topo do CV" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Reverter quaisquer edições locais." -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Exibe o log do diretório topo do CV" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "VC _Commit" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Exibir diff de arquivo" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Exibir diff de diretório" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Exibir diff do diretório base" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Submeter alterações" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Exibir estado" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Reverter arquivo único" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Reverter diretório" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Reverter diretório base" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Atualizar arquivo" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "C_V" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 #, fuzzy msgid "_Version Control" msgstr "_Incluir no Controle de Versões" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "E_stado" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Exibe estado." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Atualizar do repositório remoto." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "_Submeter" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Submete alterações." @@ -4758,104 +4888,260 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 #, fuzzy msgid "Find File" msgstr "Incluir Arquivo" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 #, fuzzy msgid "Search inside:" msgstr "Pesquisar símbolos:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 #, fuzzy msgid "Reload all" msgstr "Expandir tudo" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Expandir tudo" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Colapsar tudo" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 #, fuzzy msgid "Expand All" msgstr "Expandir tudo" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 #, fuzzy msgid "Find in Files" msgstr "Pesquisa em Projeto" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Edition" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 #, fuzzy msgid "Sidebar" msgstr "Ocultar S_idebar" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 #, fuzzy msgid "Message Window" msgstr "_Ocultar Janela de Mensagens" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "Seleciona até a linha" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "Retornar para o diálogo anterior." + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "Pula para a próxima linha." + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "tipo de documentação" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "Falha ao carregar configuração: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" +"Falha ao encontrar arquivo de configuração para o tipo de arquivo \"%s\": %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "Falha ao salvar configuração: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"O plugin %s falhou em carregar apropriadamente.\n" +"Por favor, verifique a sua instalação." + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -5217,283 +5503,355 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "/Ambientes" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "Executar no terminal" +msgid "_Inspect Variable" +msgstr "/Ambientes" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" msgstr "_Empilhar" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 #, fuzzy msgid "Watches" msgstr "Pontos de observação" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -#, fuzzy -msgid "Debug Console" -msgstr "Console:" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" msgstr "Inserir comando" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "Formatar seleção alinhado à esquerda" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 #, fuzzy msgid "_Frame" msgstr "Info do Quadro" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 #, fuzzy msgid "Setup Program" msgstr "nenhum programa" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "Ambiente:" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 #, fuzzy msgid "_Load script:" msgstr "Scripts _Lua" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 #, fuzzy msgid "Program" msgstr "nenhum programa" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" msgstr "Abrir URI" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 #, fuzzy msgid "g_db load" msgstr "_Descarregar" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" msgstr "Atualizar Lista de Tarefas" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 #, fuzzy msgid "_member" msgstr "Number" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "Inclinado" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 #, fuzzy msgid "_argument" msgstr "Enviar docu_mento" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "Renomear" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 #, fuzzy msgid "E_xpand on apply" msgstr "Expandir tudo" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "Exibir dicas de ferramentas." -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "_Opções" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" msgstr "Report" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 #, fuzzy msgid "Enter assignment expression:" msgstr "expressão regular inválida: %s" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "Info do Objeto" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 #, fuzzy msgid "Frame:" msgstr "Nome:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 #, fuzzy msgid "Expand" msgstr "Expandir tudo" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "_Início:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 #, fuzzy msgid "_Expand on apply" msgstr "Expandir tudo" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "Executar no terminal" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Pontos de quebra" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Editar ponto de quebra" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "Editar ponto de observação" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "Editar ponto de observação" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "_Descarregar" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Executar até o local" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "Incluir ponto de quebra" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 #, fuzzy msgid "Add Watchpoint" msgstr "Incluir ponto de observação" @@ -5507,7 +5865,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "Fechar: %s" @@ -5527,65 +5886,66 @@ msgid "Program terminated." msgstr "terminado" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 #, fuzzy msgid "..." msgstr "Mais..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 #, fuzzy msgid "invalid data" msgstr "Rótulo inválido" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 #, fuzzy msgid "out of scope" msgstr "Ponto de observação #%s fora de escopo" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 #, fuzzy msgid "Watch expression" msgstr "expressão regular inválida: %s" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "Variáveis locais" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5599,37 +5959,27 @@ msgid "Select File" msgstr "Selecionar arquivo" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Pontos de quebra" - -#: ../scope/src/prefs.c:339 -#, fuzzy -msgid "Console" -msgstr "Console:" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." msgstr "Forçar recarga dos arquivos de configuração" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, fuzzy, c-format msgid "Could not load debug settings file %s: %s." msgstr "Falha ao carregar tipo de arquivo \"%s\" do arquivo \"%s\": %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5637,15 +5987,15 @@ "Continue?" msgstr "Contando..." -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5655,169 +6005,184 @@ msgstr "Depurar" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 #, fuzzy msgid "Setup program" msgstr "nenhum programa" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "Contando..." -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "Executar até o local" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "terminado" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "ponto de quebra" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 #, fuzzy msgid "GDB command" msgstr "Inserir comando" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "Executar no terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 #, fuzzy msgid "Load" msgstr "C_arregar" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "Pontos de quebra" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Console" +msgstr "Console:" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Debug Console" +msgstr "Console:" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Send Signal" msgstr "Enviar por correio" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 #, fuzzy msgid "Running" msgstr "executando" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "parado" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "%s:%u:%u: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Comando 0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Tentar:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Verificando" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Verificando arquivo \"%s\" (linhas %d para %d usando %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "Verificando arquivo \"%s\" (usando %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "O texto verificado está escrito corretamente." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "A biblioteca Enchant não pôde ser inicializada (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "erro desconhecido (talvez a linguagem escolhida não esteja disponível)" @@ -5912,17 +6277,17 @@ msgid "Ignore All" msgstr "Ignorar Tudo" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Padrão (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "Alternar verificação ortográfica ao digitar (linguagem atual: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Sugestões de Ortografia" @@ -5953,158 +6318,164 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 #, fuzzy msgid "Convert selection to table" msgstr "Formatar seleção alinhado à esquerda" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 #, fuzzy msgid "TreeBrowser" msgstr "Navegador em Árvore" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, fuzzy, c-format msgid "%s: no such directory." msgstr "%s: arquivo ou diretório não existente" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 #, fuzzy msgid "(Empty)" msgstr "Vazio" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Não pode executar o comando externo configurado '%s' (%s)." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "NovoDiretório" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "NovoArquivo" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Você quer mesmo excluir %s?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Ir para cima" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Definir caminho para o documento" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" msgstr "Abrir externamente" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Abrir Terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Definir como raiz" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Atualizar" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "Pesquisa em Projeto" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Criar novo diretório" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Criar novo arquivo" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Renomear" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Excluir" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Fechar: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, fuzzy, c-format msgid "Close Child Documents " msgstr "Fec_har Outros Documentos" -#: ../treebrowser/src/treebrowser.c:1273 +#: ../treebrowser/src/treebrowser.c:1272 #, fuzzy -msgid "Copy full path to clipboard" +msgid "_Copy full path to clipboard" msgstr "Copiar caminho completo" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Exibir marcadores" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Exibir arquivos ocultos" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 #, fuzzy msgid "Show toolbars" msgstr "Exibir barras" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Home" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "Rastrear caminho" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Ocultar barras" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -6112,19 +6483,19 @@ "Filtrar (*.c;*.h;*.cpp), e se você quiser filtrar temporariamente usando o " "'!' inverso, tente por exemplo isso '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Barra de endereços por exemplo '/projetos/meu-projeto'" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "Navegador em Árvore" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Comando de abrir externo" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6139,55 +6510,55 @@ "%d será substituído pelo nome do caminho do arquivo selecionado sem o nome " "do arquivo" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 #, fuzzy msgid "If position is changed, the option require plugin restart." msgstr "Exibir barras no topo (Exige que o plugin seja reiniciado)" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 #, fuzzy msgid "Show icons" msgstr "Exibir ícones." -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 #, fuzzy msgid "Base" msgstr "_Base:" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 #, fuzzy msgid "Content-type" msgstr "Conteúdos" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "No Windows, isso apenas oculta arquivos prefixados com '.' (ponto)" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Ocultar arquivos de objeto" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6195,50 +6566,59 @@ "Não exibir arquivos de objetos gerados no navegador de arquivos. Isso inclui " "*.o, *.obj. *.so, *.dll, *.a, *.lib" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Reverter filtro" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Seguir documento atual" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Clique simples, abrir documento e focá-lo" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Duplo clique abre diretório" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Ao excluir arquivo, fechá-lo se ele estiver aberto" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Exibir linhas da árvore" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "Abrir arquivo" + +#: ../treebrowser/src/treebrowser.c:2113 #, fuzzy msgid "Focus File List" msgstr "Focar Lista de Tarefas" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 #, fuzzy msgid "Rename Object" msgstr "Renomear" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 #, fuzzy msgid "Create New File" msgstr "Criar novo arquivo" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 #, fuzzy msgid "Create New Directory" msgstr "Criar novo diretório" @@ -6309,46 +6689,46 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 #, fuzzy msgid "Flip panes orientation" msgstr "Orientação do Papel:" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 #, fuzzy msgid "Cancel loading" msgstr "Codificação" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" @@ -6559,9 +6939,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "diretório temporário tty não especificado!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "diretório temporário tty não encontrado!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "programa auxiliar tty não especificado!\n" @@ -6628,21 +7005,12 @@ #~ msgid "No %s selected" #~ msgstr "Nenhum %s selecionado" -#~ msgid "watchpoint" -#~ msgstr "ponto de observação" - #~ msgid "Delete selected watchpoint?" #~ msgstr "Excluir ponto de observação selecionado?" #~ msgid "Delete selected breakpoint?" #~ msgstr "Excluir ponto de quebra selecionado?" -#~ msgid "Edit watchpoint" -#~ msgstr "Editar ponto de observação" - -#~ msgid "Edit breakpoint" -#~ msgstr "Editar ponto de quebra" - #~ msgid "Enabled" #~ msgstr "Habilitado" @@ -6848,10 +7216,6 @@ #~ msgid "Couldn't create tempfile" #~ msgstr "Criar novo arquivo" -#, fuzzy -#~ msgid "GeanyPG" -#~ msgstr "GeanyGDB" - #~ msgid "Lionel Fuentes" #~ msgstr "Lionel Fuentes" diff -Nru geany-plugins-1.24.0+20140222+git/po/pt.po geany-plugins-1.24.1+dfsg/po/pt.po --- geany-plugins-1.24.0+20140222+git/po/pt.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/pt.po 2014-04-12 14:28:39.000000000 +0000 @@ -5,9 +5,9 @@ # André Glória, 2009 - 2011 msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2011-10-20 21:38+0100\n" "Last-Translator: André Glória \n" "Language-Team: Portuguese\n" @@ -35,12 +35,12 @@ msgid "Contents" msgstr "Conteúdo" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Favoritos" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "Act_ualizar" @@ -77,15 +77,15 @@ msgid "Context:" msgstr "Contexto:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "Etiquetas XML" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Nome da etiqueta a ser inserida:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -158,11 +158,12 @@ msgid "Run XML tagging" msgstr "Auto-Completar etiquetas (tags) XML" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "A directoria de configuração do plugin não pode ser criada." @@ -256,6 +257,15 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +#, fuzzy +msgid "Auto-close" +msgstr "Autos" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Navegar pelo Código" @@ -326,8 +336,8 @@ msgid "Various debuggers integration." msgstr "Integração de vários debuggers" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Depuração (debug)" @@ -462,7 +472,7 @@ msgid "Target" msgstr "Alvo" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Pontos de Paragem" @@ -499,22 +509,22 @@ msgstr "Reiniciar" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "Avançar para dentro" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "Avançar sobre" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "Avançar para fora" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "Executar até ao cursor" @@ -523,7 +533,8 @@ msgstr "Adiciona / Retira ponto de paragem" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +#, fuzzy +msgid "Jump to the current instruction" msgstr "Saltar para a instrução atual" #: ../debugger/src/watch_model.c:220 @@ -554,6 +565,14 @@ msgid "Save debug session data to a project" msgstr "Guardar dados da sessão de depuração num projecto" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -666,7 +685,7 @@ msgstr "Livro" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "Livro" @@ -797,12 +816,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Ficheiro" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 #, fuzzy msgid "_Edit" msgstr "Editor" @@ -999,55 +1018,64 @@ msgstr "" "Modo coluna, seleccionar até à linha / chaveta / âncora correspondente." -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Selecções E_xtra" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "Modo de _Coluna" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Modo de Coluna" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Seleccionar até à _linha" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Seleccionar até à linha" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Seleccionar até à Chaveta _Correspondente" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Seleccionar até à chaveta correspondente" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "Converter o selecionado numa tabela" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "_Definir âncora" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "Define âncora" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "Seleccionar até à â_ncora" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "Seleccionar até à âncora" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "_Rectângulo de selecção para ancoragem" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "Rectângulo de selecção para ancoragem" @@ -1465,76 +1493,76 @@ "Tipo de documentação, por omissão, para todas as línguas que não tenham um " "definido" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Inserir Números" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Inserir/Preencher colunas com números." -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "A contar..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "A preparar..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "A inserir..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Para base 11 e acima" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "_Iniciar:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Passo:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Base:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Letras:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "S_uperior" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "Inf_erior" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "_Prefixo da base" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "0 para octal, 0x para hexadecimal, + para decimal positivo" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Enchimento:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Esp_aço" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "_Zero" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Inserir _Números" @@ -1970,20 +1998,20 @@ msgid "BibTeX reference name:" msgstr "Nome da referência BibTeX:" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "Caro Senhor ou Senhora" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "Melhores Cumprimentos" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "Nenhum modelo atribuído. A abortar" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "Assistente-LaTeX" @@ -1991,67 +2019,67 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Modelo:" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "Definir o modelo que deve ser usado na criação de um novo documento" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 msgid "Default" msgstr "Por Defeito" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "Tipo de Documento:" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "Escolha o tipo de documento que pretende escrever" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "Artigo" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "Relatório" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "Carta" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "Apresentação" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "Codificação: " -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "Defina a codificação para o novo documento" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 msgid "Font size" msgstr "Tamanho de Letra" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "Defina o tamanho de letra, por omissão, para o novo documento" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "Autor:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" @@ -2060,11 +2088,11 @@ "nome" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "Data:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" "document. Keeping it at \\today is a good decision if you don't need any " @@ -2075,37 +2103,37 @@ "necessite de uma data fixa." #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "Título:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "Defina o título do seu novo documento." #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "Tamanho do Papel:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "Escolha o formato do papel para o seu novo documento" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 msgid "Paper Orientation:" msgstr "Orientação do Papel:" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 msgid "Choose the paper orientation for the newly created document" msgstr "Escolha orientação do papel para o seu novo documento" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "Usar as classes do script KOMA, se possível " -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" "Keep in mind: To compile your document these classes have to be installed " @@ -2115,11 +2143,11 @@ "Note: Para compilar o documento, estas classes têm de estar previamente " "instaladas." -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "Usar modo de rascunho" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" @@ -2127,95 +2155,95 @@ "Activa o modo de rascunho em novos documentos para obter maior verbosidade " "na depuração de erros" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "Executa o Assistente de LaTeX" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "Inserir \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "Inserir \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "Inserir quebra de linha \\\\" -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 msgid "Insert command" msgstr "Inserir comando" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "Activa/Desactiva a substituição de caracteres, ao serem introduzidos" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "Substitui caracteres especiais" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "Executa o menu de inserção de ambientes" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "Inserir \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "Formata a selecção como negrito" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "Formata a selecção como itálico" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "Formata a selecção para tipo de letra romana" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "Formata a selecção centrando-a" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "Formata a selecção alinhando-a à esquerda" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 msgid "Format selection right-aligned" msgstr "Formata a selecção alinhando-a à direita" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "Inserir lista de descrição" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 msgid "Insert itemize list" msgstr "Inserir lista de itens " -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 msgid "Insert enumerate list" msgstr "Inserir lista de enumeração" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "Definir selecção um nível acima" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 msgid "Set selection one level down" msgstr "Definir selecção um nível abaixo" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 msgid "Insert \\usepackage{}" msgstr "Inserir \\usepackage{}" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 msgid "Insert BibTeX reference dialog" msgstr "Inserir janela de referências BibTeX" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2226,7 +2254,7 @@ "Por favor, reporte todas as falhas ou pedidos de funcionalidades a um dos " "autores." -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" @@ -2235,118 +2263,118 @@ "inválido. A usar o valor padrão. Por favor verifique o seu ficheiro de " "configurações" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "página \\pageref{{{referência}}}" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "\\ref{{{referência}}}, pagina \\pageref{{{referência}}}" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "Assis_tente-LaTeX" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "Inicia um assistente, para facilmente, criar um novo documento " -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 msgid "I_nsert Special Character" msgstr "I_nserir Carácter Especial" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "Ajuda a usar algumas letras e sinais pouco usuais " -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "Inserir _Referência" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "Insere referências no documento" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "Inserir _Etiqueta" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "Ajuda a Inserir etiquetas no documento" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "Inserir _Ambiente" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "Ajuda a inserir um ambiente no documento" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 msgid "Insert P_ackage" msgstr "Inserir P_acote" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" "Um pequeno diálogo para inserir \\usepackage{} no cabeçalho do ficheiro " "activo" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "_Formatar" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 msgid "F_ont size" msgstr "Tamanh_o de letra" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "_Substituição de Caracteres Especiais" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "Substituição de Caracteres Especiais em _Massa" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 msgid "_Replace selected special characters with TeX substitutes" msgstr "Substitui os caracteres especiais seleccionados por _expressões do TeX" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "Activa/Desactiva a _Substituição de Caracteres Especiais" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 msgid "Insert _Command" msgstr "Inserir _Comando" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 msgid "Inserting costumized command to document" msgstr "Insere um comando personalizado no documento" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 #, fuzzy msgid "_BibTeX" msgstr "Entradas _BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 msgid "Insert B_ibTeX reference" msgstr "Inserir referência B_ibTeX" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "Auxilia a inserção de referências a partir de ficheiros BibTeX" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 msgid "_BibTeX entries" msgstr "Entradas _BibTeX" @@ -2502,16 +2530,16 @@ msgid "Creating dummy text with Geany" msgstr "Criar texto fictício com o Geany." -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Gerador de Lipsum" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Introduza a dimensão do texto Lipsum aqui" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2649,19 +2677,19 @@ msgid "Browse..." msgstr "Explorar..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Seleccionar Cor" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Escolher..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Seleccionar Tipo de Letra" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Seleccionar..." @@ -2692,7 +2720,7 @@ "Erro no módulo \"%s\" na função %s():\n" "faltam argumentos para o comando \"%s\".\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2732,7 +2760,7 @@ msgid "Save file" msgstr "Guardar ficheiro" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2741,7 +2769,7 @@ "Erro no módulo \"%s\" na função pickfile():\n" "incapaz de filtrar a cadeia de caracteres no argumento #3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2787,7 +2815,7 @@ "O plugin %s não carregou correctamente.\n" "Por favor verifique a sua instalação." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" @@ -2796,7 +2824,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2010" -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2805,7 +2833,7 @@ "Erro no módulo \"%s\" na função %s():\n" "widget \"%s\" não encontrado para argumento #1.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3185,6 +3213,21 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "Procurar por:" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "Procurar por:" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Seleccionar até à linha" + #: ../geanymacro/src/geanymacro.c:181 #, fuzzy msgid "Macros" @@ -3395,13 +3438,13 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 #, fuzzy msgid "_Ok" msgstr "_Ok" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 #, fuzzy msgid "_Cancel" msgstr "Cancelar" @@ -3422,7 +3465,7 @@ msgid "Search for contents of clipboard" msgstr "Copiar directório absoluto para a área de transferência" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Procurar por:" @@ -3461,59 +3504,59 @@ msgid "Text:" msgstr "Contexto:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, fuzzy, c-format msgid "Edit: %s" msgstr "Editar Macros" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "Apagar" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "Editar Macros" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "Nome da Macro" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "Combinação de teclas" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 #, fuzzy msgid "_Re-Record" msgstr "Regravar" @@ -3533,6 +3576,33 @@ msgid "_Edit Macros" msgstr "_Editar Macros" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3541,115 +3611,114 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 #, fuzzy msgid "Display a information about the mini-script plugin" msgstr "Apresentar informação adicional sobre o item seleccionado." -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "Seleccionar Tipo de Letra" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "E_mail o documento" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "Novo Projecto" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 #, fuzzy msgid "script configuration" msgstr "Incapaz de ler configuração: %s" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 #, fuzzy msgid "Mini Script" msgstr "Script Lua" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "Favoritos Numerados para o Geany" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "_Ok" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3660,54 +3729,54 @@ "posição podem estar incorretos e não serão carregados.\n" "Clique Ignorar para os carregar na mesma." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" msgstr "_Ignorar" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "lembrar o estado da agregação" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "Centrar vista ao ir para um favorito" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "Converter o selecionado numa tabela" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "Converter o selecionado numa tabela" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "Ajuda dos Favoritos Numerados" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3723,7 +3792,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3804,36 +3873,36 @@ msgstr "Selecionar assinante" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "Incapaz de usar o comando pinentry." -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "O comando pinentry retornou um resultado inesperado." #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "Introduzir Frase-Senha" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Frase-Senha" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "Introduzir Frase-Senha para" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "o comando pinentry deu erro" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "O comando pinentry deu um erro inesperado." -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3845,8 +3914,8 @@ msgid "a key with fingerprint" msgstr "uma chave com fingerprint" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "desconhecido" @@ -4013,7 +4082,7 @@ msgstr "Abrir ficheiro de assinatura" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Projecto" @@ -4043,7 +4112,7 @@ msgid "C_reate" msgstr "C_riar" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Nome:" @@ -4121,7 +4190,7 @@ msgid "Remove File" msgstr "Remover Ficheiro" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Esconder Barra _Lateral" @@ -4130,6 +4199,50 @@ msgid "Project \"%s\" opened." msgstr "Projecto \"%s\" aberto." +#: ../geanypy/src/geanypy-plugin.c:34 +#, fuzzy +msgid "GeanyPy" +msgstr "GeanyVC" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, fuzzy, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Incapaz de criar o directório de configuração em '%s'" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "directório temporário do tty não encontrado!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Incapaz de criar o directório de configuração em '%s'" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanyEnviaEmail" @@ -4150,13 +4263,13 @@ msgid "Enter the recipient's e-mail address:" msgstr "Introduza o endereço de email de destino:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "O espaço reservado para o nome do ficheiro não encontrado. O comando " "executado pode ter falhado." -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4164,34 +4277,34 @@ "O espaço reservado para o endereço de email de destino não encontrado. O " "comando executado pode ter falhado." -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Incapaz de executar a aplicação de Email. Por favor, verifique a " "configuração." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Defina uma aplicação de Email primeiro, se faz favor." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "O ficheiro tem de ser guardado antes de ser enviado." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Mail" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Enviar por email" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Directório e opções para a aplicação de email:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 #, fuzzy msgid "" "Note: \n" @@ -4210,29 +4323,29 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"Sending '\\%b'\" -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Mostrar ícone da barra de ferramentas" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Mostra um ícone na barra de ferramentas para facilitar o envio de ficheiros." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "Usar a janela para introduzir os endereços de email de destino" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Enviar ficheiro por email" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "E_mail o documento" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4252,76 +4365,95 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc: erro s_spawn_sync: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: Incapaz de renomear '%s' to '%s'" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Não foram efectuadas quaisquer alterações." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "Nenhum histórico disponível" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Tem a certeza de que pretende reverter: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Tem a certeza de que pretende adicionar: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Tem a certeza de que pretende remover: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Tem a certeza de que pretende actualizar?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Submeter Y/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Estado" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Directório" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Submeter" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "_Des-/seleccionar todos os ficheiros" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Mensagem de submissão:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "_Submeter" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Nada para submeter." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Falha ao inicializar a correcção ortográfica: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4330,13 +4462,13 @@ "Falha ao definir a linguagem para a correcção ortográfica. Por favor " "verifique a configuração. A mensagem de erro obtida foi: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" "Habilitar a indicação de Modificado nas abas dos documentos criados pelo " "plugin" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4347,260 +4479,260 @@ "alguns casos pode gerar um elevado número de, irritantes, janelas \"Tem a " "certeza de que quer guardar\" " -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Confirmar o adicionar de novos ficheiros a um SCV" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Mostra uma janela de confirmação sempre que adicionar um novo (criado) " "ficheiro ao SCV." -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Maximizar janela de submissão" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Mostra a janela de submissão maximizada." -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Usar aplicação de diferenças externa" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "" "Usar uma aplicação de diferenças externa para a função de diferenças (diff)." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Mostrar elementos do VC no menu do editor" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "Mostra elementos das funções do VC dentro do menu do editor" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "Habilitar CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "Habilitar GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "Habilitar SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "Habilitar SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Habilitar Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Habilitar Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Língua para correcção ortográfica" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "_VC Acções sobre ficheiros" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diferenças" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Inicia uma comparação de diferenças no ficheiro activo" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Reverter" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" "Restaurar a antiga cópia funcional do ficheiro (descarta alterações locais)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Culpar" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Mostra as alterações realizadas a um ficheiro por revisão e autor." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Histórico (log)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Mostra o histórico do ficheiro activo" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Original" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "Mostra o original do ficheiro ativo" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "_Adicionar ao Controlo de Versões" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Adiciona o ficheiro ao repositório." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "_Remover do Controlo de Versões" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Remove o ficheiro do repositório." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Directório" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Inicia uma comparação de diferenças no directório do ficheiro activo" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" "Restaura os ficheiros originais no directório actual (descarta alterações " "locais)." -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Mostra o histórico (log) do directório actual" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "Directório _Base" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" "Inicia uma comparação de diferenças a partir do primeiro directório do VC" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Restaura quaisquer alterações locais." -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Mostra o histórico (log) do primeiro directório do VC" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "VC _Submeter" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Mostrar diferenças do ficheiro" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Mostrar diferenças do directório" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Mostrar diferenças do directório base" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Submeter alterações" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Mostrar estado" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Restaurar ficheiro único" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Restaurar directório" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Restaurar directório base" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Actualizar ficheiro" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "_VC" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 #, fuzzy msgid "_Version Control" msgstr "_Adicionar ao Controlo de Versões" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "E_stado" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Mostra o estado." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Actualizar a partir de repositório remoto." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "_Submeter" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Submeter alterações." @@ -4756,99 +4888,256 @@ "Nota: defina padrões para ficheiros pertencentes ao projeto através do menu " "Projeto." -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Procurar Ficheiro" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Procurar dentro:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Distinguir m_aiúsculas/minúsculas" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "Procurar em directório absoluto" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Reler todos" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "Expandir Tudo" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 msgid "Collapse all" msgstr "Compactar Tudo" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "Seguir o editor ativo" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Expandir Tudo" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Procurar em Ficheiros" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Condição" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 #, fuzzy msgid "Sidebar" msgstr "barra lateral" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 #, fuzzy msgid "Message Window" msgstr "_Ocultar Janela de Mensagens" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "Seleccionar até à linha" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "Retorna à janela anterior." + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "Avançar até à próxima linha." + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "Comutar a aba de documentação" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "Incapaz de ler configuração: %s" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "" +"Falha ao encontrar o ficheiro de configuração para o tipo de ficheiro \"%s" +"\": %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "Incapaz de guardar configuração: %s" + +#: ../pohelper/src/gph-plugin.c:1182 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"O plugin %s não carregou correctamente.\n" +"Por favor verifique a sua instalação." + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "ImpressãoBonita XML" @@ -5212,286 +5501,358 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "Variáveis de Ambiente" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "Consola de Depuração (debug)" +msgid "_Inspect Variable" +msgstr "Variáveis de Ambiente" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" msgstr "Analisar a Pilha" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 #, fuzzy msgid "Watches" msgstr "Observação" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -#, fuzzy -msgid "Debug Console" -msgstr "Consola:" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" msgstr "Inserir comando" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "_Converter numa tabela" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 #, fuzzy msgid "_Frame" msgstr "Informação da Moldura" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 #, fuzzy msgid "Setup Program" msgstr "nenhum executável" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 #, fuzzy msgid "_Arguments:" msgstr "Alinhamento" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "Ambiente:" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 #, fuzzy msgid "_Load script:" msgstr "Scripts _Lua " -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 #, fuzzy msgid "Program" msgstr "nenhum executável" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" msgstr "Abrir URI" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 #, fuzzy msgid "g_db load" msgstr "_Descartar" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" msgstr "Actualizar Lista de Tarefas" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 #, fuzzy msgid "Display" msgstr "barra lateral" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 #, fuzzy msgid "_member" msgstr "Número" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "má" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 #, fuzzy msgid "_argument" msgstr "E_mail o documento" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "Renomear" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 #, fuzzy msgid "E_xpand on apply" msgstr "Expandir Tudo" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "Mostrar dicas." -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "_Opções" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" msgstr "Relatório" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 #, fuzzy msgid "Enter assignment expression:" msgstr "Falha ao avaliar expressão" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 #, fuzzy msgid "Inspect" msgstr "Inspector Web" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "Informação do Objecto" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 #, fuzzy msgid "Frame:" msgstr "Nome:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 #, fuzzy msgid "Expand" msgstr "Expandir Tudo" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "_Iniciar:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 #, fuzzy msgid "_Expand on apply" msgstr "Expandir Tudo" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "Consola de Depuração (debug)" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Pontos de Paragem" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Editar ponto de paragem" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "Editar ponto de observação" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "Editar ponto de observação" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "ponto de observação" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "_Descartar" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Executar até ao cursor" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "Adicionar ponto de paragem" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 #, fuzzy msgid "Add Watchpoint" msgstr "Adicionar ponto de observação" @@ -5505,7 +5866,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "Fechar: %s" @@ -5525,65 +5887,66 @@ msgid "Program terminated." msgstr "terminado" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, fuzzy, c-format msgid "%s." msgstr "%s:" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 #, fuzzy msgid "..." msgstr "Mais..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 #, fuzzy msgid "invalid data" msgstr "etiqueta inválida" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 #, fuzzy msgid "out of scope" msgstr "Ponto de observação #%s fora de alcance" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 #, fuzzy msgid "Watch expression" msgstr "Falha ao avaliar expressão" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "Eliminar variável?" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5597,37 +5960,27 @@ msgid "Select File" msgstr "Seleccionar Ficheiro" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Pontos de Paragem" - -#: ../scope/src/prefs.c:339 -#, fuzzy -msgid "Console" -msgstr "Consola:" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." msgstr "Forçar o reler dos ficheiros de configuração" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, fuzzy, c-format msgid "Could not load debug settings file %s: %s." msgstr "Falha ao carregar o ficheiro \"%s\": %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5635,15 +5988,15 @@ "Continue?" msgstr "Continuar" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5653,169 +6006,184 @@ msgstr "Depurador" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 #, fuzzy msgid "Setup program" msgstr "nenhum executável" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "Executar / Continuar" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "Executar até ao cursor" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "terminado" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "ponto de paragem" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 #, fuzzy msgid "GDB command" msgstr "Inserir comando" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "Executar no terminal" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 #, fuzzy msgid "Load" msgstr "_Carregar" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "Pontos de Paragem" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Console" +msgstr "Consola:" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Debug Console" +msgstr "Consola:" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Send Signal" msgstr "Enviar por email" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 #, fuzzy msgid "Running" msgstr "a executar" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "parado" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "%s:%u:%u: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "Comando 0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Tentar:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "A verificar" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "A verificar ficheiro \"%s\" (linhas %d até %d usando %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "A verificar \"%s\" (usando %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "O texto verificado não contém erros ortográficos." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "A biblioteca Enchant não pode ser inicializada (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "" "erro desconhecido (talvez a língua que escolheu não se encontre disponível)" @@ -5912,18 +6280,18 @@ msgid "Ignore All" msgstr "Ignorar Tudo" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Por Defeito (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "" "Activa\\Desactiva a correcção ortográfica enquanto tecla (língua actual: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Sugestões de Ortografia" @@ -5954,28 +6322,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "Algo correu mal ao analisar o selecinado. Terminando" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Converter o selecionado numa tabela" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "_Converter numa tabela" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "Converte a lista atualmente selecionada, numa tabela." -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "Navegador em Árvore" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5983,30 +6351,30 @@ "Este plugin adiciona um navegador em árvore ao Geany, permitindo a navegação " "em ficheiros, no directório actual, usando uma vista em árvore." -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: directório inexistente." -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Vazio)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Incapaz de executar o comando externo '%s' (%s). " -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 msgid "NewDirectory" msgstr "Novo Directório" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewFile" msgstr "Novo Ficheiro" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" @@ -6015,96 +6383,103 @@ "Ficheiro alvo '%s' existe\n" ", tem a certeza que o quer substituir por um ficheiro vazio?" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Tem a certeza que pretende apagar '%s'?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "Ir para cima" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 msgid "Set path from document" msgstr "Mudar para o directório do documento" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" msgstr "Abrir externamente" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 msgid "Open Terminal" msgstr "Abrir Terminal" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "Definir como base" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Refresh" msgstr "Actualizar" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "Procurar em Ficheiros" + +#: ../treebrowser/src/treebrowser.c:1241 msgid "Create new directory" msgstr "Criar um novo directório" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 msgid "Create new file" msgstr "Criar um novo ficheiro" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 msgid "Rename" msgstr "Renomear" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 msgid "Delete" msgstr "Apagar" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, c-format msgid "Close: %s" msgstr "Fechar: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, c-format msgid "Close Child Documents " msgstr "Fechar os Documentos Filhos" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +#, fuzzy +msgid "_Copy full path to clipboard" msgstr "Copiar directório absoluto para a área de transferência" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 msgid "Show bookmarks" msgstr "Mostar favoritos" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 msgid "Show hidden files" msgstr "Mostrar ficheiros ocultos" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 msgid "Show toolbars" msgstr "Mostrar barras de ferramentas" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Ficheiro alvo '%s' existe, tem a certeza que o quer substituir?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 msgid "Home" msgstr "Pasta Pessoal" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 msgid "Track path" msgstr "Acompanhar directório do ficheiro" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 msgid "Hide bars" msgstr "Ocultar barras" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -6112,19 +6487,19 @@ "Filtrar (*.c;*.h;*.cpp), e se pretender uma filtragem temporária use '!'. " "Tente por exemplo isto '!;*.c;*.h;*.cpp'" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "Barra de Endereço por exemplo '/projectos/meu-projecto'" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "Navegador de Ficheiros" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "Comando Externo para a função Abrir" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6140,51 +6515,51 @@ "%d será substituído pelo directório absoluto do ficheiro seleccionado, sem o " "nome deste" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "Barra de ferramentas" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "Ocultar" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "Topo" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "Fundo" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "Se a posição mudar, esta opção requer reinicialização do plugin." -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 msgid "Show icons" msgstr "Mostrar ícones" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "Nenhum" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 msgid "Base" msgstr "Base" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 msgid "Content-type" msgstr "Content-type" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "Em Windows, isto apenas oculta ficheiros precedidos de '.' (um ponto)" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 msgid "Hide object files" msgstr "Ocultar ficheiros objecto" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6192,48 +6567,57 @@ "Oculta, no navegador de ficheiros, ficheiros objecto gerados, inclui os " "ficheiros *.o, *.obj, *.so, *.dll, *.a, *.lib" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 msgid "Reverse filter" msgstr "Reverte o filtro" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "Seguir o documento activo" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "Um clique, abre documento e foca-o" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 msgid "Double click open directory" msgstr "Clique duplo abre directório" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "Ao apagar, fechá-lo caso esteja aberto" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 msgid "Show tree lines" msgstr "Mostrar as linhas da árvore" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "Abrir Ficheiro" + +#: ../treebrowser/src/treebrowser.c:2113 msgid "Focus File List" msgstr "Focar a Lista de Ficheiros" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "Focar a entrada de directório" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Rename Object" msgstr "Renomear Objecto" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 #, fuzzy msgid "Create New File" msgstr "Criar um novo ficheiro" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 #, fuzzy msgid "Create New Directory" msgstr "Criar um novo directório" @@ -6303,44 +6687,44 @@ msgid "utility" msgstr "utilidade" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Zoom" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "Ampliar o texto (vista total)" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "Virar a orientação dos painéis " -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Para trás" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "Para a frente" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Cancelar carregamento" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Reler página actual" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Inspector Web" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Comuta o inspector Web" @@ -6556,9 +6940,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "directório temporário do tty não especificado!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "directório temporário do tty não encontrado!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "assistente do tty não especificado!\n" @@ -6625,21 +7006,12 @@ #~ msgid "No %s selected" #~ msgstr "Nenhum %s seleccionado" -#~ msgid "watchpoint" -#~ msgstr "ponto de observação" - #~ msgid "Delete selected watchpoint?" #~ msgstr "Eliminar o ponto de observação seleccionado?" #~ msgid "Delete selected breakpoint?" #~ msgstr "Eliminar o ponto de paragem seleccionado?" -#~ msgid "Edit watchpoint" -#~ msgstr "Editar ponto de observação" - -#~ msgid "Edit breakpoint" -#~ msgstr "Editar ponto de paragem" - #~ msgid "Enabled" #~ msgstr "Activado" diff -Nru geany-plugins-1.24.0+20140222+git/po/ru.po geany-plugins-1.24.1+dfsg/po/ru.po --- geany-plugins-1.24.0+20140222+git/po/ru.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/ru.po 2014-04-12 14:28:39.000000000 +0000 @@ -3,14 +3,15 @@ # This file is distributed under the same license as the geany-plugins package. # Andrew Janke , 2009 # John Wehin , 2009 +# Pavel Roschin , 2014 # msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" -"PO-Revision-Date: 2012-02-18 02:49+0300\n" -"Last-Translator: Alexander Petukhov \n" +"POT-Creation-Date: 2014-04-09 03:19+0000\n" +"PO-Revision-Date: 2014-04-10 20:29+0400\n" +"Last-Translator: Pavel Roschin \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -36,12 +37,12 @@ msgid "Contents" msgstr "Содержание" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Закладки" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "_Обновить" @@ -75,19 +76,18 @@ msgstr "Задачи" #: ../addons/src/ao_tasks.c:542 -#, fuzzy msgid "Context:" -msgstr "Консоль:" +msgstr "Контекст:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "Вставка XML тегов" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Имя тега для вставки:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -106,20 +106,20 @@ #: ../addons/src/ao_wrapwords.c:249 msgid "Enclose Characters" -msgstr "" +msgstr "Завершение символов" #: ../addons/src/ao_wrapwords.c:260 #, c-format msgid "Enclose combo %d" -msgstr "" +msgstr "Пара символов %d" #: ../addons/src/ao_wrapwords.c:276 msgid "Opening Character" -msgstr "" +msgstr "Открывающий символ" #: ../addons/src/ao_wrapwords.c:283 msgid "Closing Character" -msgstr "" +msgstr "Закрывающий символ" #: ../addons/src/ao_doclist.c:207 msgid "Close Ot_her Documents" @@ -157,11 +157,12 @@ msgid "Run XML tagging" msgstr "Вставить XML теги по границам выделенного текста" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1935 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "Каталог настроек плагина не может быть создан." @@ -196,7 +197,6 @@ "Сортировать документы в порядке расположения вкладок (обратный порядок)" #: ../addons/src/addons.c:488 -#, fuzzy msgid "Show an 'Open URI' item in the editor menu" msgstr "Добавить команды 'Открыть URI', 'Копировать URI' в меню редактора" @@ -246,11 +246,19 @@ #: ../addons/src/addons.c:560 msgid "Enclose selection on configurable keybindings" -msgstr "" +msgstr "Окружать выделение по горячей клавише" #: ../addons/src/addons.c:572 msgid "Enclose selection automatically (without having to press a keybinding)" -msgstr "" +msgstr "Окружать выделение автоматически (без горячих клавиш)" + +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "Автозавершение" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "Многофункциональное автозавершение скобок и кавычек" #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" @@ -300,18 +308,16 @@ msgstr "Расширения файлов реализации" #: ../commander/src/commander-plugin.c:39 -#, fuzzy msgid "Commander" -msgstr "Команда 0:" +msgstr "Командир" #: ../commander/src/commander-plugin.c:40 msgid "Provides a command panel for quick access to actions, files and more" -msgstr "" +msgstr "Командная панель быстрого доступа к действиям, файлам и другое" #: ../commander/src/commander-plugin.c:686 -#, fuzzy msgid "Show Command Panel" -msgstr "Команда 0:" +msgstr "Показать командную панель" #: ../debugger/src/plugin.c:56 msgid "Debugger" @@ -321,8 +327,8 @@ msgid "Various debuggers integration." msgstr "Поддержка отладчиков." -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Отладка" @@ -390,18 +396,17 @@ msgstr "Программа получила сигнал:" #: ../debugger/src/dbm_gdb.c:563 -#, fuzzy, c-format +#, c-format msgid "Program exited with code \"%i\"" -msgstr "Программа завершилась с кодом %d [%s].\n" +msgstr "Программа завершилась с кодом \"%i\"" #: ../debugger/src/dbm_gdb.c:735 msgid "Failed to spawn gdb process" msgstr "Ошибка запуска GDB" #: ../debugger/src/dbm_gdb.c:782 -#, fuzzy msgid "~\"Loading target file.\\n\"" -msgstr "Выберите файл" +msgstr "~\"Загрузка файла.\\n\"" #: ../debugger/src/dbm_gdb.c:782 msgid "Error loading file" @@ -431,11 +436,11 @@ #: ../debugger/src/stree.c:140 msgid "Active frame" -msgstr "" +msgstr "Активный фрейм" #: ../debugger/src/stree.c:140 msgid "Click an arrow to switch to a frame" -msgstr "" +msgstr "Щёлкните по стрелке, чтобы переключить фрейм" #: ../debugger/src/stree.c:363 ../geanylatex/src/bibtexlabels.c:46 msgid "Address" @@ -457,7 +462,7 @@ msgid "Target" msgstr "Цель" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Точки останова" @@ -494,22 +499,22 @@ msgstr "Перезапустить" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "Шаг в" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "Шаг через" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "Шаг из" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "Выполнить до позиции курсора" @@ -518,7 +523,7 @@ msgstr "Добавить / Удалить точку останова" #: ../debugger/src/keys.c:57 -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "Перейти к текущей инструкции" #: ../debugger/src/watch_model.c:220 @@ -549,6 +554,14 @@ msgid "Save debug session data to a project" msgstr "Сохранять данные отладки в проект" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "Форматирование макросов" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "Автоматически выравнивает обратный слеш в макросах" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -653,295 +666,282 @@ #. i18n: Please don't translate "Devhelp". #: ../devhelp/devhelp/dh-assistant.c:74 msgid "Devhelp — Assistant" -msgstr "" +msgstr "Devhelp — помощник" #: ../devhelp/devhelp/dh-assistant-view.c:336 msgid "Book:" -msgstr "" +msgstr "Книга:" #. i18n: a documentation book #: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 msgid "Book" -msgstr "" +msgstr "Книга" #. i18n: a "page" in a documentation book #: ../devhelp/devhelp/dh-link.c:258 msgid "Page" -msgstr "" +msgstr "Страница" #. i18n: a search hit in the documentation, could be a #. * function, macro, struct, etc #: ../devhelp/devhelp/dh-link.c:262 msgid "Keyword" -msgstr "" +msgstr "Ключевое слово" #. i18n: in the programming language context, if you don't #. * have an ESTABLISHED term for it, leave it #. * untranslated. #: ../devhelp/devhelp/dh-link.c:272 msgid "Struct" -msgstr "" +msgstr "Структура" #. i18n: in the programming language context, if you don't #. * have an ESTABLISHED term for it, leave it #. * untranslated. #: ../devhelp/devhelp/dh-link.c:277 -#, fuzzy msgid "Macro" -msgstr "Макросы" +msgstr "Макрос" #. i18n: in the programming language context, if you don't #. * have an ESTABLISHED term for it, leave it #. * untranslated. #: ../devhelp/devhelp/dh-link.c:282 msgid "Enum" -msgstr "" +msgstr "Перечисление" #: ../devhelp/devhelp/dh-parser.c:91 ../devhelp/devhelp/dh-parser.c:185 #: ../devhelp/devhelp/dh-parser.c:249 ../devhelp/devhelp/dh-parser.c:259 #, c-format msgid "Expected '%s', got '%s' at line %d, column %d" -msgstr "" +msgstr "Ожидается: '%s', присутствует '%s' в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:108 #, c-format msgid "Invalid namespace '%s' at line %d, column %d" -msgstr "" +msgstr "Некорректное адресное пространство '%s' в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:136 #, c-format msgid "" "\"title\", \"name\" and \"link\" elements are required at line %d, column %d" msgstr "" +"элементы \"title\", \"name\" и \"link\" нужны в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:204 #, c-format msgid "" "\"name\" and \"link\" elements are required inside on line %d, column " "%d" -msgstr "" +msgstr "элементы \"name\" и \"link\" нужны внутри в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:284 #, c-format msgid "" "\"name\" and \"link\" elements are required inside '%s' on line %d, column %d" msgstr "" +"элементы \"name\" и \"link\" нужны внутри '%s' в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:297 #, c-format msgid "\"type\" element is required inside on line %d, column %d" -msgstr "" +msgstr "элемент \"type\" нужен внутри в строке %d, позиция %d" #: ../devhelp/devhelp/dh-parser.c:500 #, c-format msgid "Cannot uncompress book '%s': %s" -msgstr "" +msgstr "Невозможно распаковать книгу '%s': %s" #: ../devhelp/devhelp/dh-search.c:498 msgid "All books" -msgstr "" +msgstr "Все книги" #: ../devhelp/devhelp/dh-search.c:620 -#, fuzzy msgid "Search in:" -msgstr "Искать внутри:" +msgstr "Искать в:" #: ../devhelp/devhelp/dh-window.c:98 msgid "50%" -msgstr "" +msgstr "50%" #: ../devhelp/devhelp/dh-window.c:99 msgid "75%" -msgstr "" +msgstr "75%" #: ../devhelp/devhelp/dh-window.c:100 msgid "100%" -msgstr "" +msgstr "100%" #: ../devhelp/devhelp/dh-window.c:101 msgid "125%" -msgstr "" +msgstr "125%" #: ../devhelp/devhelp/dh-window.c:102 msgid "150%" -msgstr "" +msgstr "150%" #: ../devhelp/devhelp/dh-window.c:103 msgid "175%" -msgstr "" +msgstr "175%" #: ../devhelp/devhelp/dh-window.c:104 msgid "200%" -msgstr "" +msgstr "200%" #: ../devhelp/devhelp/dh-window.c:105 msgid "300%" -msgstr "" +msgstr "300%" #: ../devhelp/devhelp/dh-window.c:106 msgid "400%" -msgstr "" +msgstr "400%" #: ../devhelp/devhelp/dh-window.c:722 msgid "translator_credits" -msgstr "" +msgstr "translator_credits" #: ../devhelp/devhelp/dh-window.c:729 msgid "A developers' help browser for GNOME" -msgstr "" +msgstr "Просмотр документации для разработчиков" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Файл" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" -msgstr "" +msgstr "_Правка" #: ../devhelp/devhelp/dh-window.c:761 msgid "_View" -msgstr "" +msgstr "_Вид" #: ../devhelp/devhelp/dh-window.c:762 msgid "_Go" -msgstr "" +msgstr "_Перейти" #: ../devhelp/devhelp/dh-window.c:763 msgid "_Help" -msgstr "" +msgstr "_Справка" #. File menu #: ../devhelp/devhelp/dh-window.c:766 -#, fuzzy msgid "_New Window" -msgstr "Окна" +msgstr "Новое окно" #: ../devhelp/devhelp/dh-window.c:768 msgid "New _Tab" -msgstr "" +msgstr "Новая вкладка" #: ../devhelp/devhelp/dh-window.c:770 msgid "_Print…" -msgstr "" +msgstr "Печать…" #: ../devhelp/devhelp/dh-window.c:782 ../devhelp/devhelp/eggfindbar.c:342 -#, fuzzy msgid "Find Next" -msgstr "Найти файл" +msgstr "Найти следующее" #: ../devhelp/devhelp/dh-window.c:784 ../devhelp/devhelp/eggfindbar.c:329 -#, fuzzy msgid "Find Previous" -msgstr "Найти файл проекта" +msgstr "Найти предыдущее" #: ../devhelp/devhelp/dh-window.c:791 -#, fuzzy msgid "Go to the previous page" -msgstr "Вернуться к предыдущему диалогу" +msgstr "Перейти к предыдущей странице" #: ../devhelp/devhelp/dh-window.c:794 -#, fuzzy msgid "Go to the next page" -msgstr "Перейти на одну страницу вперёд" +msgstr "Перейти к следующей странице" #: ../devhelp/devhelp/dh-window.c:797 -#, fuzzy msgid "_Contents Tab" -msgstr "Содержание" +msgstr "Вкладка содержания" #: ../devhelp/devhelp/dh-window.c:800 -#, fuzzy msgid "_Search Tab" -msgstr "Поиск" +msgstr "Вкладка поиска" #. View menu #: ../devhelp/devhelp/dh-window.c:804 msgid "_Larger Text" -msgstr "" +msgstr "Увеличить текст" #: ../devhelp/devhelp/dh-window.c:805 msgid "Increase the text size" -msgstr "" +msgstr "Увеличить размер текста" #: ../devhelp/devhelp/dh-window.c:807 msgid "S_maller Text" -msgstr "" +msgstr "Уменьшить текст" #: ../devhelp/devhelp/dh-window.c:808 msgid "Decrease the text size" -msgstr "" +msgstr "Уменьшить размер текста" #: ../devhelp/devhelp/dh-window.c:810 msgid "_Normal Size" -msgstr "" +msgstr "Нормальный размер" #: ../devhelp/devhelp/dh-window.c:811 msgid "Use the normal text size" -msgstr "" +msgstr "Использовать нормальный размер текста" #: ../devhelp/devhelp/dh-window.c:820 msgid "Leave fullscreen mode" -msgstr "" +msgstr "Покинуть полноэкранный режим" #: ../devhelp/devhelp/dh-window.c:827 msgid "Display in full screen" -msgstr "" +msgstr "На полный экран" #. Translators: This refers to text size #: ../devhelp/devhelp/dh-window.c:947 -#, fuzzy msgid "Larger" -msgstr "Цель" +msgstr "Увеличить" #. Translators: This refers to text size #: ../devhelp/devhelp/dh-window.c:950 msgid "Smaller" -msgstr "" +msgstr "Уменьшить" #. i18n: please don't translate #. * "Devhelp", it's a name, not a #. * generic word. #: ../devhelp/devhelp/dh-window.c:1095 -#, fuzzy msgid "About Devhelp" -msgstr "Devhelp" +msgstr "О Devhelp" #: ../devhelp/devhelp/dh-window.c:1100 -#, fuzzy msgid "Preferences…" -msgstr "Настройки" +msgstr "Настройки…" #: ../devhelp/devhelp/dh-window.c:1330 msgid "Error opening the requested link." -msgstr "" +msgstr "Ошибка при открытии указанной ссылки." #: ../devhelp/devhelp/dh-window.c:1649 ../devhelp/devhelp/dh-window.c:1891 -#, fuzzy msgid "Empty Page" -msgstr "Пустые элементы" +msgstr "Пустая страница" #: ../devhelp/devhelp/eggfindbar.c:320 msgid "Find:" -msgstr "" +msgstr "Найти:" #: ../devhelp/devhelp/eggfindbar.c:333 ../devhelp/devhelp/eggfindbar.c:336 msgid "Find previous occurrence of the search string" -msgstr "" +msgstr "Найти предыдущее вхождение строки" #: ../devhelp/devhelp/eggfindbar.c:346 ../devhelp/devhelp/eggfindbar.c:349 msgid "Find next occurrence of the search string" -msgstr "" +msgstr "Найти следующее вхождение строки" #: ../devhelp/devhelp/eggfindbar.c:358 -#, fuzzy msgid "C_ase Sensitive" msgstr "С учётом регистра" #: ../devhelp/devhelp/eggfindbar.c:362 ../devhelp/devhelp/eggfindbar.c:365 -#, fuzzy msgid "Toggle case sensitive search" -msgstr "Переключиться на вкладку поиска в боковой панели" +msgstr "Переключить поиск с учётом регистра" #. All plugins must set name, description, version and author. #: ../geanydoc/src/geanydoc.c:50 ../geanydoc/src/geanydoc.c:347 @@ -988,55 +988,63 @@ msgid "Column mode, select to line / brace / anchor." msgstr "Режим выделения по столбцам, выделение до строки / скобки / анкера." -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" -msgstr "Расширенное выделение" +msgstr "_Расширенное выделение" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" -msgstr "Режим выделения по столбцам" +msgstr "Режим выделения по _столбцам" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Режим выделения по столбцам" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "Выделить до строки" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "Выделить до строки" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "Выделить до парной скобки" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "Выделить до парной скобки" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "Переключить _обычное/прямоугольное" + +#: ../geanyextrasel/src/extrasel.c:532 +msgid "Convert selection" +msgstr "Конвертировать выделение" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" -msgstr "Установить анкер" +msgstr "_Установить анкер" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "Установить анкер" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" -msgstr "Выделить до анкера" +msgstr "_Выделить до анкера" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "Выделить до анкера" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" -msgstr "Прямоугольное выделение до анкера" +msgstr "_Прямоугольное выделение до анкера" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "Прямоугольное выделение до анкера" @@ -1443,78 +1451,78 @@ msgid "Default documentation type for languages that does not have one set" msgstr "Тип конфигурации по умолчанию для языков для которых тип не задан" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Вставка чисел" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "Заполняет выделенные столбцы числами" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Подчёт..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Подготовка..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Вставка..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "Для основания 11 и выше" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "Старт:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "Шаг:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "Основание:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Регистр букв:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "Верхний" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "Нижний" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "Префикс" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" "0 для восьмеричных, 0x для шестнадцатеричных, + для положительных десятичных " "чисел" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "Отступ:" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Пробел" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "Ничего" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Вставить числа" @@ -1524,29 +1532,27 @@ #: ../geanylatex/src/latexenvironments.c:26 msgid "Formating" -msgstr "" +msgstr "Форматирование" #: ../geanylatex/src/latexenvironments.c:27 -#, fuzzy msgid "Document Structure" -msgstr "Интерактивная документация" +msgstr "Структура документа" #: ../geanylatex/src/latexenvironments.c:28 msgid "Lists" -msgstr "" +msgstr "Списки" #: ../geanylatex/src/latexenvironments.c:29 msgid "Math" -msgstr "" +msgstr "Математика" #: ../geanylatex/src/latexenvironments.c:194 msgid "Insert Environment" -msgstr "" +msgstr "Вставить окружение" #: ../geanylatex/src/latexenvironments.c:208 -#, fuzzy msgid "Environment:" -msgstr "_Окружение" +msgstr "Окружение:" #: ../geanylatex/src/latexutils.c:87 #, c-format @@ -1554,500 +1560,494 @@ "Could not determine where to insert package: %s\n" "Please try insert package manually" msgstr "" +"Не удалось определить, куда вставить пакет: %s\n" +"Попробуйте вставить пакет вручную" #: ../geanylatex/src/latexutils.c:89 #, c-format msgid "Could not determine where to insert package: %s" -msgstr "" +msgstr "Не удалось определить, куда вставить пакет: %s" #: ../geanylatex/src/bibtexlabels.c:27 msgid "Article (@Article)" -msgstr "" +msgstr "Статья (@Article)" #: ../geanylatex/src/bibtexlabels.c:28 msgid "Book (@Book)" -msgstr "" +msgstr "Книга (@Book)" #: ../geanylatex/src/bibtexlabels.c:29 msgid "Booklet (@Booklet)" -msgstr "" +msgstr "Буклет (@Booklet)" #: ../geanylatex/src/bibtexlabels.c:30 msgid "Conference (@Conference)" -msgstr "" +msgstr "Конференция (@Conference)" #: ../geanylatex/src/bibtexlabels.c:31 msgid "Inbook (@Inbook)" -msgstr "" +msgstr "В книге (@Inbook)" #: ../geanylatex/src/bibtexlabels.c:32 msgid "Incollection (@Incollection)" -msgstr "" +msgstr "В сборнике (@Incollection)" #: ../geanylatex/src/bibtexlabels.c:33 msgid "Inproceedings (@Inproceedings)" -msgstr "" +msgstr "В документе конференции (@Inproceedings)" #: ../geanylatex/src/bibtexlabels.c:34 msgid "Manual (@Manual)" -msgstr "" +msgstr "Руководство (@Manual)" #: ../geanylatex/src/bibtexlabels.c:35 msgid "Mastersthesis (@Mastersthesis)" -msgstr "" +msgstr "Диссертация магистра (@Mastersthesis)" #: ../geanylatex/src/bibtexlabels.c:36 msgid "Misc (@Misc)" -msgstr "" +msgstr "Другое (@Misc)" #: ../geanylatex/src/bibtexlabels.c:37 msgid "PhdThesis (@PhdThesis)" -msgstr "" +msgstr "Диссертация кандидата (@PhdThesis)" #: ../geanylatex/src/bibtexlabels.c:38 msgid "Proceedings (@Proceedings)" -msgstr "" +msgstr "Документ конференции (@Proceedings)" #: ../geanylatex/src/bibtexlabels.c:39 msgid "Techreport (@Techreport)" -msgstr "" +msgstr "Технический отчёт (@Techreport)" #: ../geanylatex/src/bibtexlabels.c:40 msgid "Unpublished (@Unpublished)" -msgstr "" +msgstr "Неизданное (@Unpublished)" #: ../geanylatex/src/bibtexlabels.c:47 msgid "Annote" -msgstr "" +msgstr "Аннотация" #: ../geanylatex/src/bibtexlabels.c:48 msgid "Author" -msgstr "" +msgstr "Автор" #: ../geanylatex/src/bibtexlabels.c:49 msgid "Booktitle" -msgstr "" +msgstr "Название книги" #: ../geanylatex/src/bibtexlabels.c:50 msgid "Chapter" -msgstr "" +msgstr "Глава" #: ../geanylatex/src/bibtexlabels.c:51 msgid "Crossref" -msgstr "" +msgstr "Ссылка" #: ../geanylatex/src/bibtexlabels.c:52 msgid "Edition" -msgstr "" +msgstr "Издание" #: ../geanylatex/src/bibtexlabels.c:53 msgid "Editor" -msgstr "" +msgstr "Редактор" #: ../geanylatex/src/bibtexlabels.c:54 msgid "E-print" -msgstr "" +msgstr "Электронная версия" #: ../geanylatex/src/bibtexlabels.c:55 msgid "HowPublished" -msgstr "" +msgstr "Способ публикации" #: ../geanylatex/src/bibtexlabels.c:56 msgid "Institution" -msgstr "" +msgstr "Институт" #: ../geanylatex/src/bibtexlabels.c:57 msgid "Journal" -msgstr "" +msgstr "Журнал" #: ../geanylatex/src/bibtexlabels.c:58 msgid "Key" -msgstr "" +msgstr "Ключ" #: ../geanylatex/src/bibtexlabels.c:59 msgid "Month" -msgstr "" +msgstr "Месяц" #: ../geanylatex/src/bibtexlabels.c:60 msgid "Note" -msgstr "" +msgstr "Заметка" #: ../geanylatex/src/bibtexlabels.c:61 msgid "Number" -msgstr "" +msgstr "Номер" #: ../geanylatex/src/bibtexlabels.c:62 msgid "Organization" -msgstr "" +msgstr "Организация" #: ../geanylatex/src/bibtexlabels.c:63 msgid "Pages" -msgstr "" +msgstr "Страницы" #: ../geanylatex/src/bibtexlabels.c:64 msgid "Publisher" -msgstr "" +msgstr "Издатель" #: ../geanylatex/src/bibtexlabels.c:65 msgid "School" -msgstr "" +msgstr "Институт (место защиты)" #: ../geanylatex/src/bibtexlabels.c:66 msgid "Series" -msgstr "" +msgstr "Серия" #: ../geanylatex/src/bibtexlabels.c:67 msgid "Title" -msgstr "" +msgstr "Название" #: ../geanylatex/src/bibtexlabels.c:69 msgid "URL" -msgstr "" +msgstr "Электронный адрес" #: ../geanylatex/src/bibtexlabels.c:70 msgid "Volume" -msgstr "" +msgstr "Том" #: ../geanylatex/src/bibtexlabels.c:71 -#, fuzzy msgid "Year" -msgstr "О_чистить" +msgstr "Год" #: ../geanylatex/src/bibtexlabels.c:103 msgid "Address of publisher" -msgstr "" +msgstr "Адрес издательства" #: ../geanylatex/src/bibtexlabels.c:104 msgid "Annotation for annotated bibliography styles" -msgstr "" +msgstr "Аннотация для стилей с аннотацией" #: ../geanylatex/src/bibtexlabels.c:105 msgid "Name(s) of the author(s), separated by 'and' if more than one" -msgstr "" +msgstr "Имена авторов, разделенные 'and' (если больше одного)" #: ../geanylatex/src/bibtexlabels.c:106 msgid "Title of the book, if only part of it is being cited" -msgstr "" +msgstr "Название книги, если цитируется только её часть" #: ../geanylatex/src/bibtexlabels.c:107 msgid "Chapter number" -msgstr "" +msgstr "Номер главы" #: ../geanylatex/src/bibtexlabels.c:108 msgid "Citation key of the cross-referenced entry" -msgstr "" +msgstr "Ключ цитируемой записи" #: ../geanylatex/src/bibtexlabels.c:109 msgid "Edition of the book (such as \"first\" or \"second\")" -msgstr "" +msgstr "Издание книги (например, \"первое\" или \"второе\")" #: ../geanylatex/src/bibtexlabels.c:110 msgid "Name(s) of the editor(s), separated by 'and' if more than one" -msgstr "" +msgstr "Имена редакторов, разделенные 'and' (если больше одного)" #: ../geanylatex/src/bibtexlabels.c:111 msgid "Specification of electronic publication" -msgstr "" +msgstr "Спецификация электронного издания" #: ../geanylatex/src/bibtexlabels.c:112 msgid "Publishing method if the method is nonstandard" -msgstr "" +msgstr "Способ публикации, если нестандартный" #: ../geanylatex/src/bibtexlabels.c:113 msgid "Institution that was involved in the publishing" -msgstr "" +msgstr "Институт, вовлечённый в публикацию, необязательно издатель" #: ../geanylatex/src/bibtexlabels.c:114 msgid "Journal or magazine in which the work was published" -msgstr "" +msgstr "Название журнала, содержащего статью" #: ../geanylatex/src/bibtexlabels.c:115 msgid "" "Hidden field used for specifying or overriding the alphabetical order of " "entries" msgstr "" +"Скрытое ключевое поле, задающее порядок сортировки" #: ../geanylatex/src/bibtexlabels.c:116 msgid "Month of publication or creation if unpublished" -msgstr "" +msgstr "Месяц публикации (если не опубликовано - создания)" #: ../geanylatex/src/bibtexlabels.c:117 msgid "Miscellaneous extra information" -msgstr "" +msgstr "Любая дополнительная информация" #: ../geanylatex/src/bibtexlabels.c:118 msgid "Number of journal, magazine, or tech-report" -msgstr "" +msgstr "Номер журнала или отчёта" #: ../geanylatex/src/bibtexlabels.c:119 msgid "Sponsor of the conference" -msgstr "" +msgstr "Спонсор конференции" #: ../geanylatex/src/bibtexlabels.c:120 msgid "Page numbers separated by commas or double-hyphens" -msgstr "" +msgstr "Номера страниц, разделённые запятыми или двойными дефисами" #: ../geanylatex/src/bibtexlabels.c:121 msgid "Name of publisher" -msgstr "" +msgstr "Наименование издательства" #: ../geanylatex/src/bibtexlabels.c:122 msgid "School where thesis was written" -msgstr "" +msgstr "Институт, в котором защищалась диссертация" #: ../geanylatex/src/bibtexlabels.c:123 msgid "Series of books in which the book was published" -msgstr "" +msgstr "Серия, в которой вышла книга" #: ../geanylatex/src/bibtexlabels.c:124 msgid "Title of the work" -msgstr "" +msgstr "Название работы" #: ../geanylatex/src/bibtexlabels.c:125 msgid "Type of technical report" -msgstr "" +msgstr "Тип отчёта" #: ../geanylatex/src/bibtexlabels.c:126 msgid "Internet address" -msgstr "" +msgstr "Электронный www-адрес в сети" #: ../geanylatex/src/bibtexlabels.c:127 msgid "Number of the volume" -msgstr "" +msgstr "Номер тома" #: ../geanylatex/src/bibtexlabels.c:128 msgid "Year of publication or creation if unpublished" -msgstr "" +msgstr "Год публикации (если не опубликовано - создания)" #: ../geanylatex/src/geanylatex.c:41 msgid "GeanyLaTeX" -msgstr "" +msgstr "GeanyLaTeX" #: ../geanylatex/src/geanylatex.c:42 msgid "Plugin to provide better LaTeX support" -msgstr "" +msgstr "Улучшенная поддержка LaTeX" #: ../geanylatex/src/geanylatex.c:116 msgid "Runs LaTeX wizard" -msgstr "" +msgstr "Запустить мастер LaTeX" #: ../geanylatex/src/geanylatex.c:117 msgid "Marks selected text as italic" -msgstr "" +msgstr "Пометить выделенный текст курсивом" #: ../geanylatex/src/geanylatex.c:118 msgid "Marks selected text as bold" -msgstr "" +msgstr "Пометить выделенный текст полужирным" #: ../geanylatex/src/geanylatex.c:119 msgid "Underlines selected text" -msgstr "" +msgstr "Пометить выделенный текст подчёркиванием" #: ../geanylatex/src/geanylatex.c:120 ../geanylatex/src/formatpatterns.c:45 msgid "Centered" -msgstr "" +msgstr "Выравнивание по центру" #: ../geanylatex/src/geanylatex.c:121 ../geanylatex/src/formatpatterns.c:46 msgid "Left side oriented" -msgstr "" +msgstr "Выравнивание по левому краю" #: ../geanylatex/src/geanylatex.c:122 ../geanylatex/src/formatpatterns.c:47 msgid "Right side oriented" -msgstr "" +msgstr "Выравнивание по правому краю" #: ../geanylatex/src/geanylatex.c:298 msgid "Use KOMA script by default" -msgstr "" +msgstr "Использовать KOMA script по умолчанию" #: ../geanylatex/src/geanylatex.c:300 msgid "Show extra plugin toolbar" -msgstr "" +msgstr "Показать дополнительную панель инструментов" #: ../geanylatex/src/geanylatex.c:302 msgid "Capitalize sentence on typing" -msgstr "" +msgstr "Начинать предложение с заглавной буквы по время набора" #: ../geanylatex/src/geanylatex.c:304 msgid "Add a wizard icon to Geany's main toolbar" -msgstr "" +msgstr "Добавить иконку мастера на главную панель Geany" #: ../geanylatex/src/geanylatex.c:306 msgid "Lower selection when formating smallcaps (\\textsc{})" -msgstr "" +msgstr "Выделение в нижний регистр для капители (\\textsc{})" #: ../geanylatex/src/geanylatex.c:310 msgid "Don't care about this inside plugin" -msgstr "" +msgstr "Не изменять" #: ../geanylatex/src/geanylatex.c:312 msgid "Always perform autocompletion on LaTeX" -msgstr "" +msgstr "Всегда выполнять автодополнение в LaTeX" #: ../geanylatex/src/geanylatex.c:325 msgid "Modus of autocompletion" -msgstr "" +msgstr "Способ автодополнения" #: ../geanylatex/src/geanylatex.c:809 msgid "Insert Label" -msgstr "" +msgstr "Вставить метку" #: ../geanylatex/src/geanylatex.c:811 msgid "Label name:" -msgstr "" +msgstr "Название метки:" #: ../geanylatex/src/geanylatex.c:833 msgid "Insert Command" -msgstr "" +msgstr "Вставить команду" #: ../geanylatex/src/geanylatex.c:835 -#, fuzzy msgid "Command name:" -msgstr "Команда 0:" +msgstr "Название команды:" #: ../geanylatex/src/geanylatex.c:878 -#, fuzzy msgid "Insert Reference" -msgstr "Настройки" +msgstr "Вставить ссылку" #: ../geanylatex/src/geanylatex.c:891 -#, fuzzy msgid "Reference name:" -msgstr "Настройки" +msgstr "Имя ссылки:" #: ../geanylatex/src/geanylatex.c:916 -#, fuzzy msgid "_Standard Reference" -msgstr "Настройки" +msgstr "_Обычная ссылка" #: ../geanylatex/src/geanylatex.c:921 -#, fuzzy msgid "_Page Reference" -msgstr "Настройки" +msgstr "Ссылка на _страницу" #: ../geanylatex/src/geanylatex.c:926 -#, fuzzy msgid "_Add both" -msgstr "Добавить точку останова" +msgstr "_И то и другое" #: ../geanylatex/src/geanylatex.c:1123 msgid "More" -msgstr "" +msgstr "Дополнительно" #: ../geanylatex/src/geanylatex.c:1179 msgid "Add additional package" -msgstr "" +msgstr "Добавить пакет" #: ../geanylatex/src/geanylatex.c:1192 msgid "Package name:" -msgstr "" +msgstr "Имя пакета:" #: ../geanylatex/src/geanylatex.c:1195 msgid "Package options:" -msgstr "" +msgstr "Параметры пакета:" #: ../geanylatex/src/geanylatex.c:1243 -#, fuzzy msgid "Insert BibTeX Reference" -msgstr "Настройки" +msgstr "Вставить ссылку BibTeX" #: ../geanylatex/src/geanylatex.c:1256 -#, fuzzy msgid "BibTeX reference name:" -msgstr "Настройки" +msgstr "Имя ссылки BibTeX" #: ../geanylatex/src/geanylatex.c:1680 msgid "Dear Sir or Madame" -msgstr "" +msgstr "Уважаемый(ая)" #: ../geanylatex/src/geanylatex.c:1681 msgid "With kind regards" -msgstr "" +msgstr "С наилучшими пожеланиями" #: ../geanylatex/src/geanylatex.c:1689 msgid "No template assigned. Aborting" -msgstr "" +msgstr "Не задан шаблон. Операция прервана" #. Building the wizard-dialog and showing it #: ../geanylatex/src/geanylatex.c:1716 msgid "LaTeX-Wizard" -msgstr "" +msgstr "Мастер LaTeX" #. Templates #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:659 msgid "Template:" -msgstr "" +msgstr "Шаблон:" #: ../geanylatex/src/geanylatex.c:1735 msgid "Set the template which should be used for creating the new document" -msgstr "" +msgstr "Установить шаблон, который будет использоваться для создания нового документа" #: ../geanylatex/src/geanylatex.c:1744 msgid "Default" -msgstr "" +msgstr "По умолчанию" #. Documentclass #: ../geanylatex/src/geanylatex.c:1755 msgid "Documentclass:" -msgstr "" +msgstr "Класс документа:" #: ../geanylatex/src/geanylatex.c:1758 msgid "Choose the kind of document you want to write" -msgstr "" +msgstr "Выберите тип документа, который хотите создать" #: ../geanylatex/src/geanylatex.c:1762 msgid "Article" -msgstr "" +msgstr "Статья" #: ../geanylatex/src/geanylatex.c:1764 msgid "Report" -msgstr "" +msgstr "Отчёт" #: ../geanylatex/src/geanylatex.c:1766 msgid "Letter" -msgstr "" +msgstr "Письмо" #: ../geanylatex/src/geanylatex.c:1768 -#, fuzzy msgid "Presentation" -msgstr "запущено" +msgstr "Презентация" #. Encoding #: ../geanylatex/src/geanylatex.c:1778 msgid "Encoding:" -msgstr "" +msgstr "Кодировка:" #: ../geanylatex/src/geanylatex.c:1782 msgid "Set the encoding for your new document" -msgstr "" +msgstr "Установить кодировку для нового документа" #. fontsize #: ../geanylatex/src/geanylatex.c:1798 -#, fuzzy msgid "Font size" -msgstr "_Продолжить" +msgstr "Размер шрифта" #: ../geanylatex/src/geanylatex.c:1804 msgid "Set the default font size of your new document" -msgstr "" +msgstr "Установить размер шрифта по умолчанию для нового документа" #. Author #: ../geanylatex/src/geanylatex.c:1816 msgid "Author:" -msgstr "" +msgstr "Автор:" #: ../geanylatex/src/geanylatex.c:1819 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "" +"Устанавливает значение для команды \\author. В большинстве случаев здесь " +"должно быть ваше имя" #. Date #: ../geanylatex/src/geanylatex.c:1833 msgid "Date:" -msgstr "" +msgstr "Дата:" #: ../geanylatex/src/geanylatex.c:1836 msgid "" @@ -2055,38 +2055,39 @@ "document. Keeping it at \\today is a good decision if you don't need any " "fixed date." msgstr "" +"Устанавливает значение для команды \\date внутри заголовка нового LaTeX-" +"документа. Оставьте \\today, если вам не нужна конкретная дата." #. Title of the new document #: ../geanylatex/src/geanylatex.c:1848 msgid "Title:" -msgstr "" +msgstr "Название документа:" #: ../geanylatex/src/geanylatex.c:1851 msgid "Sets the title of your new document." -msgstr "" +msgstr "Задаёт название для нового документа." #. Papersize #: ../geanylatex/src/geanylatex.c:1860 msgid "Paper size:" -msgstr "" +msgstr "Размер страницы:" #: ../geanylatex/src/geanylatex.c:1863 msgid "Choose the paper format for the newly created document" -msgstr "" +msgstr "Выберите размер страницы для нового документа" #. Paper direction #: ../geanylatex/src/geanylatex.c:1876 -#, fuzzy msgid "Paper Orientation:" -msgstr "запущено" +msgstr "Ориентация страницы" #: ../geanylatex/src/geanylatex.c:1879 msgid "Choose the paper orientation for the newly created document" -msgstr "" +msgstr "Выберите ориентацию страницы для нового документа" #: ../geanylatex/src/geanylatex.c:1900 msgid "Use KOMA-script classes if possible" -msgstr "" +msgstr "Использовать KOMA-script классы, если возможно" #: ../geanylatex/src/geanylatex.c:1902 msgid "" @@ -2094,108 +2095,108 @@ "Keep in mind: To compile your document these classes have to be installed " "before." msgstr "" +"Использовать KOMA-script классы от Markus Kohm.\n" +"Примечание: для успешной компиляции этот класс нужно сначала установить." #: ../geanylatex/src/geanylatex.c:1909 msgid "Use draft mode" -msgstr "" +msgstr "Использовать режим черновика" #: ../geanylatex/src/geanylatex.c:1911 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "" +"Установите флаг черновика внутри нового документа, чтобы включить " +"вспомогательные отладочные сообщения." #: ../geanylatex/src/geanylatex.c:1928 msgid "Run LaTeX-Wizard" -msgstr "" +msgstr "Запустить мастер LaTeX" #: ../geanylatex/src/geanylatex.c:1930 msgid "Insert \\label" -msgstr "" +msgstr "Вставить \\label" #: ../geanylatex/src/geanylatex.c:1932 msgid "Insert \\ref" -msgstr "" +msgstr "Вставить \\ref" #: ../geanylatex/src/geanylatex.c:1934 msgid "Insert linebreak \\\\ " -msgstr "" +msgstr "Вставить разрыв строки \\\\ " #: ../geanylatex/src/geanylatex.c:1937 msgid "Insert command" -msgstr "" +msgstr "Вставить команду" #: ../geanylatex/src/geanylatex.c:1939 msgid "Turn input replacement on/off" -msgstr "" +msgstr "Переключить автозамену ввода" #: ../geanylatex/src/geanylatex.c:1943 msgid "Replace special characters" -msgstr "" +msgstr "Заменять спецсимволы" #: ../geanylatex/src/geanylatex.c:1946 -#, fuzzy msgid "Run insert environment dialog" -msgstr "Вернуться к предыдущему диалогу" +msgstr "Запустить диалог вставки окружения" #: ../geanylatex/src/geanylatex.c:1948 msgid "Insert \\item" -msgstr "" +msgstr "Вставить \\item" #: ../geanylatex/src/geanylatex.c:1950 msgid "Format selection in bold font face" -msgstr "" +msgstr "Форматировать выделение жирным шрифтом" #: ../geanylatex/src/geanylatex.c:1952 msgid "Format selection in italic font face" -msgstr "" +msgstr "Форматировать выделение курсивным шрифтом" #: ../geanylatex/src/geanylatex.c:1954 msgid "Format selection in typewriter font face" -msgstr "" +msgstr "Форматировать выделение машинописным шрифтом" #: ../geanylatex/src/geanylatex.c:1956 msgid "Format selection centered" -msgstr "" +msgstr "Выровнять выделение по центру" #: ../geanylatex/src/geanylatex.c:1958 -#, fuzzy msgid "Format selection left-aligned" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Выровнять выделение по левому краю" #: ../geanylatex/src/geanylatex.c:1960 -#, fuzzy msgid "Format selection right-aligned" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Выровнять выделение по правому краю" #: ../geanylatex/src/geanylatex.c:1963 msgid "Insert description list" -msgstr "" +msgstr "Вставить список с описанием (description)" #: ../geanylatex/src/geanylatex.c:1966 msgid "Insert itemize list" -msgstr "" +msgstr "Вставить маркированный список (itemize)" #: ../geanylatex/src/geanylatex.c:1969 msgid "Insert enumerate list" -msgstr "" +msgstr "Вставить нумерованный список (enumerate)" #: ../geanylatex/src/geanylatex.c:1972 msgid "Set selection one level up" -msgstr "" +msgstr "Выделение на уровень выше" #: ../geanylatex/src/geanylatex.c:1975 msgid "Set selection one level down" -msgstr "" +msgstr "Выделение на уровень ниже" #: ../geanylatex/src/geanylatex.c:1978 msgid "Insert \\usepackage{}" -msgstr "" +msgstr "Вставить \\usepackage{}" #: ../geanylatex/src/geanylatex.c:1981 -#, fuzzy msgid "Insert BibTeX reference dialog" -msgstr "Настройки" +msgstr "Диалог вставки ссылки BibTeX" #: ../geanylatex/src/geanylatex.c:1988 msgid "" @@ -2203,302 +2204,302 @@ "\n" "Please report all bugs or feature requests to one of the authors." msgstr "" +"GeanyLaTeX - дополнение улучшенной поддержки LaTeX в Geany.\n" +"\n" +"Сообщения об ошибках и предложения отправляйте одному из авторов." #: ../geanylatex/src/geanylatex.c:2026 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" +"glatex_set_autocompletion_contextsize инициализирован с некорректным значением. " +"Используется стандартное значение. Проверьте ваши файлы конфигурации" #: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 msgid "page \\pageref{{{reference}}}" -msgstr "" +msgstr "страница \\pageref{{{reference}}}" #: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" -msgstr "" +msgstr "\\ref{{{reference}}}, страница \\pageref{{{reference}}}" #. Build up menu for menubar #: ../geanylatex/src/geanylatex.c:2107 msgid "_LaTeX" -msgstr "" +msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu #: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 msgid "LaTeX-_Wizard" -msgstr "" +msgstr "Мастер LaTeX" #: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 msgid "Starts a Wizard to easily create LaTeX-documents" -msgstr "" +msgstr "Запуск мастера для простого создания документов LaTeX" #: ../geanylatex/src/geanylatex.c:2124 msgid "I_nsert Special Character" -msgstr "" +msgstr "_Вставить специальный символ" #: ../geanylatex/src/geanylatex.c:2126 msgid "Helps to use some not very common letters and signs" -msgstr "" +msgstr "Доступ к некоторым не распространённым символам и знаками" #: ../geanylatex/src/geanylatex.c:2136 -#, fuzzy msgid "Insert _Reference" -msgstr "Настройки" +msgstr "Вставить _ссылку" #: ../geanylatex/src/geanylatex.c:2138 msgid "Inserting references to the document" -msgstr "" +msgstr "Вставка ссылок в документ" #: ../geanylatex/src/geanylatex.c:2143 msgid "Insert _Label" -msgstr "" +msgstr "Вставить _метку" #: ../geanylatex/src/geanylatex.c:2145 msgid "Helps at inserting labels to a document" -msgstr "" +msgstr "Вставляет метки в документ" #: ../geanylatex/src/geanylatex.c:2151 msgid "Insert _Environment" -msgstr "" +msgstr "Вставить _окружение" #: ../geanylatex/src/geanylatex.c:2153 msgid "Helps at inserting an environment a document" -msgstr "" +msgstr "Вставляет окружение в документ" #: ../geanylatex/src/geanylatex.c:2159 -#, fuzzy msgid "Insert P_ackage" -msgstr "Настройки" +msgstr "Вставить _пакет" #: ../geanylatex/src/geanylatex.c:2161 msgid "A small dialog to insert \\usepackage{} into header of current file" -msgstr "" +msgstr "Небольшой диалог для вставки \\usepackage{} в заголовок текущего файла" #: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 msgid "_Format" -msgstr "" +msgstr "_Форматирование" #. Add font size menu #: ../geanylatex/src/geanylatex.c:2183 -#, fuzzy msgid "F_ont size" -msgstr "_Продолжить" +msgstr "_Размер шрифта" #: ../geanylatex/src/geanylatex.c:2201 msgid "_Special Character Replacement" -msgstr "" +msgstr "_Экранирование специальных символов" #: ../geanylatex/src/geanylatex.c:2209 msgid "Bulk _Replace Special Characters" -msgstr "" +msgstr "_Экранировать специальные символы" #: ../geanylatex/src/geanylatex.c:2211 msgid "_Replace selected special characters with TeX substitutes" -msgstr "" +msgstr "Экранировать специальные символы TeX в выделении" #: ../geanylatex/src/geanylatex.c:2219 msgid "Toggle _Special Character Replacement" -msgstr "" +msgstr "_Переключить экранирование символов" #: ../geanylatex/src/geanylatex.c:2230 msgid "Insert _Command" -msgstr "" +msgstr "Вставить _команду" #: ../geanylatex/src/geanylatex.c:2232 msgid "Inserting costumized command to document" -msgstr "" +msgstr "Вставляет пользовательскую команду в документ" #: ../geanylatex/src/geanylatex.c:2257 msgid "_BibTeX" -msgstr "" +msgstr "_BibTeX" #: ../geanylatex/src/geanylatex.c:2265 -#, fuzzy msgid "Insert B_ibTeX reference" -msgstr "Настройки" +msgstr "Вставить ссылку B_ibTeX" #: ../geanylatex/src/geanylatex.c:2267 msgid "Helps to insert a reference out of BibTeX files" -msgstr "" +msgstr "Вставка ссылок из библиотеки BibTeX" #: ../geanylatex/src/geanylatex.c:2272 msgid "_BibTeX entries" -msgstr "" +msgstr "Записи _BibTeX" #: ../geanylatex/src/letters.c:40 msgid "LaTeX letters" -msgstr "" +msgstr "Символы LaTeX" #: ../geanylatex/src/letters.c:41 msgid "Greek letters" -msgstr "" +msgstr "Греческие символы" #: ../geanylatex/src/letters.c:42 msgid "German umlauts" -msgstr "" +msgstr "Немецкие умлауты" #: ../geanylatex/src/letters.c:43 msgid "Misc" -msgstr "" +msgstr "Другое" #: ../geanylatex/src/letters.c:44 msgid "Arrow characters" -msgstr "" +msgstr "Стрелки" #: ../geanylatex/src/letters.c:45 msgid "Relational" -msgstr "" +msgstr "Отношения" #: ../geanylatex/src/letters.c:46 msgid "Binary operation" -msgstr "" +msgstr "Бинарные операции" #: ../geanylatex/src/formatpatterns.c:38 msgid "Italic" -msgstr "" +msgstr "Курсив" #: ../geanylatex/src/formatpatterns.c:39 msgid "Bold" -msgstr "" +msgstr "Полужирный" #: ../geanylatex/src/formatpatterns.c:40 msgid "Underline" -msgstr "" +msgstr "Подчёркнутый" #: ../geanylatex/src/formatpatterns.c:41 msgid "Typewriter" -msgstr "" +msgstr "Машинописный" #: ../geanylatex/src/formatpatterns.c:42 msgid "Small Caps" -msgstr "" +msgstr "Капитель" #: ../geanylatex/src/formatpatterns.c:43 -#, fuzzy msgid "Slanted" -msgstr "загружено" +msgstr "Наклонный" #: ../geanylatex/src/formatpatterns.c:44 msgid "Emphasis" -msgstr "" +msgstr "Выделение (emphasis)" #: ../geanylatex/src/formatpatterns.c:64 msgid "tiny" -msgstr "" +msgstr "крохотный" #: ../geanylatex/src/formatpatterns.c:65 msgid "scriptsize" -msgstr "" +msgstr "миниатюрный" #: ../geanylatex/src/formatpatterns.c:66 msgid "footnotesize" -msgstr "" +msgstr "мелкий" #: ../geanylatex/src/formatpatterns.c:67 msgid "small" -msgstr "" +msgstr "маленький" #: ../geanylatex/src/formatpatterns.c:68 msgid "normalsize" -msgstr "" +msgstr "нормальный" #: ../geanylatex/src/formatpatterns.c:69 msgid "large" -msgstr "" +msgstr "большой" #: ../geanylatex/src/formatpatterns.c:70 msgid "Large" -msgstr "" +msgstr "великий" #: ../geanylatex/src/formatpatterns.c:71 msgid "LARGE" -msgstr "" +msgstr "огромный" #: ../geanylatex/src/formatpatterns.c:72 msgid "huge" -msgstr "" +msgstr "громадный" #: ../geanylatex/src/formatpatterns.c:73 msgid "Huge" -msgstr "" +msgstr "гигантский" #: ../geanylatex/src/latexencodings.c:37 msgid "UTF-8" -msgstr "" +msgstr "UTF-8" #: ../geanylatex/src/latexencodings.c:38 msgid "US-ASCII" -msgstr "" +msgstr "US-ASCII" #: ../geanylatex/src/latexencodings.c:39 msgid "ISO-8859-1 (Latin-1)" -msgstr "" +msgstr "ISO-8859-1 (Latin-1)" #: ../geanylatex/src/latexencodings.c:41 msgid "ISO-8859-2 (Latin-2)" -msgstr "" +msgstr "ISO-8859-2 (Latin-2)" #: ../geanylatex/src/latexencodings.c:43 msgid "ISO-8859-3 (Latin-3)" -msgstr "" +msgstr "ISO-8859-3 (Latin-3)" #: ../geanylatex/src/latexencodings.c:45 msgid "ISO-8859-4 (Latin-4)" -msgstr "" +msgstr "ISO-8859-4 (Latin-4)" #: ../geanylatex/src/latexencodings.c:47 msgid "ISO-8859-5 (Latin-5)" -msgstr "" +msgstr "ISO-8859-5 (Latin-5)" #: ../geanylatex/src/latexencodings.c:49 msgid "ISO-8859-9 (Latin-9)" -msgstr "" +msgstr "ISO-8859-9 (Latin-9)" #: ../geanylatex/src/latexencodings.c:51 msgid "ISO-8859-10 (Latin-10)" -msgstr "" +msgstr "ISO-8859-10 (Latin-10)" #: ../geanylatex/src/latexencodings.c:53 msgid "IBM 850 code page" -msgstr "" +msgstr "Кодировка IBM 850" #: ../geanylatex/src/latexencodings.c:55 msgid "IBM 852 code page" -msgstr "" +msgstr "Кодировка IBM 852" #: ../geanylatex/src/latexencodings.c:57 msgid "Don't set any encoding" -msgstr "" +msgstr "Не устанавливать никакой кодировки" #: ../geanylipsum/src/geanylipsum.c:40 msgid "GeanyLipsum" -msgstr "" +msgstr "GeanyLipsum" #: ../geanylipsum/src/geanylipsum.c:41 msgid "Creating dummy text with Geany" -msgstr "" +msgstr "Создаёт текст-рыбу" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" -msgstr "" +msgstr "Lipsum-генератор" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" -msgstr "" +msgstr "Введите длину текста" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" -msgstr "" +msgstr "_Lipsum" #: ../geanylipsum/src/geanylipsum.c:165 msgid "Include Pseudotext to your code" -msgstr "" +msgstr "Вставить псевдотекст в ваш код" #: ../geanylipsum/src/geanylipsum.c:179 msgid "Insert Lipsum text" -msgstr "" +msgstr "Вставить текст Lipsum" #: ../geanylua/glspi.h:100 ../geanylua/gsdlg_lua.c:95 #: ../geanylua/glspi_kfile.c:54 @@ -2507,6 +2508,8 @@ "Error in module \"%s\" at function %s():\n" " expected type \"%s\" for argument #%d\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +" ожидается тип \"%s\" для аргумента #%d\n" #: ../geanylua/glspi.h:114 #, c-format @@ -2514,6 +2517,8 @@ "Error in module \"%s\" at function %s():\n" " expected type \"%s\" or \"%s\" for argument #%d\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +" ожидается тип \"%s\" или \"%s\" для аргумента #%d\n" #: ../geanylua/glspi.h:128 ../geanylua/gsdlg_lua.c:108 #, c-format @@ -2522,6 +2527,9 @@ " invalid table in argument #%d:\n" " expected type \"%s\" for element #%d\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +" некорректная таблица в аргумента #%d:\n" +" ожидается тип \"%s\" для элемента #%d\n" #. #. * glspi_ver.c - This file is part of the Lua scripting plugin for the Geany IDE @@ -2529,66 +2537,68 @@ #. #: ../geanylua/glspi_ver.h:7 msgid "Lua Script" -msgstr "" +msgstr "Сценарий Lua" #: ../geanylua/glspi_ver.h:9 msgid "Write and run Lua scripts for custom commands." -msgstr "" +msgstr "Пишите и запускается сценарии на Lua как пользовательские команды." #: ../geanylua/glspi_ver.h:19 msgid "Lua Script Plugin" -msgstr "" +msgstr "Модуль сценариев Lua" #: ../geanylua/glspi_run.c:90 ../geanylua/glspi_run.c:97 msgid "Lua script error:" -msgstr "" +msgstr "Ошибка в сценарии Lua:" #: ../geanylua/glspi_run.c:197 msgid "Script timeout" -msgstr "" +msgstr "Время ожидания сценария" #: ../geanylua/glspi_run.c:198 msgid "" "A Lua script seems to be taking excessive time to complete.\n" "Do you want to continue waiting?" msgstr "" +"Похоже, что сценарий Lua выполняется слишком долго.\n" +"Хотите продолжить выполнение сценария?" #: ../geanylua/glspi_run.c:206 msgid "Script timeout exceeded." -msgstr "" +msgstr "Время ожидания сценария истекло." #: ../geanylua/glspi_run.c:382 msgid "(error object is not a string)" -msgstr "" +msgstr "(объект ошибка не является строкой)" #: ../geanylua/glspi_run.c:387 msgid "Unknown Error inside script." -msgstr "" +msgstr "Неизвестная ошибка в сценарии." #: ../geanylua/glspi_run.c:459 msgid "Out of memory." -msgstr "" +msgstr "Недостаточно памяти." #: ../geanylua/glspi_run.c:462 msgid "Failed to open script file." -msgstr "" +msgstr "Не удалось открыть файл со сценарием." #: ../geanylua/glspi_run.c:465 msgid "Unknown error while loading script file." -msgstr "" +msgstr "Неизвестная ошибка при загрузке файла со сценарием." #: ../geanylua/glspi_init.c:381 msgid "_Lua Scripts" -msgstr "" +msgstr "Сценарии _Lua" #: ../geanylua/glspi_init.c:428 #, c-format msgid " ==>> %s: Building menu from '%s'\n" -msgstr "" +msgstr " ==>> %s: Создание меню из '%s'\n" #: ../geanylua/glspi_init.c:527 msgid "Nothing to configure!" -msgstr "" +msgstr "Настройки не обнаружены!" #: ../geanylua/glspi_init.c:529 #, c-format @@ -2599,37 +2609,39 @@ "\n" "to add your own custom configuration dialog." msgstr "" +"Вы можете создать сценарий:\n" +"\n" +"\"%s\"\n" +"\n" +"чтобы создать собственный диалог настройки." #: ../geanylua/gsdlg.c:103 ../geanylua/glspi_dlg.c:420 msgid "Open file" -msgstr "" +msgstr "Открыть файл" #: ../geanylua/gsdlg.c:107 -#, fuzzy msgid "Select file" -msgstr "Выбрать шрифт" +msgstr "Выбрать файл" #: ../geanylua/gsdlg.c:154 msgid "Browse..." -msgstr "" +msgstr "Обзор..." -#: ../geanylua/gsdlg.c:175 -#, fuzzy +#: ../geanylua/gsdlg.c:176 msgid "Select Color" -msgstr "Выбрать шрифт" +msgstr "Выбрать цвет" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." -msgstr "" +msgstr "Выбрать..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Выбрать шрифт" -#: ../geanylua/gsdlg.c:253 -#, fuzzy +#: ../geanylua/gsdlg.c:255 msgid "Select..." -msgstr "Выбрать шрифт" +msgstr "Выбрать..." #: ../geanylua/glspi_sci.c:427 #, c-format @@ -2637,6 +2649,8 @@ "Error in module \"%s\" at function navigate():\n" "unknown navigation mode \"%s\" for argument #1.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции navigate():\n" +"неизвестный режим навигации \"%s\" в аргументе #1.\n" #: ../geanylua/glspi_sci.c:603 #, c-format @@ -2644,6 +2658,8 @@ "Error in module \"%s\" at function %s():\n" "API command \"%s\" not implemented.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +"Команда API \"%s\" не реализована.\n" #: ../geanylua/glspi_sci.c:614 #, c-format @@ -2651,13 +2667,17 @@ "Error in module \"%s\" at function %s():\n" "not enough arguments for command \"%s\".\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +"недостаточно аргументов для команды \"%s\".\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "unknown command \"%s\" given for argument #1.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +"неизвестная команда \"%s\" в аргументе #1.\n" #: ../geanylua/glspi_sci.c:794 #, c-format @@ -2666,65 +2686,72 @@ " invalid table in argument #%d:\n" " unknown flag \"%s\" for element #%d\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +" некорректная таблица в аргументе #%d:\n" +" неизвестный флаг \"%s\" для элемента #%d\n" #: ../geanylua/glspi_sci.c:798 msgid "" -msgstr "" +msgstr "<слишком велик для отображения>" #: ../geanylua/glspi_dlg.c:336 msgid "File exists" -msgstr "" +msgstr "Файл существует" #: ../geanylua/glspi_dlg.c:336 msgid "Do you want to overwrite it?" -msgstr "" +msgstr "Вы действительно хотите перезаписать его?" #: ../geanylua/glspi_dlg.c:337 msgid "confirm" -msgstr "" +msgstr "подтвердить" #: ../geanylua/glspi_dlg.c:410 msgid "Save file" -msgstr "" +msgstr "Сохранить файл" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции pickfile():\n" +"не удалось разобрать строку-фильтр в аргументе #3.\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "expected string \"open\" or \"save\" for argument #1.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +"ожидается строка \"open\" или \"save\" для аргумента #1.\n" #: ../geanylua/geanylua.c:163 #, c-format msgid "%s: Can't load support library %s!\n" -msgstr "" +msgstr "%s: Не удалось загрузить вспомогательную библиотеку %s!\n" #: ../geanylua/geanylua.c:175 #, c-format msgid "%s: Failed to initialize support library %s!\n" -msgstr "" +msgstr "%s: Не удалось инициализировать вспомогательную библиотеку %s!\n" #: ../geanylua/geanylua.c:180 #, c-format msgid "%s: Support library version mismatch: %s for %s (should be %s)!\n" -msgstr "" +msgstr "%s: Не соответствует версия вспомогательной библиотеки: %s для %s (должна быть %s)!\n" #: ../geanylua/geanylua.c:186 #, c-format msgid "%s: Support library ABI mismatch: %d for %s (should be %d)!\n" -msgstr "" +msgstr "%s: Не соответствует ABI вспомогательной библиотеки: %d для %s (должно быть %d)!\n" #: ../geanylua/geanylua.c:215 #, c-format msgid "%s: Can't find support library %s!\n" -msgstr "" +msgstr "%s: Не удалось обнаружить вспомогательную библиотеку %s!\n" #: ../geanylua/geanylua.c:234 #, c-format @@ -2732,360 +2759,336 @@ "The %s plugin failed to load properly.\n" "Please check your installation." msgstr "" +"Не удалось загрузить модуль %s.\n" +"Проверьте правильность установки." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" "Copyright (c) 2007-2010 " msgstr "" +"%s %s: %s\n" +"Copyright (c) 2007-2010 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" "widget \"%s\" not found for argument #1.\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s():\n" +"виджет \"%s\" не найден для аргумента #1.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" "widget \"%s\" has no signal named \"%s\".\n" msgstr "" +"Ошибка в модуле \"%s\" в функции %s() аргумент #2:\n" +"в виджете \"%s\" нет сигнала с названием \"%s\".\n" #: ../geanymacro/src/geanymacro.c:55 -#, fuzzy msgid "Cut to Clipboard" -msgstr "Скопировать полный путь в буфер обмена" +msgstr "Вырезать в буфер обмена" #: ../geanymacro/src/geanymacro.c:56 -#, fuzzy msgid "Copy to Clipboard" -msgstr "Скопировать полный путь в буфер обмена" +msgstr "Скопировать в буфер обмена" #: ../geanymacro/src/geanymacro.c:57 msgid "Paste from Clipboard" -msgstr "" +msgstr "Вставить из буфера обмена" #: ../geanymacro/src/geanymacro.c:58 msgid "Cut current line to Clipboard" -msgstr "" +msgstr "Вырезать текущую строку в буфер обмена" #: ../geanymacro/src/geanymacro.c:59 -#, fuzzy msgid "Copy current line to Clipboard" -msgstr "Скопировать полный путь в буфер обмена" +msgstr "Скопировать текущую строку в буфер обмена" #: ../geanymacro/src/geanymacro.c:61 msgid "Delete character to the left" -msgstr "" +msgstr "Удалить символ слева" #: ../geanymacro/src/geanymacro.c:62 msgid "Delete character to the right" -msgstr "" +msgstr "Удалить символ справа" #: ../geanymacro/src/geanymacro.c:63 msgid "Delete character to the left (but not newline)" -msgstr "" +msgstr "Удалить символ слева (но не новую строку)" #: ../geanymacro/src/geanymacro.c:64 msgid "Delete up to start of word to the Left" -msgstr "" +msgstr "Удалить до начала слова слева" #: ../geanymacro/src/geanymacro.c:65 msgid "Delete up to start of word to the Right" -msgstr "" +msgstr "Удалить до начала слова справа" #: ../geanymacro/src/geanymacro.c:66 msgid "Delete up to end of word to the Right" -msgstr "" +msgstr "Удалить до конца слова справа" #: ../geanymacro/src/geanymacro.c:67 -#, fuzzy msgid "Delete to beginning of line" -msgstr "Выделить до строки" +msgstr "Удалить до начала строки" #: ../geanymacro/src/geanymacro.c:68 -#, fuzzy msgid "Delete to end of line" -msgstr "Выделить до строки" +msgstr "Удалить до конца строки" #: ../geanymacro/src/geanymacro.c:69 -#, fuzzy msgid "Delete current line" -msgstr "Выделить до строки" +msgstr "Удалить текущую строку" #: ../geanymacro/src/geanymacro.c:70 msgid "Backwards Tab (deletes tab if nothing after it)" -msgstr "" +msgstr "Отмена отступа (удаляет отступ если после него ничего нет)" #: ../geanymacro/src/geanymacro.c:72 msgid "Scroll Display down a line" -msgstr "" +msgstr "Прокрутить экран вниз на одну строку" #: ../geanymacro/src/geanymacro.c:73 msgid "Scroll Display up a line" -msgstr "" +msgstr "Прокрутить экран вверх на одну строку" #: ../geanymacro/src/geanymacro.c:74 -#, fuzzy msgid "Zoom view in" -msgstr "Увеличить" +msgstr "Увеличить масштаб" #: ../geanymacro/src/geanymacro.c:75 -#, fuzzy msgid "Zoom view out" -msgstr "Уменьшить" +msgstr "Уменьшить масштаб" #: ../geanymacro/src/geanymacro.c:77 msgid "Move Cursor Down" -msgstr "" +msgstr "Переместить курсор вниз" #: ../geanymacro/src/geanymacro.c:78 msgid "Move Cursor Up" -msgstr "" +msgstr "Переместить курсор вверх" #: ../geanymacro/src/geanymacro.c:79 msgid "Move Cursor Left" -msgstr "" +msgstr "Переместить курсор влево" #: ../geanymacro/src/geanymacro.c:80 msgid "Move Cursor Right" -msgstr "" +msgstr "Переместить курсор вправо" #: ../geanymacro/src/geanymacro.c:81 msgid "Move Cursor to start of Word to the Left" -msgstr "" +msgstr "Переместить курсор к началу слова слева" #: ../geanymacro/src/geanymacro.c:82 msgid "Move Cursor to start of Word to the Right" -msgstr "" +msgstr "Переместить курсор к началу слова справа" #: ../geanymacro/src/geanymacro.c:83 msgid "Move Cursor to start of Part of Word to the Left" -msgstr "" +msgstr "Переместить курсор к началу части слова слева" #: ../geanymacro/src/geanymacro.c:84 msgid "Move Cursor to start of Part of Word to the Right" -msgstr "" +msgstr "Переместить курсор к началу части слова справа" #: ../geanymacro/src/geanymacro.c:85 msgid "Move Cursor to start of line" -msgstr "" +msgstr "Переместить курсор к началу строки" #: ../geanymacro/src/geanymacro.c:86 msgid "Move Cursor to end of line" -msgstr "" +msgstr "Переместить курсор к концу строки" #: ../geanymacro/src/geanymacro.c:87 msgid "Move Cursor to 1st line of Document" -msgstr "" +msgstr "Переместить курсор к первой строке документа" #: ../geanymacro/src/geanymacro.c:88 -#, fuzzy msgid "Move Cursor to last line of document" -msgstr "В документе отсутствуют теги" +msgstr "Переместить курсор к последней строке документа" #: ../geanymacro/src/geanymacro.c:89 msgid "Move Cursor up one Page" -msgstr "" +msgstr "Переместить курсор на одну страницу вверх" #: ../geanymacro/src/geanymacro.c:90 msgid "Move Cursor down one Page" -msgstr "" +msgstr "Переместить курсор на одну страницу вниз" #: ../geanymacro/src/geanymacro.c:91 -#, fuzzy msgid "Move Cursor to first visible character" -msgstr "Конвертировать выделение в таблицу" +msgstr "Переместить курсор к первому видимому символу" #: ../geanymacro/src/geanymacro.c:92 msgid "Move Cursor to last visible character" -msgstr "" +msgstr "Переместить курсор к последнему видимому символу" #: ../geanymacro/src/geanymacro.c:93 msgid "" "Move Cursor to 1st non-whitespace character of line, or 1st character of " "line if already at 1st non-whitespace character" msgstr "" +"Переместить курсор к первому непробельному символу строки или к началу строки, " +"если курсор уже находится возле первого непробельного символа" #: ../geanymacro/src/geanymacro.c:95 -#, fuzzy msgid "Move Cursor to beginning of next paragraph" -msgstr "Конвертировать выделение в таблицу" +msgstr "Переместить курсор к началу следующего абзаца" #: ../geanymacro/src/geanymacro.c:96 msgid "Move Cursor up to beginning of current/previous paragraph" -msgstr "" +msgstr "Переместить курсор к началу текущего/предыдущего абзаца" #: ../geanymacro/src/geanymacro.c:97 msgid "Move Cursor to end of Word to the Left" -msgstr "" +msgstr "Переместить курсор к концу слова слева" #: ../geanymacro/src/geanymacro.c:98 msgid "Move Cursor to end of Word to the Right" -msgstr "" +msgstr "Переместить курсор к концу слова справа" #: ../geanymacro/src/geanymacro.c:100 -#, fuzzy msgid "Extend Selection down a line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение вниз на одну строку" #: ../geanymacro/src/geanymacro.c:101 -#, fuzzy msgid "Extend Selection up a line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение вверх на одну строку" #: ../geanymacro/src/geanymacro.c:102 -#, fuzzy msgid "Extend Selection Left a line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение влево" #: ../geanymacro/src/geanymacro.c:103 -#, fuzzy msgid "Extend Selection Right a line" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Расширить выделение вправо" #: ../geanymacro/src/geanymacro.c:104 -#, fuzzy msgid "Extend Selection to start of Word to the Left" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала слова слева" #: ../geanymacro/src/geanymacro.c:105 -#, fuzzy msgid "Extend Selection to start of Word to the Right" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала слова справа" #: ../geanymacro/src/geanymacro.c:106 -#, fuzzy msgid "Extend Selection to start of Part of Word to the Left" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала части слова слева" #: ../geanymacro/src/geanymacro.c:107 -#, fuzzy msgid "Extend Selection to start of Part of Word to the Right" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала части слова справа" #: ../geanymacro/src/geanymacro.c:108 -#, fuzzy msgid "Extend Selection to start of line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала строки" #: ../geanymacro/src/geanymacro.c:109 -#, fuzzy msgid "Extend Selection to end of line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до конца строки" #: ../geanymacro/src/geanymacro.c:110 -#, fuzzy msgid "Extend Selection to start of document" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала документа" #: ../geanymacro/src/geanymacro.c:111 -#, fuzzy msgid "Extend Selection to end of document" -msgstr "В документе отсутствуют теги" +msgstr "Расширить выделение до конца документа" #: ../geanymacro/src/geanymacro.c:112 -#, fuzzy msgid "Extend Selection up one Page" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение на одну страницу вверх" #: ../geanymacro/src/geanymacro.c:113 -#, fuzzy msgid "Extend Selection down one Page" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение на одну страницу вниз" #: ../geanymacro/src/geanymacro.c:114 -#, fuzzy msgid "Extend Selection to fist visible character" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до первого видимого символа" #: ../geanymacro/src/geanymacro.c:115 -#, fuzzy msgid "Extend Selection to last visible character" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до последнего видимого символа" #: ../geanymacro/src/geanymacro.c:116 msgid "" "Extend Selection to 1st non-whitespace character of line, or 1st character " "of line if already at 1st non-whitespace character" msgstr "" +"Расширить выделение до первого непробельного символа строки или до начала " +"строки, если выделение уже находится возле первого непробельного символа" #: ../geanymacro/src/geanymacro.c:118 -#, fuzzy msgid "Extend Selection to beginning of next paragraph" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить выделение до начала следующего абзаца" #: ../geanymacro/src/geanymacro.c:119 msgid "Extend Selection up to beginning of current/previous paragraph" -msgstr "" +msgstr "Расширить выделение до начала текущего/следующего абзаца" #: ../geanymacro/src/geanymacro.c:120 -#, fuzzy msgid "Extend Selection to end of Word to the Left" -msgstr "В документе отсутствуют теги" +msgstr "Расширить выделение до конца слова слева" #: ../geanymacro/src/geanymacro.c:121 -#, fuzzy msgid "Extend Selection to end of Word to the Right" -msgstr "В документе отсутствуют теги" +msgstr "Расширить выделение до конца слова справа" #: ../geanymacro/src/geanymacro.c:123 -#, fuzzy msgid "Extend Rectangular Selection down a line" -msgstr "Прямоугольное выделение до анкера" +msgstr "Расширить прямоугольное выделение на одну строку вниз" #: ../geanymacro/src/geanymacro.c:124 -#, fuzzy msgid "Extend Rectangular Selection up a line" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Расширить прямоугольное выделение на одну строку вверх" #: ../geanymacro/src/geanymacro.c:125 -#, fuzzy msgid "Extend Rectangular Selection Left a line" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Расширить прямоугольное выделение влево" #: ../geanymacro/src/geanymacro.c:126 -#, fuzzy msgid "Extend Rectangular Selection Right a line" -msgstr "Сдвинить Выделение влево и вправо" +msgstr "Расширить прямоугольное выделение вправо" #: ../geanymacro/src/geanymacro.c:127 -#, fuzzy msgid "Extend Rectangular Selection to start of line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить прямоугольное выделение до начала строки" #: ../geanymacro/src/geanymacro.c:128 -#, fuzzy msgid "Extend Rectangular Selection to end of line" -msgstr "Прямоугольное выделение до анкера" +msgstr "Расширить прямоугольное выделение до конца строки" #: ../geanymacro/src/geanymacro.c:129 -#, fuzzy msgid "Extend Rectangular Selection up one Page" -msgstr "Конвертировать выделение в таблицу" +msgstr "Расширить прямоугольное выделение на одну страницу вверх" #: ../geanymacro/src/geanymacro.c:130 -#, fuzzy msgid "Extend Rectangular Selection down one Page" -msgstr "Прямоугольное выделение до анкера" +msgstr "Расширить прямоугольное выделение на одну страницу вниз" #: ../geanymacro/src/geanymacro.c:131 msgid "" "Extend Rectangular Selection to 1st non-whitespace character of line, or 1st " "character of line if already at 1st non-whitespace character" msgstr "" +"Расширить прямоугольное выделение до первого непробельного символа строки " +"или до начала строки, если выделение уже находится возле первого " +"непробельного символа" #: ../geanymacro/src/geanymacro.c:134 -#, fuzzy msgid "Cancel Selection" -msgstr "Расширенное выделение" +msgstr "Сбросить выделение" #: ../geanymacro/src/geanymacro.c:136 msgid "Toggle Insert/Overwrite mode" -msgstr "" +msgstr "Переключить режим вставки/замены" #: ../geanymacro/src/geanymacro.c:137 ../pretty-printer/src/ConfigUI.c:239 msgid "Tab" @@ -3093,34 +3096,48 @@ #: ../geanymacro/src/geanymacro.c:138 msgid "Newline" -msgstr "" +msgstr "Новая строка" #: ../geanymacro/src/geanymacro.c:140 ../geanymacro/src/geanymacro.c:1625 #, c-format msgid "Insert/replace with \"\"" -msgstr "" +msgstr "Вставить/заменить на \"\"" #: ../geanymacro/src/geanymacro.c:142 msgid "Swap current line wih one above" -msgstr "" +msgstr "Поменять текущую строку и строку сверху местами" #: ../geanymacro/src/geanymacro.c:143 msgid "Change selected text to lowercase" -msgstr "" +msgstr "Конвертировать выделенный текст в нижний регистр" #: ../geanymacro/src/geanymacro.c:144 msgid "Change selected text to uppercase" -msgstr "" +msgstr "Конвертировать выделенный текст в верхний регистр" #: ../geanymacro/src/geanymacro.c:146 msgid "Insert duplicate of current line below" -msgstr "" +msgstr "Вставить дубликат строки сверху" #: ../geanymacro/src/geanymacro.c:147 msgid "" "Insert duplicate of selected text after selection. If nothing selected, " "duplicate line" msgstr "" +"Вставить дубликат выделенного текста после выделения. Если выделение пусто, " +"дублировать строку" + +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "Искать следующие \"\"" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "Искать предыдущие \"\"" + +#: ../geanymacro/src/geanymacro.c:152 +msgid "Set start of search to beginning of selection" +msgstr "Установить начало поиска в начало выделения" #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" @@ -3131,9 +3148,8 @@ msgstr "Макросы для Geany" #: ../geanymacro/src/geanymacro.c:369 -#, fuzzy msgid "No text in clipboard!" -msgstr "Скопировать полный путь в буфер обмена" +msgstr "Буфер обмена пуст!" #: ../geanymacro/src/geanymacro.c:546 #, c-format @@ -3162,16 +3178,20 @@ "This Plugin implements Macros in Geany.\n" "\n" msgstr "" +"Модуль, добавляющий поддержку макросов в Geany.\n" +"\n" #: ../geanymacro/src/geanymacro.c:856 msgid "This plugin allows you to record and use your own macros. " -msgstr "" +msgstr "Этот плагин позволяет записывать и использовать свои макросы. " #: ../geanymacro/src/geanymacro.c:857 msgid "" "These are sequences of actions that can then be repeated with a single key " "combination. " msgstr "" +"Макрос - это последовательность действий, которая может быть повторена" +" по нажатию горячей клавиши. " #: ../geanymacro/src/geanymacro.c:858 msgid "" @@ -3179,58 +3199,72 @@ "characters, you could simply start recording, press End, Backspace, " "Backspace, down line and then stop recording. " msgstr "" +"Например, если у вас множество строк, в которых вы хотите удалить " +"два последних символа, вы можете просто начать запись, нажать End, Backspace, " +"Backspace, перейти на строку вниз и остановить запись. " #: ../geanymacro/src/geanymacro.c:860 msgid "" "Then simply trigger the macro and it would automatically edit the line and " "move to the next. " msgstr "" +"Затем просто активируйте макрос и он автоматически отредактирует строку и " +"перейдёт к следующей. " #: ../geanymacro/src/geanymacro.c:861 msgid "" "Select Record Macro from the Tools menu and you will be prompted with a " "dialog box. " msgstr "" +"Выберите Запись макроса в меню Инструменты и откроется диалоговое окно. " #: ../geanymacro/src/geanymacro.c:862 msgid "" "You need to specify a key combination that isn't being used, and a name for " "the macro to help you identify it. " msgstr "" +"Установите неиспользуемое сочетание клавиш и название макроса, чтобы легко " +"идентифицировать его. " #: ../geanymacro/src/geanymacro.c:864 msgid "Then press Record. " -msgstr "" +msgstr "Затем нажмите Запись. " #: ../geanymacro/src/geanymacro.c:865 msgid "" "What you do in the editor is then recorded until you select Stop Recording " "Macro from the Tools menu. " msgstr "" +"Всё, что вы делаете в редакторе, записывается до тех пор пока не будет выбран " +"пункт Остановить запись из меню Инструменты. " #: ../geanymacro/src/geanymacro.c:867 msgid "Simply pressing the specified key combination will re-run the macro. " -msgstr "" +msgstr "Простое нажатие указанного сочетания клавиш запустит макрос. " #: ../geanymacro/src/geanymacro.c:868 msgid "To edit the macros you have, select Edit Macro from the Tools menu. " -msgstr "" +msgstr "Для того чтобы отредактировать макрос, выберите Редактировать макрос " +"в меню Инструменты. " #: ../geanymacro/src/geanymacro.c:869 msgid "You can select a macro and delete it, or re-record it. " -msgstr "" +msgstr "Вы можете выбрать макрос и удалить его или перезаписать его. " #: ../geanymacro/src/geanymacro.c:870 msgid "" "You can also click on a macro's name and change it, or the key combination " "and re-define that assuming that it's not already in use. " msgstr "" +"Вы также можете щёлкнуть по имени макроса и изменить его или по комбинации " +"клавиш и изменить её при условии, что она не используется. " #: ../geanymacro/src/geanymacro.c:872 msgid "" "Selecting the edit option allows you to view all the individual elements " "that make up the macro. " msgstr "" +"Щёлкните по кнопке Редактировать, чтобы увидеть составные элементы макроса. " #: ../geanymacro/src/geanymacro.c:874 msgid "" @@ -3239,6 +3273,10 @@ "that replaces the selected text, or is inserted.\n" "\n" msgstr "" +"Вы можете выбрать другую команду для каждого элемента, переместить её, " +"добавить новый элемента, удалить элемент или, если это вставка/замена, вы " +"можете редактировать текст, который будут вставлен или заменён.\n" +"\n" #: ../geanymacro/src/geanymacro.c:878 msgid "" @@ -3246,6 +3284,9 @@ "recorded, and won't be replayed when the macro is re-run.\n" "\n" msgstr "" +"Единственное что нужно учитывать, что действия отмены и возврата не " +"записываются и не будут воспроизводиться при запуске макроса.\n" +"\n" #: ../geanymacro/src/geanymacro.c:881 msgid "" @@ -3253,10 +3294,12 @@ "Manager under the Tools menu, selecting this plugin, and cliking " "Preferences. " msgstr "" +"Вы можете изменить стандартное поведение модуля, выделив модуль в Менеджере " +"модулей в меню Инструменты и щёлкнув по кнопке Настройки. " #: ../geanymacro/src/geanymacro.c:883 msgid "You can change:\n" -msgstr "" +msgstr "Вы можете изменить:\n" #: ../geanymacro/src/geanymacro.c:884 msgid "" @@ -3264,6 +3307,9 @@ "recorded macros and reload them for use the next time you open Geany, if not " "they will be lost when Geany is closed.\n" msgstr "" +"Сохранить макрос при закрытии Geany - если выбрано, Geany будет сохранять " +"записанные макросы и загружать их в следующий раз, когда вы откроете Geany. " +"Если не выбрано, макросы будут утеряны после закрытия Geany\n" #: ../geanymacro/src/geanymacro.c:887 msgid "" @@ -3273,6 +3319,10 @@ "otherwise it will simply erase any existing macros with the same name, or " "the same key trigger combination." msgstr "" +"Спрашивать при замене существующего макроса - если выбрано и вы попытаетесь " +"записать макрос поверх существующего, будет предложено либо перезаписать его " +"либо выбрать другое имя или сочетание клавиш для макроса, в противном случае " +"существующий макрос с таким же именем или сочетанием клавиш будет удалён." #. create dialog box #: ../geanymacro/src/geanymacro.c:1057 @@ -3322,136 +3372,124 @@ #: ../geanymacro/src/geanymacro.c:1333 #, c-format msgid "Search %s, looking for %s%s%s.%s%s%s%s%s" -msgstr "" +msgstr "Поиск %s, ищем %s%s%s.%s%s%s%s%s" #. create dialog box #: ../geanymacro/src/geanymacro.c:1388 -#, fuzzy msgid "Search Options:" -msgstr "Маркеры поиска:" +msgstr "Параметры поиска:" #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" -msgstr "" +msgstr "_Ok" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 -#, fuzzy +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" -msgstr "Отмена" +msgstr "_Отмена" #: ../geanymacro/src/geanymacro.c:1403 -#, fuzzy msgid "Search Forwards" -msgstr "Искать:" +msgstr "Поиск вперёд" #: ../geanymacro/src/geanymacro.c:1404 -#, fuzzy msgid "Search Backwards" -msgstr "Маркеры поиска:" +msgstr "Поиск назад" #. create checkbox to check for search options #: ../geanymacro/src/geanymacro.c:1410 -#, fuzzy msgid "Search for contents of clipboard" -msgstr "Скопировать полный путь в буфер обмена" +msgstr "Поиск по содержимому буфера обмена" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Искать:" #. create checkbox to check for search options #: ../geanymacro/src/geanymacro.c:1442 -#, fuzzy msgid "Search is case sensitive" -msgstr "С учётом регистра" +msgstr "Искать с учётом регистра" #: ../geanymacro/src/geanymacro.c:1447 -#, fuzzy msgid "Search for whole word" -msgstr "Искать:" +msgstr "Искать слово целиком" #: ../geanymacro/src/geanymacro.c:1452 -#, fuzzy msgid "Search for start of word" -msgstr "Искать:" +msgstr "Искать с начала слова" #: ../geanymacro/src/geanymacro.c:1457 -#, fuzzy msgid "Search text is regular expression" -msgstr "Недействительное регулярное выражение: %s" +msgstr "Строка поиска является регулярным выражением" #: ../geanymacro/src/geanymacro.c:1462 msgid "Search text is POSIX compatible" -msgstr "" +msgstr "Поиск текста совместимый с POSIX" #. create dialog box #: ../geanymacro/src/geanymacro.c:1531 msgid "Edit Insert/Replace Text" -msgstr "" +msgstr "Редактировать текст вставки/замены" #: ../geanymacro/src/geanymacro.c:1544 -#, fuzzy msgid "Text:" -msgstr "Консоль:" +msgstr "Текст:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" -msgstr "" +msgstr "Вставить заменить \"%s\"" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 -#, fuzzy, c-format +#: ../geanymacro/src/geanymacro.c:1735 +#, c-format msgid "Edit: %s" -msgstr "Редактировать макрос" +msgstr "Редактировать: %s" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" -msgstr "" +msgstr "Событие" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" -msgstr "" +msgstr "Переместить _вверх" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" -msgstr "" +msgstr "Переместить в_низ" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" -msgstr "" +msgstr "_Добавить выше" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" -msgstr "" +msgstr "Д_обавить ниже" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 -#, fuzzy +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" -msgstr "Удалить" +msgstr "_Удалить" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "Редактировать макрос" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "Имя макроса" # read/write/both -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "Комбинация клавиш" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 -#, fuzzy +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "Перезаписать" @@ -3470,178 +3508,222 @@ msgid "_Edit Macros" msgstr "Редактировать макрос" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" +"Модуль фильтрующих мини-сценариев Geany (GMS)\n" +"Данный модуль предназначен для фильтрации мини-скриптами:\n" +" o выделенного текста,\n" +" o всего текущего документа,\n" +" o всех документов в текущем сеансе.\n" +"\n" +"Фильтры могут быть следующих видов:\n" +" o сценарий Unix Shell,\n" +" o сценарий perl,\n" +" o сценарий python,\n" +" o команда sed,\n" +" o сценарий awk.\n" +"\n" +"АВТОР\n" +" Разработал Pascal BURLOT (Декабрь 2008)\n" +"\n" +"ЛИЦЕНЗИЯ:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" -msgstr "" +msgstr "Загрузить файл мини-сценария" #: ../geanyminiscript/src/gms_gui.c:310 msgid "Save Mini-Script File" -msgstr "" +msgstr "Сохранить файл мини-сценария" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" -msgstr "" +msgstr "Фильтрующий мини-сценарий" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" -msgstr "" +msgstr "Очистить окно мини-сценария" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" -msgstr "" +msgstr "Загрузить мини-сценарий в текущее окно" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" -msgstr "" +msgstr "Сохранить мини-сценарий в файл" -#: ../geanyminiscript/src/gms_gui.c:461 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" -msgstr "Отобразить дополнительную информацию о выбранном элементе." +msgstr "Отобразить дополнительную информацию о модуле мини-сценариев" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" -msgstr "" +msgstr "выберите тип мини-сценария" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" -msgstr "" +msgstr "входные данные фильтра" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" -msgstr "" +msgstr "выберите тип входных данных для фильтрующего мини-сценария" -#: ../geanyminiscript/src/gms_gui.c:508 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" -msgstr "Выбрать шрифт" +msgstr "выделение" -#: ../geanyminiscript/src/gms_gui.c:509 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" -msgstr "Отправить файл" +msgstr "документ" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" -msgstr "" +msgstr "сеанс" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" -msgstr "" +msgstr "вывод фильтра" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" -msgstr "" +msgstr "выберите тип выходных данных для фильтрующего мини-сценария" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." -msgstr "" +msgstr "Текущий документ" -#: ../geanyminiscript/src/gms_gui.c:528 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." -msgstr "Новый проект" +msgstr "Новый документ" -#: ../geanyminiscript/src/gms_gui.c:749 -#, fuzzy +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" -msgstr "Невозможно загрузить конфигурацию: %s" +msgstr "настройки сценария" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 msgid "Mini Script" -msgstr "" +msgstr "Мини сценарии" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" +"Применяет сценарии-фильтры к текущему выделению или документу(ам)" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" -msgstr "" +msgstr "Pascal BURLOT, пользователь Geany" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" -msgstr "" +msgstr "Мини-сценарий" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" -msgstr "" +msgstr "Нумерованные закладки для Geany" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." -msgstr "" +msgstr "Невозможно применить все маркеры к '%s' так как они все используются." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" -msgstr "" +msgstr "_OK" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " "be unreliable and will not be loaded.\n" "Press Ignore to try an load markers anyway." msgstr "" +"'%s' был отредактирован с момента последнего сохранения в Geany. Положения " +"могут не соответствовать действительности и не будут загружены.\n" +"Нажмите Игнорировать, чтобы попробовать загрузить маркеры в любом случае." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 -#, fuzzy +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 msgid "_Ignore" -msgstr "З_акрыть все" +msgstr "_Игнорировать" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" -msgstr "" +msgstr "Запоминать состояние свернутых блоков кода" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" -msgstr "" +msgstr "Центрировать вид при переходе к закладке" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 -#, fuzzy +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 msgid "Move to start of line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Переходить в начало строки" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" -msgstr "" +msgstr "Переходить к сохранённой позиции в строке" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" -msgstr "" +msgstr "Перемещение в текущей строке" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 -#, fuzzy +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 msgid "Move to End of line" -msgstr "Конвертировать выделение в таблицу" +msgstr "Переходить в конец строки" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" -msgstr "" +msgstr "Сохранять настройки файла вместе с настройками программы" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" -msgstr "" +msgstr "Сохранять настройки файла с суффиксом" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" -msgstr "" +msgstr "Запоминать стандартные закладки" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" -msgstr "" +msgstr "Помощь по нумерованным закладкам" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3656,15 +3738,29 @@ "shown, but you can have more than one bookmark per line. To move to a " "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" +"Данный модуль добавляет в Geany нумерованные закладки, а также возможность " +"сохранять состояние свернутых блоков кода и позиции стандартных " +"ненумерованных закладок при сохранении файла.\n" +"\n" +"Он позволяет использовать до 10 нумерованных закладок. Чтобы установить " +"нумерованную закладку, нажмите сочетание клавиш Ctrl+Shift+число от 0 до 9. " +"Вы увидите маркер рядом с номером строки. Если нажать сочетание " +"Ctrl+Shift+число на строке, в которой уже есть закладка с таким номером, " +"закладка удаляется, в противном случае закладка перемещается, если она уже " +"была назначена на другой строке или создаётся, если она ещё не была " +"установлена. Возле номера строки отображается только последняя закладка, " +"но можно устанавливать более одной закладки на одну строку. Чтобы перейти " +"к ранее установленной закладке, нажмите сочетание клавиш " +"Ctrl+число от 0 до 9." -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." -msgstr "" +msgstr "Невозможно применить маркеры так как они все уже используются." #: ../geanypg/src/decrypt_cb.c:33 ../geanypg/src/encrypt_cb.c:32 #: ../geanypg/src/sign_cb.c:33 msgid "couldn't create tempfile" -msgstr "" +msgstr "не удалось создать временный файл" #: ../geanypg/src/encrypt_cb.c:84 #, c-format @@ -3676,182 +3772,187 @@ "\n" "Are you *really* sure you want to use this key anyway?" msgstr "" +"Ключ с ID пользователя \"%s\" имеет достоверность \"%s\".\n" +"\n" +"ВНИМАНИЕ: Невозможно гарантировать, что этот ключ принадлежит пользователю " +"таким ID.\n" +"\n" +"Вы *действительно* уверены, что хотите использовать этот ключ в любом случае?" #: ../geanypg/src/encrypt_cb.c:96 msgid "" "No recipients were selected,\n" "use symetric cipher?" msgstr "" +"Не выбран ни один из получателей,\n" +"использовать симметричное шифрование?" #: ../geanypg/src/geanypg.c:37 msgid "gpg encryption plugin for geany" -msgstr "" +msgstr "модуль шифрования gpg для geany" #: ../geanypg/src/geanypg.c:39 msgid "Hans Alves " -msgstr "" +msgstr "Hans Alves " #: ../geanypg/src/geanypg.c:47 msgid "Using libgpgme version:" -msgstr "" +msgstr "Используется libgpgme версии:" #: ../geanypg/src/geanypg.c:60 ../geanypg/src/geanypg.c:61 -#, fuzzy msgid "Error from" -msgstr "Ошибка:" +msgstr "Ошибка из" #: ../geanypg/src/geanypg.c:86 msgid "Encrypt" -msgstr "" +msgstr "Зашифровать" #: ../geanypg/src/geanypg.c:87 msgid "Sign" -msgstr "" +msgstr "Подписать" #: ../geanypg/src/geanypg.c:88 msgid "Decrypt / Verify" -msgstr "" +msgstr "Расшифровать / проверить" #: ../geanypg/src/geanypg.c:89 msgid "Verify detached signature" -msgstr "" +msgstr "Проверить подпись" #: ../geanypg/src/key_selection_dialog.c:152 -#, fuzzy msgid "Please select any recipients" -msgstr "Удалить контрольную точку?" +msgstr "Выберите получателей" #: ../geanypg/src/key_selection_dialog.c:154 msgid "Sign the message as:" -msgstr "" +msgstr "Подписать сообщение как:" #: ../geanypg/src/key_selection_dialog.c:162 -#, fuzzy msgid "Select recipients" -msgstr "Выбрать шрифт" +msgstr "Выбрать получателей" #: ../geanypg/src/key_selection_dialog.c:224 msgid "Choose a key to sign with:" -msgstr "" +msgstr "Выберите ключ для подписи:" #: ../geanypg/src/key_selection_dialog.c:232 -#, fuzzy msgid "Select signer" -msgstr "Выбрать шрифт" +msgstr "Выберите подписывающегося" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." -msgstr "" +msgstr "Не удалось использовать pinentry." -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." -msgstr "" +msgstr "Неожиданный вывод из pinentry." #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" -msgstr "" +msgstr "Пароль" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" -msgstr "" +msgstr "Пароль" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" -msgstr "" +msgstr "Введите пароль для" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" -msgstr "" +msgstr "pinentry вернул ошибку" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." -msgstr "" +msgstr "Неожиданная ошибка от pinentry." -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." msgstr "" +"Ошибка, ввод пароля без использования gpg-agent не поддерживается в Windows." #: ../geanypg/src/verify_aux.c:53 msgid "a key with fingerprint" -msgstr "" +msgstr "ключ с отпечатком" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "неизвестно" #: ../geanypg/src/verify_aux.c:67 msgid "undefined" -msgstr "" +msgstr "неопределено" #: ../geanypg/src/verify_aux.c:68 msgid "never" -msgstr "" +msgstr "никогда" #: ../geanypg/src/verify_aux.c:69 msgid "marginal" -msgstr "" +msgstr "ограниченно" #: ../geanypg/src/verify_aux.c:70 msgid "full" -msgstr "" +msgstr "полное" #: ../geanypg/src/verify_aux.c:71 msgid "ultimate" -msgstr "" +msgstr "абсолютно" #: ../geanypg/src/verify_aux.c:72 ../geanypg/src/verify_aux.c:74 msgid "[bad validity value]" -msgstr "" +msgstr "[плохое значение достоверности]" #. buffer should be more than 105 bytes long #: ../geanypg/src/verify_aux.c:79 msgid " valid" -msgstr "" +msgstr " действительный" #: ../geanypg/src/verify_aux.c:80 msgid " green" -msgstr "" +msgstr " зелёный" #: ../geanypg/src/verify_aux.c:81 msgid " red" -msgstr "" +msgstr " красный" #: ../geanypg/src/verify_aux.c:82 msgid " revoked" -msgstr "" +msgstr " отозван" #: ../geanypg/src/verify_aux.c:83 msgid " key-expired" -msgstr "" +msgstr " ключ прострочен" #: ../geanypg/src/verify_aux.c:84 msgid " sig-expired" -msgstr "" +msgstr " подпись просрочена" #: ../geanypg/src/verify_aux.c:85 msgid " key-missing" -msgstr "" +msgstr " ключ отсутствует" #: ../geanypg/src/verify_aux.c:86 msgid " crl-missing" -msgstr "" +msgstr " CRL отсутствует" #: ../geanypg/src/verify_aux.c:87 msgid " crl-too-old" -msgstr "" +msgstr " CRL слишком старый" #: ../geanypg/src/verify_aux.c:88 msgid " bad-policy" -msgstr "" +msgstr " плохая политика" #: ../geanypg/src/verify_aux.c:89 msgid " sys-error" -msgstr "" +msgstr " системная ошибка" #: ../geanypg/src/verify_aux.c:96 #, c-format @@ -3868,77 +3969,86 @@ "other flags:%s%s\n" "notations .: %s\n" msgstr "" +"статус ....: %s\n" +"резюме ....:%s\n" +"отпечаток .: %s\n" +"создан ....: %sистекает ..: %sдостоверн. : %s\n" +"причина ...: %s\n" +"ключ алг. .: %s\n" +"хэш-функ. .: %s\n" +"pka адрес .: %s\n" +"pka довер. : %s\n" +"др. флаги .:%s%s\n" +"прим. .....: %s\n" #: ../geanypg/src/verify_aux.c:119 ../geanypg/src/verify_aux.c:124 -#, fuzzy msgid "Unknown\n" -msgstr "(неизвестно)" +msgstr "Неизвестно\n" #: ../geanypg/src/verify_aux.c:129 ../geanypg/src/verify_aux.c:136 #: ../geanypg/src/verify_aux.c:147 ../geanypg/src/verify_aux.c:154 msgid "[None]" -msgstr "" +msgstr "[Нет]" #: ../geanypg/src/verify_aux.c:134 ../geanypg/src/verify_aux.c:135 #: ../geanypg/src/verify_aux.c:152 ../geanypg/src/verify_aux.c:153 -#, fuzzy msgid "Unknown" -msgstr "(неизвестно)" +msgstr "Неизвестно" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "n/a" -msgstr "" +msgstr "н/д" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "bad" -msgstr "" +msgstr "плохой" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "okay" -msgstr "" +msgstr "хороший" #: ../geanypg/src/verify_aux.c:137 ../geanypg/src/verify_aux.c:155 msgid "RFU" -msgstr "" +msgstr "RFU" #: ../geanypg/src/verify_aux.c:138 ../geanypg/src/verify_aux.c:156 msgid " wrong-key-usage" -msgstr "" +msgstr " некорректное использование ключа" #: ../geanypg/src/verify_aux.c:139 ../geanypg/src/verify_aux.c:156 msgid " chain-model" -msgstr "" +msgstr " модель цепочки" #: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 msgid "yes" -msgstr "" +msgstr "да" #: ../geanypg/src/verify_aux.c:140 ../geanypg/src/verify_aux.c:157 msgid "no" -msgstr "" +msgstr "нет" #: ../geanypg/src/verify_aux.c:175 msgid "Found a signature from" -msgstr "" +msgstr "Обнаружена подпись от" #: ../geanypg/src/verify_aux.c:178 msgid "Signature" -msgstr "" +msgstr "Подпись" #: ../geanypg/src/verify_aux.c:201 msgid "Could not find verification results" -msgstr "" +msgstr "Не удалось обнаружить результаты проверки" #: ../geanypg/src/verify_aux.c:202 msgid "Error, could not find verification results" -msgstr "" +msgstr "Ошибка, не удалось найти результаты проверки" #: ../geanypg/src/verify_cb.c:27 msgid "Open a signature file" -msgstr "" +msgstr "Открыть файл с подписью" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Проект" @@ -3948,12 +4058,11 @@ #: ../geanyprj/src/geanyprj.c:224 msgid "Find a text in geanyprj's project" -msgstr "" +msgstr "Найти текст в проекте geanyprj" #: ../geanyprj/src/geanyprj.c:238 -#, fuzzy msgid "Display sidebar" -msgstr "Скрыть боковую панель" +msgstr "Показать боковую панель" #: ../geanyprj/src/menu.c:92 msgid "Project Preferences" @@ -3968,7 +4077,7 @@ msgid "C_reate" msgstr "Создать" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "Имя:" @@ -4045,7 +4154,7 @@ msgid "Remove File" msgstr "Удалить файл" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Скрыть боковую панель" @@ -4054,6 +4163,48 @@ msgid "Project \"%s\" opened." msgstr "Проект \"%s\" открыт." +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "GeanyPy" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "Поддержка модулей на Python" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Невозможно загрузить библиотеку Python: %s." + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "Не удалось импортировать управляющий модуль" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "Не удалось получить PluginManager из управляющего модуля" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "Системный каталог с модулями не найден." + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "Невозможно создать экземпляр PluginManager" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "Невозможно получить метод show_all() в менеджере модулей" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "Невозможно создать каталог модулей Python: %s: %s" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "Менеджер модулей Python" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "Отправка почты" @@ -4074,12 +4225,12 @@ msgid "Enter the recipient's e-mail address:" msgstr "Введите электронный адрес получателя" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" "Шаблон имени файла не найден. Выполняемая команда могла завершиться неудачно" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." @@ -4087,34 +4238,33 @@ "Шаблон адреса получателя не найден. Выполняемая команда могла завершиться " "неудачно" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" "Невозможно запустить почтовую программу. Пожалуйста проверьте настройки." -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Пожалуйста, выберите почтовую программу" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Файл должен быт сохранён перед отправкой" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "Почта" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "Отправить по почте" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "Путь и опции почтового клиента:" -#: ../geanysendmail/src/geanysendmail.c:316 -#, fuzzy +#: ../geanysendmail/src/geanysendmail.c:320 msgid "" "Note: \n" "\t%f will be replaced by your file.\n" @@ -4125,36 +4275,36 @@ "\tmutt -s \"Sending '%b'\" -a \"%f\" \"%r\"" msgstr "" "Замечание: \n" -"\t\\%f будет заменено на полный путь к файла.\n" -"\t\\%r будет заменено на адрес получателя.\n" -"\t\\%b будет заменено на имя файла\n" -"\tПример:\n" -"\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" -"\tmutt -s \"Отсылаем '\\%b'\" -a \"\\%f\" \"\\%r\"" +"\t%f будет заменено на полный путь к файлу.\n" +"\t%r будет заменено на адрес получателя.\n" +"\t%b будет заменено на имя файла\n" +"\tПримеры:\n" +"\tsylpheed --attach \"%f\" --compose \"%r\"\n" +"\tmutt -s \"Отсылаем '%b'\" -a \"%f\" \"%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Показывать иконку в панели инструментов" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "" "Показывать иконку в панели инструментов для упрощения процесса отправки" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "Использовать диалог для ввода электронного адреса получателя" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Отправить файл по электронной почте" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Отправить файл" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4175,77 +4325,101 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc: ошибка s_spawn_sync: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "Файл %s: действие %s выполняется через %s." + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc: vcdiff_file_activated: Невозможно переименовать '%s' в '%s'" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Изменения не были применены." -#: ../geanyvc/src/geanyvc.c:723 -#, fuzzy +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "История не доступна" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Вы действительно хотите отменить изменения: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Вы действительно хотите добавить в репозиторий: %s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Вы действительно хотите удалиь из репозитория: %s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Вы действительно хотите обновить из репозитория: %s?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" +"Полученный список различий не может быть отображен так как " +"изменений слишком много и это может значительно замедлить интерфейс.\n" +"\n" +"Чтобы увидеть различия закройте это диалоговое окно и откройте список " +"различий в Geany непосредственно используя меню GeanyVC " +"(Базовая директория -> Разница)." + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Фиксировать изменения Да/Нет" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Статус" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Путь" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "Строка: %d позиция: %d" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Фиксировать" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "Все файлы" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Комментарий к изменениям:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "Ф_иксировать изменения" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Отсутствуют локальные изменения." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "Ошибка инициализации системы проверки правописания: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4254,11 +4428,11 @@ "В процессе установки языка для проверки орфографии произошла ошибка. " "Пожалуйста проверьте настройки. Сообщение об ошибке: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "Устанавливать флаг \"изменённый\" для вкладок созданных плагином" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4268,275 +4442,278 @@ "как модифицированный. Несмотря на то, что данная опция в некоторых случаях " "полезна, она может вызвать большое количество диалогов сохранения файла." -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "Подтверждать добавление файлов в репозиторий" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" "Показывать диалог подтверждения при добавлении новых файлов в репозиторий" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Разворачивать диалог фиксации изменений" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Максимизировать диалог фиксации изменений " -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Использовать внешнюю программу просмотра разницы" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Использовать внешнюю программу просмотра разницы для файла" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "Показывать пункты системы контроля версий в меню редактора" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "Показывать пункты меню системы контроля версий в меню редактора" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" -msgstr "" +msgstr "Разместить меню на главной панели" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" +"Располагать меню данного модуля либо внутри меню Инструменты либо " +"непосредственно на главной панели меню Geany. Изменения вступают в силу " +"только после перезапуска расширения GeanyVC" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" -msgstr "CVS" +msgstr "Включить CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" -msgstr "GIT" +msgstr "Включить GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" -msgstr "SVN" +msgstr "Включить SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" -msgstr "SVK" +msgstr "Включить SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" -msgstr "Bazaar" +msgstr "Включить Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" -msgstr "Mercurial" +msgstr "Включить Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "Язык проверки орфографии" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "Контроль версий" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Разница" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Показать разницу для текущего файла" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "Отменить изменения" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "Восстановить файл из рабочей копии (отмена локальных изменений)." #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "_Изменения" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "Показать изменения сделанные в файле по номеру ревизии и автору." #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_История" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Показать лог для текущего файла" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Оригинал" -#: ../geanyvc/src/geanyvc.c:2055 -#, fuzzy +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "Показать оригинальный файл из рабочей копии" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "Добавить в репозиторий" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Добавить файл в репозиторий" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "Удалить из репозитория" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Удалить файл из репозитория" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Директория" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Показать разницу для директории текущего файла" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "Восстановить файлы в текущей директории из рабочей копии" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Показать лог для текущей директории" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "_Базовая директория" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "Показать разницу для корневой папки рабочей копии" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Отменить все локальные изменения." -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "Показать лог для корневой папки рабочей копии" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "Фиксировать изменения" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Показать разницу для файла" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Показать разницу для директории" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "Показать разницу для корневой директории" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Фиксировать локальные изменения" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Показать статус" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Отменить изменения для файла" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Отменить изменения для директории" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Отменить изменения для корневой директории" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Обновить файл" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "Контроль версий" -#: ../geanyvc/src/geanyvc.c:2266 -#, fuzzy +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" -msgstr "Добавить в репозиторий" +msgstr "Контроль версий" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "_Статус" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." -msgstr "Показать статус " +msgstr "Показать статус." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Обновить из репозитория." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "Ф_иксировать" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Фиксировать локальные изменения" #: ../geniuspaste/src/geniuspaste.c:101 msgid "Paste your code on your favorite pastebin" -msgstr "" +msgstr "Публикуйте свой код на одну из площадок pastebin" #: ../geniuspaste/src/geniuspaste.c:222 msgid "Refusing to create blank paste" -msgstr "" +msgstr "Нельзя публиковать пустой код" #: ../geniuspaste/src/geniuspaste.c:341 msgid "" "Unable to paste the code on codepad.org\n" "Retry or select another pastebin." msgstr "" +"Невозможно опубликовать код на codepad.org\n" +"Попробуйте снова или выберите другую площадку." #: ../geniuspaste/src/geniuspaste.c:393 msgid "Paste Successful" -msgstr "" +msgstr "Опубликовано успешно" #: ../geniuspaste/src/geniuspaste.c:395 #, c-format @@ -4544,6 +4721,8 @@ "Your paste can be found here:\n" "%s" msgstr "" +"Ваш код опубликован здесь:\n" +"%s" #: ../geniuspaste/src/geniuspaste.c:403 #, c-format @@ -4551,32 +4730,32 @@ "Unable to paste the code. Check your connection and retry.\n" "Error code: %d\n" msgstr "" +"Невозможно опубликовать код. Проверьте ваше соединение и повторите снова.\n" +"Код ошибки: %d\n" #: ../geniuspaste/src/geniuspaste.c:416 msgid "There are no opened documents. Open one and retry.\n" -msgstr "" +msgstr "Не открыто ни одного документа. Откройте хотя бы один и повторите.\n" #: ../geniuspaste/src/geniuspaste.c:429 -#, fuzzy msgid "The author name field is empty!" -msgstr "идентификатор совпадения пустой" +msgstr "Поле автора пусто!" #: ../geniuspaste/src/geniuspaste.c:448 -#, fuzzy msgid "Select a pastebin:" -msgstr "Выбрать шрифт" +msgstr "Выберите площадку:" #: ../geniuspaste/src/geniuspaste.c:451 msgid "Enter the author name:" -msgstr "" +msgstr "Введите имя автора:" #: ../geniuspaste/src/geniuspaste.c:466 msgid "Show your paste in a new browser tab" -msgstr "" +msgstr "Отображать опубликованный код в новой вкладке браузера" #: ../geniuspaste/src/geniuspaste.c:488 msgid "_Paste it!" -msgstr "" +msgstr "_Опубликовать!" #: ../gproject/src/gproject-main.c:36 ../gproject/src/gproject-project.c:455 msgid "GProject" @@ -4672,98 +4851,249 @@ "Замечание: устанавливает шаблоны файлов принадлежащих проекту для " "отображения во вкладке проекта в боковой панели." -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Найти файл" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Искать внутри:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "С учётом регистра" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "Искать в полных путях" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Перезагрузить всё" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1283 msgid "Expand all" msgstr "Развернуть всё" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1287 msgid "Collapse all" msgstr "Свернуть всё" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "Следовать пути активного документа" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Развернуть всё" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Найти в файлах" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 -#, fuzzy +#: ../markdown/src/conf.c:567 msgid "Position:" -msgstr "Условие" +msgstr "Позиция:" -#: ../markdown/src/conf.c:576 -#, fuzzy +#: ../markdown/src/conf.c:573 msgid "Sidebar" -msgstr "Скрыть боковую панель" +msgstr "Боковая панель" -#: ../markdown/src/conf.c:584 -#, fuzzy +#: ../markdown/src/conf.c:581 msgid "Message Window" -msgstr "_Скрыть окно сообщений" +msgstr "Окно сообщений" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" -msgstr "" +msgstr "Шрифт:" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" -msgstr "" +msgstr "Шрифт для исходного текста:" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" -msgstr "" +msgstr "Цвет фона:" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" -msgstr "" +msgstr "Цвет шрифта:" -#: ../markdown/src/conf.c:670 -#, fuzzy +#: ../markdown/src/conf.c:663 msgid "Select Template File" -msgstr "Выделить до строки" +msgstr "Выберите шаблон" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" -msgstr "" +msgstr "Предпросмотр Markdown в реальном времени" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" -msgstr "" +msgstr "Предпросмотр Markdown" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." +msgstr "Текущий документ не является документом Markdown." + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "Подсветка парных тэгов" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "Находит и подсвечивает соответствующий открывающий/закрывающий HTML тэг" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "Помощник переводчика" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "_Предыдущая строка" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to previous string" +msgstr "Перейти к предыдущей строке" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "_Следующая строка" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to next string" +msgstr "Перейти к следующей строке" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "П_редыдущая непереведённая" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to previous untranslated string" +msgstr "Перейти к предыдущей непереведённой строке" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "С_ледующая непереведённая" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to next untranslated string" +msgstr "Перейти к следующей непереведённой строке" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "Предыдущая fu_zzy-строка" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to previous fuzzily translated string" +msgstr "Перейти к предыдущей fuzzy-строке" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "Следующая _fuzzy" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to next fuzzily translated string" +msgstr "Перейти к следующей fuzzy-строке" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "Предыдущая непереведённая или fuzz_y-строка" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1052 +msgid "Go to previous untranslated or fuzzy string" +msgstr "Перейти к предыдущей непереведённой или fuzzy-строке" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "Следующая непереведённая _или fuzzy-строка" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1056 +msgid "Go to next untranslated or fuzzy string" +msgstr "Перейти к следующей непереведённой или fuzzy-строке" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1067 +msgid "Toggle current translation fuzziness" +msgstr "Переключить флаг fuzzy у текущего перевода" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "П_ереключить флаг fuzzy" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "_Вставить сообщение как перевод" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "Вставить непереведённый оригинал в качестве перевода" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1064 +msgid "Reflow the current translation string" +msgstr "Форматирует текущую строку перевода" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "Пере_форматировать перевод" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" +"Обновлять заголовки перевода (автор, дата обновления, ...) при сохранении " +"файла" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "О_бновлять заголовки при сохранении" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "Помощник переводчика" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "Улучшенная поддержка файлов перевода GetText." + +#: ../pohelper/src/gph-plugin.c:1060 +msgid "Paste original untranslated string to translation" +msgstr "Скопировать исходную непереведённую строку в перевод" + +#: ../pohelper/src/gph-plugin.c:1102 +#, c-format +msgid "Failed to load configuration file: %s" +msgstr "Невозможно загрузить файл конфигурации: %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "Невозможно создать каталог конфигурации \"%s\": %s" + +#: ../pohelper/src/gph-plugin.c:1130 +#, c-format +msgid "Failed to save configuration file: %s" +msgstr "Невозможно сохранить конфигурационный файл: %s" + +#: ../pohelper/src/gph-plugin.c:1185 +#, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" msgstr "" +"Невозможно загрузить интерфейс, проверьте правильность установки. Ошибка: %s" + +#: ../pohelper/src/gph-plugin.c:1225 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" +"Невозможно найти виджет \"%s\" в файле интерфейса, проверьте правильность " +"установки." #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" @@ -4856,880 +5186,875 @@ #: ../scope/data/scope.glade.h:1 msgid "Debu_g" -msgstr "Отладчик" +msgstr "_Отладчик" #: ../scope/data/scope.glade.h:2 msgid "_Setup Program" -msgstr "" +msgstr "На_строить программу" #: ../scope/data/scope.glade.h:3 -#, fuzzy msgid "Recent _Programs" -msgstr "нет программы" +msgstr "Последние программы" #: ../scope/data/scope.glade.h:4 -#, fuzzy msgid "_Run/Continue" msgstr "Запустить / Продолжить" #: ../scope/data/scope.glade.h:5 -#, fuzzy msgid "Run to _Cursor" msgstr "Выполнить до позиции курсора" #: ../scope/data/scope.glade.h:6 -#, fuzzy msgid "Run to _Source" -msgstr "Выполнить до позиции курсора" +msgstr "Выполнить до исходника" #: ../scope/data/scope.glade.h:7 -#, fuzzy msgid "Step _Into" msgstr "Шаг в" #: ../scope/data/scope.glade.h:8 -#, fuzzy msgid "Step _Over" msgstr "Шаг через" #: ../scope/data/scope.glade.h:9 -#, fuzzy msgid "Step O_ut" msgstr "Шаг из" #: ../scope/data/scope.glade.h:10 -#, fuzzy msgid "_Terminate" -msgstr "прервано" +msgstr "Прервать" #: ../scope/data/scope.glade.h:11 -#, fuzzy msgid "Toggle _Breakpoint" -msgstr "Точки останова" +msgstr "Переключить точку останова" #: ../scope/data/scope.glade.h:12 -#, fuzzy msgid "_GDB Command" -msgstr "Команда 0:" +msgstr "Команда GDB" #: ../scope/data/scope.glade.h:13 -#, fuzzy msgid "_More" -msgstr "Больше..." +msgstr "Дополнительно" #: ../scope/data/scope.glade.h:14 -#, fuzzy msgid "_Show Terminal" msgstr "Открыть терминал" #: ../scope/data/scope.glade.h:15 msgid "_Reset Markers" -msgstr "" +msgstr "Сбросить маркеры" #: ../scope/data/scope.glade.h:16 msgid "_Cleanup Files" -msgstr "" +msgstr "Очистить файлы" #: ../scope/data/scope.glade.h:17 msgid "_Feed" -msgstr "" +msgstr "_Передать" #: ../scope/data/scope.glade.h:18 -#, fuzzy msgid "_Window" -msgstr "Окна" +msgstr "_Окно" #: ../scope/data/scope.glade.h:19 msgid "_Auto Show" -msgstr "" +msgstr "_Автоотображение" #: ../scope/data/scope.glade.h:20 msgid "Auto _Hide" -msgstr "" +msgstr "Авто_скрытие" #: ../scope/data/scope.glade.h:21 msgid "Show on _Error" -msgstr "" +msgstr "Показывать при _ошибке" #: ../scope/data/scope.glade.h:22 msgid "_Unsorted" -msgstr "" +msgstr "_Несортированное" #: ../scope/data/scope.glade.h:23 msgid "_View Source" -msgstr "" +msgstr "П_росмотреть исходник" #: ../scope/data/scope.glade.h:24 msgid "S_ynchronize" -msgstr "" +msgstr "С_инхронизировать" #: ../scope/data/scope.glade.h:25 msgid "_Interrupt" -msgstr "" +msgstr "_Прервать" #: ../scope/data/scope.glade.h:26 msgid "_Send Signal" -msgstr "" +msgstr "О_тправить сигнал" #: ../scope/data/scope.glade.h:27 -#, fuzzy msgid "S_elect on" -msgstr "Выбрать шрифт" +msgstr "Вы_брать в" #: ../scope/data/scope.glade.h:28 -#, fuzzy msgid "_Running" -msgstr "выполняется" +msgstr "_Выполняется" #: ../scope/data/scope.glade.h:29 -#, fuzzy msgid "_Stopped" -msgstr "остановленно" +msgstr "_Остановленно" #: ../scope/data/scope.glade.h:30 msgid "_Exited" -msgstr "" +msgstr "_Завершено" #: ../scope/data/scope.glade.h:31 msgid "_Follow" -msgstr "" +msgstr "С_ледовать" #: ../scope/data/scope.glade.h:32 -#, fuzzy msgid "_Columns" -msgstr "Режим выделения по столбцам" +msgstr "_Столбцы" #: ../scope/data/scope.glade.h:33 msgid "Show _Group" -msgstr "" +msgstr "Показать _группу" #: ../scope/data/scope.glade.h:34 -#, fuzzy msgid "Show _Core" -msgstr "Показывать панель инструментов" +msgstr "Показать _core" #: ../scope/data/scope.glade.h:35 -#, fuzzy msgid "Add _Break" -msgstr "Добавить точку останова" +msgstr "Новая _точка останова" #: ../scope/data/scope.glade.h:36 -#, fuzzy msgid "Add _Watch" -msgstr "Наблюдение" +msgstr "Новое _наблюдение" #: ../scope/data/scope.glade.h:37 msgid "Apply on _Run" -msgstr "" +msgstr "П_рименить при запуске" #: ../scope/data/scope.glade.h:38 msgid "_Show @entry" -msgstr "" +msgstr "_Показать @entry" #: ../scope/data/scope.glade.h:39 -#, fuzzy msgid "Show _Address" -msgstr "Адрес" +msgstr "Показать _адрес" #: ../scope/data/scope.glade.h:40 msgid "_Modify" -msgstr "" +msgstr "_Изменить" #: ../scope/data/scope.glade.h:41 -#, fuzzy msgid "_Watch" -msgstr "Наблюдение" +msgstr "_Наблюдение" #: ../scope/data/scope.glade.h:42 msgid "_Inspect" -msgstr "" +msgstr "_Инспекция" #: ../scope/data/scope.glade.h:43 msgid "_8-bit mode" -msgstr "" +msgstr "_8-битный режим" #: ../scope/data/scope.glade.h:44 -#, fuzzy msgid "_Default" -msgstr "По умолчанию (%s)" +msgstr "_По умолчанию" #: ../scope/data/scope.glade.h:45 msgid "_7 bit" -msgstr "" +msgstr "_7 бит" #: ../scope/data/scope.glade.h:46 msgid "_Locale" -msgstr "" +msgstr "_Локаль" #: ../scope/data/scope.glade.h:47 msgid "_UTF-8" -msgstr "" +msgstr "_UTF-8" #: ../scope/data/scope.glade.h:48 -#, fuzzy msgid "_Show .names" -msgstr "Показывать иконки" +msgstr "_Показывать .names" #: ../scope/data/scope.glade.h:49 msgid "R_ead" -msgstr "" +msgstr "_Читать" #: ../scope/data/scope.glade.h:50 msgid "_Group by" -msgstr "" +msgstr "_Группировать по" #: ../scope/data/scope.glade.h:51 msgid "_1" -msgstr "" +msgstr "_1" #: ../scope/data/scope.glade.h:52 msgid "_2" -msgstr "" +msgstr "_2" #: ../scope/data/scope.glade.h:53 msgid "_4" -msgstr "" +msgstr "_4" #: ../scope/data/scope.glade.h:54 msgid "_8" -msgstr "" +msgstr "_8" #: ../scope/data/scope.glade.h:55 msgid "_Jump To" -msgstr "" +msgstr "П_ереход к" #: ../scope/data/scope.glade.h:56 msgid "_Apply" -msgstr "" +msgstr "_Применить" #: ../scope/data/scope.glade.h:57 -#, fuzzy msgid "_Expand" -msgstr "Развернуть всё" +msgstr "_Развернуть" #: ../scope/data/scope.glade.h:59 msgid "_Natural" -msgstr "" +msgstr "_Натуральное" #: ../scope/data/scope.glade.h:60 msgid "_Decimal" -msgstr "" +msgstr "_Десятичное" #: ../scope/data/scope.glade.h:61 msgid "_Hex" -msgstr "" +msgstr "_Шестнадцатеричное" #: ../scope/data/scope.glade.h:62 msgid "_Octal" -msgstr "" +msgstr "_Восьмеричное" #: ../scope/data/scope.glade.h:63 msgid "_Binary" -msgstr "" +msgstr "Д_воичное" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" -msgstr "" +msgid "_Raw" +msgstr "Н_еобработанное" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" -msgstr "" +msgid "_Evaluate/Modify" +msgstr "_Вычислить/изменить" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "Переменные окружения" +msgid "_Watch Expression" +msgstr "_Наблюдать за выражением" #: ../scope/data/scope.glade.h:67 -#, fuzzy -msgid "Program Terminal" -msgstr "Терминал" +msgid "_Inspect Variable" +msgstr "_Инспекция переменной" #: ../scope/data/scope.glade.h:68 -#, fuzzy msgid "Threads" -msgstr "Поток %i" +msgstr "Потоки" -#: ../scope/data/scope.glade.h:70 -#, fuzzy +#: ../scope/data/scope.glade.h:69 msgid "Stack" -msgstr "Трассировка" +msgstr "Стек" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" -msgstr "" +msgstr "Локали" -#: ../scope/data/scope.glade.h:72 -#, fuzzy +#: ../scope/data/scope.glade.h:71 msgid "Watches" -msgstr "Наблюдение" +msgstr "Наблюдатели" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" -msgstr "" +msgstr "Память" -#: ../scope/data/scope.glade.h:74 -#, fuzzy -msgid "Debug Console" -msgstr "Консоль:" - -#: ../scope/data/scope.glade.h:75 -#, fuzzy +#: ../scope/data/scope.glade.h:73 msgid "Enter gdb command:" -msgstr "Внешняя команда" +msgstr "Введите команду gdb:" -#: ../scope/data/scope.glade.h:76 -#, fuzzy +#: ../scope/data/scope.glade.h:74 msgid "Convert _UTF-8 to locale" -msgstr "_Конвертировать в таблицу" +msgstr "Конвертировать _UTF-8 в локаль" -#: ../scope/data/scope.glade.h:77 -#, fuzzy +#: ../scope/data/scope.glade.h:75 msgid "_Thread" -msgstr "Поток %i" +msgstr "_Поток" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" -msgstr "" +msgstr "Группа" # Кадр? часть? блок? wtf frame :) -#: ../scope/data/scope.glade.h:79 -#, fuzzy +# Имеется ввиду что-то вроде стэк фрейма. Возможно лучше вообще не переводить? +#: ../scope/data/scope.glade.h:77 msgid "_Frame" -msgstr "Информация о блоке" +msgstr "_Фрейм" -#: ../scope/data/scope.glade.h:80 -#, fuzzy +#: ../scope/data/scope.glade.h:78 msgid "Setup Program" -msgstr "нет программы" +msgstr "Настроить программу" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" -msgstr "" +msgstr "_Исполняемый файл:" -#: ../scope/data/scope.glade.h:82 -#, fuzzy +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" -msgstr "Выравнивание" +msgstr "_Аргументы:" -#: ../scope/data/scope.glade.h:83 -#, fuzzy +#: ../scope/data/scope.glade.h:81 msgid "En_vironment:" msgstr "_Окружение" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" -msgstr "" +msgstr "_Рабочий каталог:" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" -msgstr "" +msgstr "_Сценарий загрузки:" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" -msgstr "" +msgstr "Автоматический _запуск программы/выход из gdb" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" -msgstr "" +msgstr "_Бесконечный режим" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" -msgstr "" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" +msgstr "_Временная точка останова при загрузке в:" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" -msgstr "" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" +msgstr "_Удалить все точки останова, наблюдения, инспекторы и регистры" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 -#, fuzzy +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" -msgstr "нет программы" +msgstr "Программа" -#: ../scope/data/scope.glade.h:91 -#, fuzzy +#: ../scope/data/scope.glade.h:89 msgid "Open on" -msgstr "Открыть URI" +msgstr "Открыть при" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" -msgstr "" +msgstr "загрузке g_db" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" -msgstr "" +msgstr "_запуске программы" -#: ../scope/data/scope.glade.h:94 -#, fuzzy +#: ../scope/data/scope.glade.h:92 msgid "Update all _views" -msgstr "Обновить список задач" +msgstr "Обновить все" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" -msgstr "" +msgstr "Панель" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" -msgstr "" +msgstr "Стандартный 8-битный режим:" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" -msgstr "" +msgstr "_7-бит \\nnn" -#: ../scope/data/scope.glade.h:98 -#, fuzzy +#: ../scope/data/scope.glade.h:96 msgid "Display" -msgstr "Скрыть боковую панель" +msgstr "Показывать" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" -msgstr "" +msgstr "_элемент" -#: ../scope/data/scope.glade.h:100 -#, fuzzy +#: ../scope/data/scope.glade.h:98 msgid "and" -msgstr "загружено" +msgstr "и" -#: ../scope/data/scope.glade.h:101 -#, fuzzy +#: ../scope/data/scope.glade.h:99 msgid "_argument" -msgstr "Отправить файл" +msgstr "_имена" -#: ../scope/data/scope.glade.h:102 -#, fuzzy +#: ../scope/data/scope.glade.h:100 msgid "names" -msgstr "Переименовать" +msgstr "аргументов" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" -msgstr "" +msgstr "Значения" -#: ../scope/data/scope.glade.h:104 -#, fuzzy +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" -msgstr "Развернуть всё" +msgstr "Р_азвернуть при применении" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" -msgstr "" +msgstr "П_оказывать" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" -msgstr "" +msgstr "потомков" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" -msgstr "" +msgstr "Инспекция" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" -msgstr "" +msgstr "Отображать сообщения =li_brary" -#: ../scope/data/scope.glade.h:109 -#, fuzzy +#: ../scope/data/scope.glade.h:107 msgid "Show _tooltips" msgstr "Показывать подсказки" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" -msgstr "" +msgstr "Другое" -#: ../scope/data/scope.glade.h:111 -#, fuzzy +#: ../scope/data/scope.glade.h:109 msgid "Options" -msgstr "Маркеры поиска:" +msgstr "Параметры" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 msgid "_Import" -msgstr "" +msgstr "_Импорт" -#: ../scope/data/scope.glade.h:113 -#, fuzzy +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" -msgstr "Не могу вычислить выражение" +msgstr "Введите выражение присваивания:" -#: ../scope/data/scope.glade.h:114 -#, fuzzy +#: ../scope/data/scope.glade.h:112 msgid "Inspect" -msgstr "Веб-инспектор" +msgstr "Инспекция" -#: ../scope/data/scope.glade.h:115 -#, fuzzy +#: ../scope/data/scope.glade.h:113 msgid "Object:" -msgstr "Информация об объекте " +msgstr "Объект:" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" -msgstr "" +msgstr "-" -#: ../scope/data/scope.glade.h:118 -#, fuzzy +#: ../scope/data/scope.glade.h:116 msgid "Frame:" -msgstr "Имя:" +msgstr "Фрейм:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" -msgstr "" +msgstr "@" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" -msgstr "" +msgstr "Применить при запуске" -#: ../scope/data/scope.glade.h:121 -#, fuzzy +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "Развернуть всё" -#: ../scope/data/scope.glade.h:122 -#, fuzzy +#: ../scope/data/scope.glade.h:120 msgid "Start:" msgstr "Старт:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" -msgstr "" +msgstr "Счётчик:" -#: ../scope/data/scope.glade.h:124 -#, fuzzy +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" -msgstr "Развернуть всё" +msgstr "Развернуть при применении" + +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "Терминал программы" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "Регистры" + +#: ../scope/src/break.c:97 +msgid "breakpoint" +msgstr "точка останова" -#: ../scope/src/break.c:947 +#: ../scope/src/break.c:98 +msgid "hardware breakpoint" +msgstr "аппаратная точка останова" + +#: ../scope/src/break.c:99 +msgid "tracepoint" +msgstr "точка контроля" + +#: ../scope/src/break.c:100 +msgid "fast tracepoint" +msgstr "быстрая точка контроля" + +#: ../scope/src/break.c:101 +msgid "write watchpoint" +msgstr "точка наблюдения на записб" + +#: ../scope/src/break.c:104 +msgid "access watchpoint" +msgstr "точка наблюдения на доступ" + +#: ../scope/src/break.c:106 +msgid "read watchpoint" +msgstr "точка наблюдения на чтение" + +#: ../scope/src/break.c:108 +msgid "catchpoint" +msgstr "точка отлова" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "CLI" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "неподдерживаемый MI" + +#: ../scope/src/break.c:141 +msgid "on load" +msgstr "при загрузке" + +#: ../scope/src/break.c:142 +msgid "Run to Cursor" +msgstr "Выполнить до позиции курсора" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" +"Обнаружено две или более точки останова в %s:%d.\n" +"\n" +"Используйте список точек останова для удаления только одной." -#: ../scope/src/break.c:1200 -#, fuzzy +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr ", %s" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "функция %s" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "Добавить точку останова" -#: ../scope/src/break.c:1215 -#, fuzzy +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" -msgstr "Добавить точку контроля" +msgstr "Добавить точку наблюдения" #: ../scope/src/conterm.c:106 -#, fuzzy msgid "Feed Terminal" -msgstr "Открыть терминал" +msgstr "Передать в терминал" #: ../scope/src/conterm.c:106 msgid "Enter char # (0..255):" -msgstr "" +msgstr "Введите символ # (0..255):" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 -#, fuzzy, c-format +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 +#, c-format msgid "Scope: %s." -msgstr "Закрыть: %s" +msgstr "Scope: %s." #: ../scope/src/debug.c:115 ../scope/src/debug.c:120 ../scope/src/utils.c:37 -#, fuzzy, c-format +#, c-format msgid "%s: %s." -msgstr "%s:%u:%u: %s" +msgstr "%s: %s." #: ../scope/src/debug.c:363 #, c-format msgid "GDB died unexpectedly with status %d." -msgstr "" +msgstr "GDB неожиданно завершился с кодом %d." #: ../scope/src/debug.c:365 -#, fuzzy msgid "Program terminated." -msgstr "прервано" +msgstr "Программа завершена." -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." -msgstr "" +msgstr "Нет точек останова. Прерывание." -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 -#, fuzzy, c-format +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 +#, c-format msgid "%s." -msgstr "%s:" +msgstr "%s." -#: ../scope/src/inspect.c:77 -#, fuzzy +#: ../scope/src/inspect.c:66 msgid "..." -msgstr "Больше..." +msgstr "..." -#: ../scope/src/inspect.c:324 -#, fuzzy +#: ../scope/src/inspect.c:339 msgid "invalid data" -msgstr "Недействительный тег" +msgstr "некорректные данные" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" -msgstr "" +msgstr "нет потомков в диапазоне" -#: ../scope/src/inspect.c:440 -#, fuzzy +#: ../scope/src/inspect.c:454 msgid "out of scope" -msgstr "Контрольная точка #%s вне области видимости" +msgstr "вне зоны видимости" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." -msgstr "" +msgstr "Дублировать имя переменной под инспекцией." -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" -msgstr "" +msgstr "Чтение памяти" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." -msgstr "" +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." +msgstr "Scope: размер указателя > %d, данные отключены." -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" -msgstr "" +msgstr "Изменить" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" -msgstr "" +msgstr "Вычислить/модифицировать" -#: ../scope/src/menu.c:491 -#, fuzzy +#: ../scope/src/menu.c:482 msgid "Watch expression" -msgstr "Не могу вычислить выражение" +msgstr "Наблюдать за выражением" -#: ../scope/src/menu.c:492 -#, fuzzy +#: ../scope/src/menu.c:483 msgid "Inspect variable" -msgstr "Удалить переменную?" +msgstr "Инспекция переменной" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." -msgstr "" +msgstr "Неизвестная ошибка GDB." #: ../scope/src/plugme.c:81 -#, fuzzy msgid "Select Folder" -msgstr "Выбрать шрифт" +msgstr "Выберите папку" #: ../scope/src/plugme.c:81 -#, fuzzy msgid "Select File" -msgstr "Выбрать шрифт" - -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "Точки останова" - -#: ../scope/src/prefs.c:339 -#, fuzzy -msgid "Console" -msgstr "Консоль:" +msgstr "Выберите файл" -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." -msgstr "" +msgstr "Scope: %s: %s." -#: ../scope/src/prefs.c:352 -#, fuzzy +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." -msgstr "Принудительно перезагрузить конфигурационные файлы" +msgstr "Scope: создан файл конфигурации." -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." -msgstr "" +msgstr "Загружены параметры отладки для %s." -#: ../scope/src/program.c:239 -#, fuzzy, c-format +#: ../scope/src/program.c:259 +#, c-format msgid "Could not load debug settings file %s: %s." -msgstr "Невозможно загрузить файл \"%s\": %s" +msgstr "Не удалось загрузить файл с параметрами отладки %s: %s." -#: ../scope/src/program.c:359 -#, fuzzy, c-format +#: ../scope/src/program.c:379 +#, c-format msgid "" "%s: %s.\n" "\n" "Continue?" -msgstr "Продолжить" - -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" msgstr "" +"%s: %s.\n" +"\n" +"Продолжить?" + +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" +msgstr "Удалить все точки останова, наблюдения и т. п.?" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" -msgstr "" +msgstr "как _Name=value" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" -msgstr "" +msgstr "как _Name = value" #: ../scope/src/scope.c:34 -#, fuzzy msgid "Scope Debugger" -msgstr "Отладчик" +msgstr "Отладчик Scope" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." -msgstr "" +msgid "Relatively simple GDB front-end." +msgstr "Относительно простая обёртка над GDB." -#: ../scope/src/scope.c:63 -#, fuzzy +#: ../scope/src/scope.c:62 msgid "Setup program" -msgstr "нет программы" +msgstr "Настроить программу" -#: ../scope/src/scope.c:64 -#, fuzzy +#: ../scope/src/scope.c:63 msgid "Run/continue" -msgstr "Запустить / Продолжить" +msgstr "Запустить/продолжить" -#: ../scope/src/scope.c:66 -#, fuzzy +#: ../scope/src/scope.c:65 msgid "Run to source" -msgstr "Выполнить до позиции курсора" +msgstr "Выполнить до исходника" -#: ../scope/src/scope.c:70 -#, fuzzy +#: ../scope/src/scope.c:69 msgid "Terminate" -msgstr "прервано" +msgstr "Прервать" -#: ../scope/src/scope.c:71 -#, fuzzy +#: ../scope/src/scope.c:70 msgid "Toggle breakpoint" -msgstr "точка останова" +msgstr "Переключить точку останова" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" -msgstr "" +msgstr "Команда GDB" -#: ../scope/src/scope.c:74 -#, fuzzy +#: ../scope/src/scope.c:73 msgid "Show terminal" -msgstr "Запуск в терминале" +msgstr "Показать терминал" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" -msgstr "" +msgstr "Занят" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" -msgstr "" +msgstr "Готов" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" -msgstr "" +msgstr "Завис" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" -msgstr "" +msgstr "Асм" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" -msgstr "" +msgstr "Загрузка" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" -msgstr "" +msgstr "Запущена сборка. Прервать отладку?" + +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "Прерывания" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Консоль" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "Консоль отладчика" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." -msgstr "" +msgstr "Группа потоков %s запущена." -#: ../scope/src/thread.c:76 -#, fuzzy +#: ../scope/src/thread.c:63 msgid "Thread group " -msgstr "Поток %i" +msgstr "Группа потоков " -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" -msgstr "" +msgstr " завершился" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" -msgstr "" +msgstr " с кодом завершения %s" -#: ../scope/src/thread.c:788 -#, fuzzy +#: ../scope/src/thread.c:748 msgid "Send Signal" -msgstr "Отправить по почте" +msgstr "Отправить сигнал" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" -msgstr "" +msgstr "Введите номер сигнала:" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" -msgstr "" +msgstr "Прервать процесс" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" -msgstr "" +msgstr "Введите код завершения:" -#: ../scope/src/thread.c:937 -#, fuzzy +#: ../scope/src/thread.c:891 msgid "Running" -msgstr "выполняется" +msgstr "Выполняется" -#: ../scope/src/thread.c:938 -#, fuzzy +#: ../scope/src/thread.c:892 msgid "Stopped" -msgstr "остановленно" +msgstr "Остановлен" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, c-format -msgid "%s: error %lu." -msgstr "" +msgid "%s: %s" +msgstr "%s: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." -msgstr "" +msgstr "Scope: ошибка чтения [%s]." -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" -msgstr "" +msgstr "…" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" -msgstr "" +msgstr "_Отправить" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" -msgstr "" +msgstr "_Занят" -#: ../scope/src/views.c:535 -#, fuzzy +#: ../scope/src/views.c:558 msgid "GDB Command" -msgstr "Команда 0:" +msgstr "Команда GDB" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Попробуйте: " -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Идёт проверка" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "Проверяется файл \"%s\" (строки с %d по %d используя %s):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" -msgstr "Проверяется файл \"%s\" (используя %s):" +msgstr "Проверяется файл \"%s\" (используя %s):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "Текст не содержит ошибок." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "Ошибка инициализации библиотеки Enchant (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "неизвестная ошибка (возможно выбранный язык недоступен)" @@ -5823,17 +6148,17 @@ msgid "Ignore All" msgstr "Игнорировать всё" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "По умолчанию (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "Включить проверку орфографии по мере набора текста (текущий язык: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "Варианты замены" @@ -5864,28 +6189,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "При разборе содержимого произошла ошибка. Остановка." -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Конвертировать выделение в таблицу" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "_Конвертировать в таблицу" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "Конвертирует отмеченные списки в таблицу" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "Дерево файлов" -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5893,30 +6218,30 @@ "Этот плагин добавляет в Geany панель, которая позволяет просматривать файлы " "в виде дерева папок и файлов. " -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: нет такой директории." -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Пусто)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:973 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Невозможно выполнить заданную внешнюю команду '%s' (%s)." -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewDirectory" msgstr "Новая папка" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1046 msgid "NewFile" msgstr "Новый файл" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1051 #, c-format msgid "" "Target file '%s' exists\n" @@ -5925,96 +6250,100 @@ "Файл '%s' существует\n" ", вы действительно хотите заменить его пустым файлом?" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1097 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Вы действительно хотите удалить файл '%s' ?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1209 ../treebrowser/src/treebrowser.c:1740 msgid "Go up" msgstr "Перейти на уровень вверх" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1213 ../treebrowser/src/treebrowser.c:1755 msgid "Set path from document" msgstr "Установить корневой папку текущего документа" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" +#: ../treebrowser/src/treebrowser.c:1217 +msgid "_Open externally" msgstr "Открыть используя внешнюю программу" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1222 msgid "Open Terminal" msgstr "Открыть терминал" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1226 msgid "Set as root" msgstr "Сделать корневой папкой" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1231 ../treebrowser/src/treebrowser.c:1745 +#: ../treebrowser/src/treebrowser.c:2125 msgid "Refresh" msgstr "Обновить" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1235 +msgid "_Find in Files" +msgstr "Найти в файлах" + +#: ../treebrowser/src/treebrowser.c:1243 msgid "Create new directory" msgstr "Создать новую директорию" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1247 msgid "Create new file" msgstr "Создать новый файл" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1251 msgid "Rename" msgstr "Переименовать" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1256 msgid "Delete" msgstr "Удалить" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1264 #, c-format msgid "Close: %s" msgstr "Закрыть: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1269 #, c-format msgid "Close Child Documents " msgstr "Закрыть дочерние документы" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1274 +msgid "_Copy full path to clipboard" msgstr "Скопировать полный путь в буфер обмена" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1294 ../treebrowser/src/treebrowser.c:2034 msgid "Show bookmarks" msgstr "Показывать закладки" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1299 ../treebrowser/src/treebrowser.c:1983 msgid "Show hidden files" msgstr "Показывать скрытые файлы" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1304 msgid "Show toolbars" msgstr "Показывать панель инструментов" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1623 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Файл '%s' существует, вы действительно хотите его заменить?" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1750 msgid "Home" msgstr "Домой" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1760 msgid "Track path" msgstr "Перейти к текущему файлу" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1765 msgid "Hide bars" msgstr "Скрыть панель инструментов" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1775 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" @@ -6022,19 +6351,19 @@ "Фильтр (*.c;*.h;*.cpp). Чтобы инвертировать результаты поиска, используйте " "формат '!;*.c;*.h;*.cpp'." -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1783 msgid "Addressbar for example '/projects/my-project'" msgstr "Строка адреса" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1808 msgid "Tree Browser" msgstr "Дерево файлов" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1947 msgid "External open command" msgstr "Внешняя команда" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1952 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6048,53 +6377,53 @@ "%f будет заменено на имя файла включая полный путь\n" "%d будет заменено на путь к директории текущего файла" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Toolbar" msgstr "Панель инструментов" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Hidden" msgstr "Скрытая" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1963 msgid "Top" msgstr "Верх" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1964 msgid "Bottom" msgstr "Низ" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1969 msgid "If position is changed, the option require plugin restart." msgstr "Изменение положения требует перезапуска плагина" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1973 msgid "Show icons" msgstr "Показывать иконки" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1975 msgid "None" msgstr "Нет" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1976 msgid "Base" msgstr "Базовые" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1977 msgid "Content-type" msgstr "Тип файла" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1988 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "В ОС Windows, эта опция скрывает файлы, имена которых начинаются с символа " "'.' (dot)" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1990 msgid "Hide object files" msgstr "Не показывать объектные файлы" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1995 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -6102,51 +6431,57 @@ "Не показывать объектные файлы (*.o, *.obj. *.so, *.dll, *.a, *.lib) в дереве " "файлов" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1997 msgid "Reverse filter" msgstr "Инвертировать фильтр" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2002 msgid "Follow current document" msgstr "Следовать пути текущего документа" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2007 msgid "Single click, open document and focus it" msgstr "Одиночный клик открывает документ" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2012 msgid "Double click open directory" msgstr "Двойной клик открывает папку" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2017 msgid "On delete file, close it if is opened" msgstr "При удалении файла, закрывать его если открыт" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2022 +msgid "Focus editor on file open" +msgstr "Передать фокус редактору при открытии файла" + +#: ../treebrowser/src/treebrowser.c:2027 msgid "Show tree lines" msgstr "Показывать соединительные линии" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2039 +msgid "Open new files" +msgstr "Открыть новый файл" + +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus File List" msgstr "Перейти к списку файлов" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Focus Path Entry" msgstr "Перейти к строке адреса" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Rename Object" msgstr "Переименовать объект" -#: ../treebrowser/src/treebrowser.c:2056 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New File" msgstr "Создать новый файл" -#: ../treebrowser/src/treebrowser.c:2058 -#, fuzzy +#: ../treebrowser/src/treebrowser.c:2123 msgid "Create New Directory" -msgstr "Создать новую директорию" +msgstr "Создать новый каталог" #: ../updatechecker/src/updatechecker.c:41 msgid "Updatechecker" @@ -6185,73 +6520,71 @@ msgstr "Проверить обновления" #: ../webhelper/src/gwh-enum-types.c:15 -#, fuzzy msgid "message-window" -msgstr "_Скрыть окно сообщений" +msgstr "окно сообщений" #: ../webhelper/src/gwh-enum-types.c:16 -#, fuzzy msgid "sidebar" -msgstr "Скрыть боковую панель" +msgstr "боковая панель" #: ../webhelper/src/gwh-enum-types.c:17 msgid "separate-window" -msgstr "" +msgstr "отдельное окно" #: ../webhelper/src/gwh-enum-types.c:32 msgid "none" -msgstr "" +msgstr "нет" #: ../webhelper/src/gwh-enum-types.c:33 msgid "on-connexion" -msgstr "" +msgstr "на связи" #: ../webhelper/src/gwh-enum-types.c:48 msgid "normal" -msgstr "" +msgstr "нормальный" #: ../webhelper/src/gwh-enum-types.c:49 msgid "utility" -msgstr "" +msgstr "утилита" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Увеличить" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" -msgstr "Изменение масштаба всего содержимого" +msgstr "Изменение масштаба всего _содержимого" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "Переключить ориентацию панелей" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Назад" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "Вперёд" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Остановить загрузку" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Перезагрузить страницу" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "Веб-инспектор" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "Показать Веб-инспектор" @@ -6330,13 +6663,12 @@ msgstr "Последние сохранённые размеры окна инспектора" #: ../webhelper/src/gwh-plugin.c:343 -#, fuzzy msgid "Inspector detached" -msgstr "Размер окна инспектора" +msgstr "Инспектор отсоединён" #: ../webhelper/src/gwh-plugin.c:344 msgid "Whether the inspector is in a separate window or docked in the browser" -msgstr "" +msgstr "Инспектор в отдельном окне или внутри браузера" #: ../webhelper/src/gwh-plugin.c:349 msgid "Secondary windows skip task bar" @@ -6464,9 +6796,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "tty: директория для временных файлов не указанна!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "tty: директория для временных файлов не найдена!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "программа ttyhelper, не указанна!\n" @@ -6535,21 +6864,12 @@ #~ msgid "No %s selected" #~ msgstr "Не выбрана %s " -#~ msgid "watchpoint" -#~ msgstr "точка контроля" - #~ msgid "Delete selected watchpoint?" #~ msgstr "Удалить контрольную точку?" #~ msgid "Delete selected breakpoint?" #~ msgstr "Удалить точку останова?" -#~ msgid "Edit watchpoint" -#~ msgstr "Править точку контроля" - -#~ msgid "Edit breakpoint" -#~ msgstr "Править точку останова" - #~ msgid "Enabled" #~ msgstr "Включено" @@ -6668,9 +6988,6 @@ #~ msgid "(no program)" #~ msgstr "(нет программы)" -#~ msgid "loaded" -#~ msgstr "загружено" - #~ msgid "starting" #~ msgstr "запущено" @@ -6755,74 +7072,8 @@ #~ msgid "Search for current tag in Google Code Search" #~ msgstr "Поиск текущего тэга в Google Code Search" -#, fuzzy -#~ msgid "" -#~ "This Plugin implements Macros in Geany.\n" -#~ "\n" -#~ "This plugin allows you to record and use your own macros. These are " -#~ "sequences of actions that can then be repeated with a single key " -#~ "combination. So if you had dozens of lines where you wanted to delete the " -#~ "last 2 characters, you could simple start recording, press End, " -#~ "Backspace, Backspace, down line and then stop recording. Then simply " -#~ "trigger the macro and it would automatically edit the line and move to " -#~ "the next. Select Record Macro from the Tools menu and you will be " -#~ "prompted with a dialog box. You need to specify a key combination that " -#~ "isn't being used, and a name for the macro to help you identify it. Then " -#~ "press Record. What you do in the editor is then recorded until you select " -#~ "Stop Recording Macro from the Tools menu. Simply pressing the specified " -#~ "key combination will re-run the macro. To edit the macros you have, " -#~ "select Edit Macro from the Tools menu. You can select a macro and delete " -#~ "it, or re-record it. You can also click on a macro's name and change it, " -#~ "or the key combination and re-define that assuming that it's not already " -#~ "in use. Selecting the edit option allows you to view all the individual " -#~ "elements that make up the macro. You can select a diferent command for " -#~ "each element, move them, add new elements, delete elements, or if it's " -#~ "replace/insert, you can edit the text that replaces the selected text, or " -#~ "is inserted.\n" -#~ "\n" -#~ "The only thing to bear in mind is that undo and redo actions are not " -#~ "recorded, and won't be replayed when the macro is re-run.\n" -#~ "\n" -#~ "You can alter the default behaviour of this plugin by selecting Plugin " -#~ "Manager under the Tools menu, selecting this plugin, and cliking " -#~ "Preferences. You can change:\n" -#~ "Save Macros when close Geany - If this is selected then Geany will save " -#~ "any recorded macros and reload them for use the next time you open Geany, " -#~ "if not they will be lost when Geany is closed.\n" -#~ "Ask before replaceing existing Macros - If this is selected then if you " -#~ "try recording a macro over an existing one it will check before over-" -#~ "writing it, giving you the option of trying a different name or key " -#~ "trigger combination, otherwise it will simply erase any existing macros " -#~ "with the same name, or the same key trigger combination." -#~ msgstr "" -#~ "Это плагин осуществляет поддержку макросов в Geany.\n" -#~ "\n" -#~ "Этот плагин позволяет вам добавлять и использовать свои макросы. Макросы " -#~ "это последовательности действий которые потом могут быть выполнены по " -#~ "нажатию горячей клавиши. Например, если у вас есть большое количество " -#~ "строк во всех которых вы хотите удалить последние два символа, вы можете " -#~ "начать запись макроса, нажать End, Backspace, Backspace, спуститься на " -#~ "строку ниже и остановить запись. Потом, вы просто вызываете макрос и он " -#~ "автоматически редактирует строку и переходит на следующую. Выберите " -#~ "\"Запись макроса\" в меню инструментов, после чего на экран будет выведен " -#~ "диалог, в котором вы должны будете указать незадействованную комбинацию " -#~ "клавиш, имя макроса и нажать кнопку начала записи. Все действия, которые " -#~ "вы далее будете выполнять в редакторе будут записываться, пока вы не " -#~ "остановите запись с помощью пункта меню инструментов \"Остановить запись " -#~ "макроса\". Просто нажмите комбинацию клавиш макроса чтобы запустить его. " -#~ "Для редактирования макроса выберите пункт меню инструментов " -#~ "\"Редактировать макрос\". Вы можете удалить макрос или перезаписать его. " -#~ "Вы также можете изменить имя макроса или комбинацию клавиш.\n" -#~ "\n" -#~ "Вы можете изменить некоторые настройки этого плагина через диалог " -#~ "настроек: \n" -#~ "Сохранять макрос при выходе из Geany - если включено, Geany будет " -#~ "сохранять все записанные макросы и загружать их при следующем запуске " -#~ "Geany, если не выключено - они будут удалены при закрытии Geany.\n" -#~ "Спрашивать перед перезаписью существующего макроса - если включено, то " -#~ "при попытке перезаписи макроса вам будет предложено выбрать другое имя " -#~ "или комбинацию клавиш, в противном случае существующий макрос будет " -#~ "перезаписан новым макросом с совпадающим именем или комбинацией клавиш." + #~ msgid "You must define a key trigger combination" #~ msgstr "Вы должны указать комбинацию клавиш" + diff -Nru geany-plugins-1.24.0+20140222+git/po/tr.po geany-plugins-1.24.1+dfsg/po/tr.po --- geany-plugins-1.24.0+20140222+git/po/tr.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/tr.po 2014-04-12 14:28:39.000000000 +0000 @@ -1,14 +1,14 @@ # Turkish translation for geany-plugins -# Copyright (C) 2009 - 2013 THE PACKAGE'S COPYRIGHT HOLDER +# Copyright (C) 2009 - 2014 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the geany-plugins package. # -# Gürkan Gür , 2009 - 2013 +# Gürkan Gür , 2009 - 2014 # msgid "" msgstr "" -"Project-Id-Version: geany-plugins 1.23\n" +"Project-Id-Version: geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-09 10:11+0100\n" +"POT-Creation-Date: 2014-04-09 03:19+0000\n" "PO-Revision-Date: \n" "Last-Translator: Gürkan Gür \n" "Language-Team: \n" @@ -36,12 +36,12 @@ msgid "Contents" msgstr "İçerik" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:624 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "Yer İmleri" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "G_üncelle" @@ -78,15 +78,15 @@ msgid "Context:" msgstr "İçerik:" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "XML etiketleme" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "Eklenecek etiket adı:" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -156,11 +156,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1883 +#: ../treebrowser/src/treebrowser.c:1935 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "Eklenti düzenleme dizini oluşturulamadı." @@ -247,6 +248,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "Kod gezgini" @@ -309,8 +318,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 msgid "Debug" msgstr "Hata Ayıkla" @@ -442,7 +451,7 @@ msgid "Target" msgstr "Hedef" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "Aralıklar" @@ -479,22 +488,22 @@ msgstr "Yeniden Başlat" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 msgid "Step into" msgstr "" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 msgid "Step out" msgstr "" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 msgid "Run to cursor" msgstr "" @@ -535,6 +544,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 msgid "Documentation" @@ -772,12 +789,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "_Dosya" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 msgid "_Edit" msgstr "Düz_enle" @@ -958,55 +975,63 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "Fazladan Se_çim" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "S_ütun Modu" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "Sütun Modu" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 msgid "Select to _Line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 msgid "Select to line" msgstr "" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +msgid "Convert selection" +msgstr "Seçimi dönüştür" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 msgid "Select to _Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 msgid "Select to anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1398,76 +1423,76 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 msgid "Insert Numbers" msgstr "Numara Girin" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 msgid "Counting..." msgstr "Sayılıyor..." -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "Hazırlanıyor..." -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 msgid "Inserting..." msgstr "Ekleniyor..." -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 msgid "_Start:" msgstr "Ba_şla:" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 msgid "S_tep:" msgstr "_Adım:" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 msgid "_Base:" msgstr "_Temel:" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 msgid "Letters:" msgstr "Harfler:" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 msgid "_Upper" msgstr "B_üyük" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "Bo_şluk" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "S_ıfır" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 msgid "Insert _Numbers" msgstr "Sayı Giri_n" @@ -1918,7 +1943,7 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:668 +#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:659 msgid "Template:" msgstr "Şablon:" @@ -2413,16 +2438,16 @@ msgid "Creating dummy text with Geany" msgstr "Geany için rastgele yazı yazı üretiliyor" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Lipsum-Oluşturucu" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "Rastgele yazının uzunluğunu giriniz" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2551,19 +2576,19 @@ msgid "Browse..." msgstr "Gözat..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "Renk Seç" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "Seç..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "Yazıtipi Seçin" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "Seç..." @@ -2590,7 +2615,7 @@ "\"%s\" modülü %s() fonksiyonunda hata:\n" "\"%s\" komutu için yeterli argüman girilmedi.\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2628,14 +2653,14 @@ msgid "Save file" msgstr "Dosyayı kaydet" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" "failed to parse filter string at argument #3.\n" msgstr "" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2676,7 +2701,7 @@ "%s eklentisi düzgün yüklenemedi.\n" "Lütfen kurulumu kontrol edin." -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, c-format msgid "" "%s %s: %s\n" @@ -2685,7 +2710,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2008 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2694,7 +2719,7 @@ "\"%s\" modülü %s() fonksiyonunda hata:\n" "\"%s\", #1 argümanında bulunamadı.\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -2748,7 +2773,6 @@ msgstr "Sağa doğru kelimenin sonuna kadar sil" #: ../geanymacro/src/geanymacro.c:67 -#, fuzzy msgid "Delete to beginning of line" msgstr "Satırın başına kadar sil" @@ -2825,9 +2849,8 @@ msgstr "İşaretçiyi belgenin ilk satırına kaydır" #: ../geanymacro/src/geanymacro.c:88 -#, fuzzy msgid "Move Cursor to last line of document" -msgstr "Dökümanda etiket yok" +msgstr "İmleci dökümanın son satırına götür" #: ../geanymacro/src/geanymacro.c:89 msgid "Move Cursor up one Page" @@ -2838,9 +2861,8 @@ msgstr "İşaretçiyi bir sayfa aşağı kaydır" #: ../geanymacro/src/geanymacro.c:91 -#, fuzzy msgid "Move Cursor to first visible character" -msgstr "İşaretçiyi ilk görülen karaktere götür" +msgstr "İmleci görülen ilk karaktere götür" #: ../geanymacro/src/geanymacro.c:92 msgid "Move Cursor to last visible character" @@ -2853,9 +2875,8 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:95 -#, fuzzy msgid "Move Cursor to beginning of next paragraph" -msgstr "Seçimi tabloya dönüştür" +msgstr "İmleci sonraki paragrafın başına götür" #: ../geanymacro/src/geanymacro.c:96 msgid "Move Cursor up to beginning of current/previous paragraph" @@ -2878,14 +2899,12 @@ msgstr "Seçimi bir sıra yukarı genişlet" #: ../geanymacro/src/geanymacro.c:102 -#, fuzzy msgid "Extend Selection Left a line" -msgstr "Seçimi tabloya dönüştür" +msgstr "Seçimi sola genişlet" #: ../geanymacro/src/geanymacro.c:103 -#, fuzzy msgid "Extend Selection Right a line" -msgstr "Seçimi sağa hizala" +msgstr "Seçimi sağa genişlet" #: ../geanymacro/src/geanymacro.c:104 #, fuzzy @@ -3040,14 +3059,12 @@ msgstr "" #: ../geanymacro/src/geanymacro.c:143 -#, fuzzy msgid "Change selected text to lowercase" -msgstr "Seçili metni eğik olarak işaretler" +msgstr "Seçilen metni küçük harfe çevir" #: ../geanymacro/src/geanymacro.c:144 -#, fuzzy msgid "Change selected text to uppercase" -msgstr "Seçili metni kalın olarak işaretler" +msgstr "Seçilen metni büyük harfe çevir" #: ../geanymacro/src/geanymacro.c:146 msgid "Insert duplicate of current line below" @@ -3059,6 +3076,19 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +msgid "Search for next \"\"" +msgstr "Sonraki için ara \"\"" + +#: ../geanymacro/src/geanymacro.c:151 +msgid "Search for previous \"\"" +msgstr "Önceki için ara \"\"" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "Satırın başına kadar sil" + #: ../geanymacro/src/geanymacro.c:181 msgid "Macros" msgstr "Makrolar" @@ -3278,12 +3308,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "_Tamam" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 msgid "_Cancel" msgstr "İp_tal" @@ -3297,27 +3327,23 @@ #. create checkbox to check for search options #: ../geanymacro/src/geanymacro.c:1410 -#, fuzzy msgid "Search for contents of clipboard" -msgstr "Pano içeriğinde ara" +msgstr "Panodaki içeriği ara" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "Şunun için ara:" #. create checkbox to check for search options #: ../geanymacro/src/geanymacro.c:1442 -#, fuzzy msgid "Search is case sensitive" -msgstr "Büyük/küçük h_arf duyarlı arama" +msgstr "Büyük/küçük harf duyarlı arama" #: ../geanymacro/src/geanymacro.c:1447 -#, fuzzy msgid "Search for whole word" msgstr "Tüm kelimeyi ara" #: ../geanymacro/src/geanymacro.c:1452 -#, fuzzy msgid "Search for start of word" msgstr "Kelime başlangıcını ara" @@ -3338,58 +3364,58 @@ msgid "Text:" msgstr "Yazı:" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, c-format msgid "Edit: %s" msgstr "Düzenle: %s" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "Y_ukarı Taşı" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "A_şağı Taşı" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 msgid "_Delete" msgstr "S_il" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 msgid "Edit Macros" msgstr "Makroları Düzenle" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "Makro İsmi" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 msgid "Key Trigger" msgstr "Tetikleyici Tuş" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "Tek_rar Kaydet" @@ -3409,18 +3435,18 @@ msgstr "Makroları Düz_enle" #. *< \brief It's the information message about geany mini script -#: ../geanyminiscript/src/gms_gui.c:130 +#: ../geanyminiscript/src/gms_gui.c:129 msgid "" "GMS : Geany Mini-Script filter Plugin\n" -"This plugin is a tool to apply a script filter on :\n" +"This plugin is a tool to apply a script filter on:\n" " o the text selection,\n" " o the current document,\n" " o all documents of the current session.\n" "\n" -"The filter type can be : \n" -" o Unix shell script, \n" -" o perl script, \n" -" o python script, \n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" " o sed commands,\n" " o awk script.\n" "\n" @@ -3435,79 +3461,79 @@ "or (at your option) any later version." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:254 +#: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "Mini-Betik Dosyası Yükle" -#: ../geanyminiscript/src/gms_gui.c:311 +#: ../geanyminiscript/src/gms_gui.c:310 msgid "Save Mini-Script File" msgstr "Mini-Betik Dosyasını Kaydet" -#: ../geanyminiscript/src/gms_gui.c:420 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:448 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "Mini-betik penceresini temizle" -#: ../geanyminiscript/src/gms_gui.c:453 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "Bu pencereye bir mini-betik yükle" -#: ../geanyminiscript/src/gms_gui.c:458 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "Mini-betiği bir dosyaya kaydet" -#: ../geanyminiscript/src/gms_gui.c:463 +#: ../geanyminiscript/src/gms_gui.c:460 msgid "Display a information about the mini-script plugin" msgstr "Mini Betik eklentisi ile ilgili bilgi göster" -#: ../geanyminiscript/src/gms_gui.c:471 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "mini-betik türünü seçiniz" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:504 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:507 msgid "selection" msgstr "seçim" -#: ../geanyminiscript/src/gms_gui.c:511 +#: ../geanyminiscript/src/gms_gui.c:508 msgid "document" msgstr "belge" -#: ../geanyminiscript/src/gms_gui.c:512 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "oturum" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:523 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:529 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "Geçerli Belge" -#: ../geanyminiscript/src/gms_gui.c:530 +#: ../geanyminiscript/src/gms_gui.c:527 msgid "New Doc." msgstr "Yeni Belge" -#: ../geanyminiscript/src/gms_gui.c:751 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "betik yapılandırması" @@ -3692,36 +3718,36 @@ msgstr "İmzalayıcı seçin" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "Pinentry kullanılamadı." -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "Pinentry'den beklenmeyen çıktı." #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "Şifre girişi" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "Şifre" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "pinentry hata verdi" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "Pinentry'den beklenmeyen hata." -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3731,8 +3757,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "bilinmeyen" @@ -3888,7 +3914,7 @@ msgstr "Bir imza dosyası aç" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "Proje" @@ -3917,7 +3943,7 @@ msgid "C_reate" msgstr "Oluştu_r" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "İsim:" @@ -3993,7 +4019,7 @@ msgid "Remove File" msgstr "Dosyayı Kaldır" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "Yan Panel_i Gizle" @@ -4002,6 +4028,48 @@ msgid "Project \"%s\" opened." msgstr "\"%s\" projesi açıldı." +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "GeanyPy" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "Python kütüphanesinin yüklenmesi başarısız: %s." + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +msgid "System plugin directory not found." +msgstr "Sistem eklenti dizini bulunamadı." + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, fuzzy, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "'%s' adresinde ayar dizini oluşturulamadı" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanyEPostaGönder" @@ -4022,42 +4090,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "Alıcının e-posta adresini girin:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "Lütfen önce bir e-posta istemcisi tanımlayın." -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "Dosya gönderilmeden önce kaydedilmeli." -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "E-posta" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "E-posta olarak gönder" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "E-posta istemcisi için yol ve seçenekler:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 #, fuzzy msgid "" "Note: \n" @@ -4076,28 +4144,28 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"'\\%b'\" gönderiliyor -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 msgid "Show toolbar icon" msgstr "Araç çubuğu simgesini göster" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "Dosyaları daha kolay göndermek için araç çubuğunda bir simge gösterir." -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 msgid "Use dialog for entering email address of recipients" msgstr "Alıcıların e-posta adreslerini girmek için dialog kullan" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "Dosyayı e-posta olarak gönder" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 msgid "_Mail document" msgstr "Dökü_manı e-postala" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "" @@ -4115,78 +4183,97 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc: s_spawn_sync hatası: %s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "" "geanyvc: vcdiff_file_activated: '%s' değerini '%s' olarak yeniden " "adlandırırken hata" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "Hiç değişiklik yapılmadı." -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 msgid "No history available" msgstr "Geçmiş yok" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "Gerçekten geri almak istiyor musunuz: %s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "Gerçekten eklemek istiyor musunuz: %s ?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "Gerçekten kaldırmak istiyor musunuz: %s ?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "Gerçekten güncellemek istiyor musunuz?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "Teslim et Y/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "Durum" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "Yol" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "Teslim et" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "Teslim mesajı:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 msgid "C_ommit" msgstr "G_önder" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "Teslim edilecek bir şey yok." -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "İmla denetimi yapılırken hata: %s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " @@ -4195,263 +4282,263 @@ "İmla denetimi için dil ayarlanmasında hata. Lütfen yapılandırmayı kontrol " "edin. Hata mesajı: %s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " "could cause a big number of annoying \"Do you want to save\"-dialogs." msgstr "" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "Teslim diyaloğunu büyüt" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "Teslim diyaloğunu geniş göster." -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "Harici diff görüntüleyici kullan" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "Dosya değişiklikleri için harici bir diff izleyici kullan." -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "CVS'i etkinleştir" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "GIT'i etkinleştir" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "SVN'i etkinleştir" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "SVK'yı etkinleştir" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "Bazaar'ı Etkinleştir" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "Mercurial'i Etkinleştir" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "İmla denetimi dili" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "_Diff" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "Şimdiki aktif dosyadan bir diff dosyası oluştur" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "_Eskiye dön" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "" #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "_Geçmiş (kayıt)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "Mevcut dosyanın kayıtlarını gösterir" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "_Orijinal" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 msgid "Shows the original of the current file" msgstr "Mevcut dosyanın orijinalini gösterir" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "S_ürüm Kontrolüne Ekle" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "Dosyayı depoya ekle." #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "Sürüm Kont_rolünden Çıkart" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "Dosyayı depodan kaldır." -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "_Dizin" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "Şimdiki aktif dosyanın dizininden bir diff dosyası oluştur" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "Mevcut klasörün kayıtlarını gösterir." -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "_Temel Dizin" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "Tüm yerel değişiklikleri geri al" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "Dosyanın farkını göster" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "Dizinin farkını göster" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "Değişiklikleri uygula" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "Durumu göster" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "Tek dosyayı eski haline getir" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "Dizini eski haline getir" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "Temel dizini eski haline getir" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "Dosyayı güncelle" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 msgid "_Version Control" msgstr "S_ürüm Kontrolü" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "_Durum" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "Durumu göster." -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 msgid "Update from remote repository." msgstr "Uzak depodan güncelle." #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "_Teslim Et" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "Değişiklikleri uygula." @@ -4593,80 +4680,79 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 msgid "Find File" msgstr "Dosya Ara" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "Şurada ara:" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "Büyük/küçük h_arf duyarlı" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "Hepsini yeniden yükle" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1283 msgid "Expand all" msgstr "Hepsini aç" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1287 msgid "Collapse all" msgstr "Tümünü Kapat" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "Hepsini aç" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 msgid "Find in Files" msgstr "Dosyalarda Ara" #. POSITION OF VIEW -#: ../markdown/src/conf.c:572 +#: ../markdown/src/conf.c:567 msgid "Position:" msgstr "Pozisyon:" -#: ../markdown/src/conf.c:578 +#: ../markdown/src/conf.c:573 msgid "Sidebar" msgstr "Yan panel" -#: ../markdown/src/conf.c:586 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "Mesaj Penceresi" -#: ../markdown/src/conf.c:600 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "Yazı Tipi:" -#: ../markdown/src/conf.c:618 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "Kod Yazı Tipi:" -#: ../markdown/src/conf.c:636 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "Arkaplan Rengi:" -#: ../markdown/src/conf.c:653 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "Önplan Rengi:" -#: ../markdown/src/conf.c:672 +#: ../markdown/src/conf.c:663 msgid "Select Template File" msgstr "Şablon Dosyası seçin" @@ -4682,6 +4768,161 @@ msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1034 +msgid "Go to previous string" +msgstr "Önceki metne git" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to next string" +msgstr "Sonraki metne git" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1052 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1056 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1067 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "Belgelendirme sekmesini aç/kapat" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Reflow the current translation string" +msgstr "Yürütülen fonksiyonu tamamla." + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1060 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1102 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "Seçenekler yüklenemedi: %s" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "\"%s\" dosya türü için yapılandırma dosyası bulunamadı: %s" + +#: ../pohelper/src/gph-plugin.c:1130 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "Seçenekler kaydedilemedi: %s" + +#: ../pohelper/src/gph-plugin.c:1185 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"%s eklentisi düzgün yüklenemedi.\n" +"Lütfen kurulumu kontrol edin." + +#: ../pohelper/src/gph-plugin.c:1225 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -4894,9 +5135,8 @@ msgstr "" #: ../scope/data/scope.glade.h:32 -#, fuzzy msgid "_Columns" -msgstr "S_ütun Modu" +msgstr "S_ütunlar" #: ../scope/data/scope.glade.h:33 msgid "Show _Group" @@ -5021,259 +5261,331 @@ msgstr "_İkili" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -msgid "_Inspect Variable" -msgstr "Değ_işkeni İncele" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 -msgid "Program Terminal" -msgstr "" +msgid "_Inspect Variable" +msgstr "Değ_işkeni İncele" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" msgstr "Takip yığını" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 msgid "Watches" msgstr "" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "Hafıza" -#: ../scope/data/scope.glade.h:74 -msgid "Debug Console" -msgstr "Hata Ayıklama Konsolu" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 msgid "Enter gdb command:" msgstr "GDB komutu girin:" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "Tabloya _çevir" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 msgid "_Frame" msgstr "_Çerçeve" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 #, fuzzy msgid "Setup Program" msgstr "program yok" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 msgid "En_vironment:" msgstr "Çevre:" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 msgid "_Load script:" msgstr "Betik Yük_le:" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 msgid "Program" msgstr "" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 msgid "Open on" msgstr "" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 msgid "g_db load" msgstr "" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 -#, fuzzy +#: ../scope/data/scope.glade.h:92 msgid "Update all _views" -msgstr "Görev lListesini Güncelle" +msgstr "T_üm görünümleri güncelle" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "Panel" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "_7-bit \\nnn" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 msgid "_member" msgstr "_üye" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 msgid "and" msgstr "ve" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 msgid "_argument" msgstr "" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 msgid "names" msgstr "isimler" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "Değerler" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" msgstr "" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "G_öster" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "İncele" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "İpuçlarını göster." -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "Diğerleri" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 msgid "Options" msgstr "Seçenekler" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 msgid "_Import" msgstr "İ_çe aktar" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" msgstr "" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "İncele" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 msgid "Object:" msgstr "Nesne:" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "-" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 msgid "Frame:" msgstr "Çerçeve:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "@" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "Ç_alıştırıldığında uygula" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "Genişlet" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 msgid "Start:" msgstr "Başlangıç:" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 #, fuzzy msgid "_Expand on apply" msgstr "Hepsini aç" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +msgid "Program Terminal" +msgstr "" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "Aralıklar" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "Kesme noktasını düzenle" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "Aralıklar" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "İzleme noktasını düzenle" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "İzleme noktasını düzenle" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "İzleme noktasını düzenle" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "İzleme noktasını düzenle" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "İzleme noktası ekle" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "yüklendi" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "Konuma git" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 msgid "Add Breakpoint" msgstr "Kesme noktası ekle" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 msgid "Add Watchpoint" msgstr "İzleme noktası ekle" @@ -5285,7 +5597,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, c-format msgid "Scope: %s." msgstr "Kapsam: %s" @@ -5304,60 +5617,61 @@ msgid "Program terminated." msgstr "Program sonlandırıldı." -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "%s." -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 msgid "..." msgstr "..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "geçersiz veri" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 msgid "out of scope" msgstr "kapsam dışında" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "Düzenle" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 msgid "Inspect variable" msgstr "Değişkeni incele" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5369,34 +5683,26 @@ msgid "Select File" msgstr "Dosya Seç" -#: ../scope/src/prefs.c:338 -msgid "Breaks" -msgstr "" - -#: ../scope/src/prefs.c:339 -msgid "Console" -msgstr "Konsol" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "Kapsam: %s: %s." -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 msgid "Scope: created configuration file." msgstr "Kapsam: yapılandırma dosyası yaratıldı." -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, fuzzy, c-format msgid "Could not load debug settings file %s: %s." msgstr "\"%s\" dosyası yüklenirken hata: %s" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, c-format msgid "" "%s: %s.\n" @@ -5407,15 +5713,15 @@ "\n" "Devam edilsin mi?" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5424,160 +5730,172 @@ msgstr "Kapsam Hata Ayıklayıcı" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 #, fuzzy msgid "Setup program" msgstr "program yok" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 msgid "Run/continue" msgstr "Çalıştır/devam et" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "Konuma git" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 msgid "Terminate" msgstr "Sonlandır" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "kesme noktası" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 msgid "GDB command" msgstr "GDB Komutu" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 msgid "Show terminal" msgstr "Terminaldi göster" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "Meşgul" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "Hazır" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "Askıda" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Load" msgstr "Yükle" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "İnşa eylemi aktifleştirildi. Hata ayıklamayı sonlandır?" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +msgid "Breaks" +msgstr "" + +#: ../scope/src/scope.c:526 +msgid "Console" +msgstr "Konsol" + +#: ../scope/src/scope.c:526 +msgid "Debug Console" +msgstr "Hata Ayıklama Konsolu" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr " çıktı" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr " çıkış kodu %s ile" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Send Signal" msgstr "Sİnyal gönder" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "Sinyali girin #:" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "İşlemi Sonlandır" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "Çıkış kodunu girin:" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 msgid "Running" msgstr "Çalışıyor" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 msgid "Stopped" msgstr "Durduruldu" -#: ../scope/src/utils.c:44 +#: ../scope/src/utils.c:45 #, c-format -msgid "%s: error %lu." -msgstr "" +msgid "%s: %s" +msgstr "%s: %s" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "Kapsam: [%s] okurken hata." -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "…" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "_Gönder" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "Me_şgul" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 msgid "GDB Command" msgstr "GDB Komutu" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "Dene:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "Kontrol Ediliyor" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "\"%s\" dosyası kontrol ediliyor (%d - %d satırları, %s kullanılıyor):" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "\"%s\" dosyası kontrol ediliyor (%s kullanılarak):" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "Kontrol edilen yazı düzgün yazılmış." -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "Enchant kütüphanesi yüklenemedi (%s)." -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "bilinmeyen hata (belki seçilen dil erişilebilir değil)" @@ -5667,17 +5985,17 @@ msgid "Ignore All" msgstr "Tümünü Yoksay" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "Varsayılan (%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "Yazarken imla denetimini uygula (şu anda ayarlı dil: %s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "İmla Denetimi Önerileri" @@ -5708,28 +6026,28 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "Seçim işlenirken birşeyler yolunda gitmedi. İptal ediliyor." -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 msgid "Convert selection to table" msgstr "Seçimi tabloya dönüştür" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "Tabloya _çevir" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "İşaretlenmiş listeyi tabloya çevirir." -#: ../treebrowser/src/treebrowser.c:122 +#: ../treebrowser/src/treebrowser.c:124 msgid "TreeBrowser" msgstr "AğaçGezgini" -#: ../treebrowser/src/treebrowser.c:123 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." @@ -5737,30 +6055,30 @@ "Bu eklenti Geany'e ağaç tarayıcı ekler. Bu sayede dosya sisteminde gezer " "gibi dosyaları açabilirsiniz." -#: ../treebrowser/src/treebrowser.c:432 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "%s: dosya veya dizin bulunamadı." -#: ../treebrowser/src/treebrowser.c:535 ../treebrowser/src/treebrowser.c:570 -#: ../treebrowser/src/treebrowser.c:672 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 msgid "(Empty)" msgstr "(Boş)" -#: ../treebrowser/src/treebrowser.c:974 +#: ../treebrowser/src/treebrowser.c:973 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "Ayarlanmış harici komut çalıştırılamadı '%s' (%s)." -#: ../treebrowser/src/treebrowser.c:1045 +#: ../treebrowser/src/treebrowser.c:1044 msgid "NewDirectory" msgstr "YeniDizin" -#: ../treebrowser/src/treebrowser.c:1047 +#: ../treebrowser/src/treebrowser.c:1046 msgid "NewFile" msgstr "YeniDosya" -#: ../treebrowser/src/treebrowser.c:1052 +#: ../treebrowser/src/treebrowser.c:1051 #, c-format msgid "" "Target file '%s' exists\n" @@ -5769,114 +6087,118 @@ "Hedef dosya '%s' var\n" ", onu gerçekten boş bir dosya ile değiştirmek mi istiyorsunuz?" -#: ../treebrowser/src/treebrowser.c:1096 +#: ../treebrowser/src/treebrowser.c:1097 #, c-format msgid "Do you really want to delete '%s' ?" msgstr "Gerçekten silmek istiyor musunuz: '%s' ?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1695 +#: ../treebrowser/src/treebrowser.c:1209 ../treebrowser/src/treebrowser.c:1740 msgid "Go up" msgstr "Yukarı git" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1710 +#: ../treebrowser/src/treebrowser.c:1213 ../treebrowser/src/treebrowser.c:1755 msgid "Set path from document" msgstr "Yolu belgeden ayarla" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" -msgstr "Harici olarak aç" +#: ../treebrowser/src/treebrowser.c:1217 +msgid "_Open externally" +msgstr "Harici _olarak aç" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1222 msgid "Open Terminal" msgstr "Terminali Aç" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1226 msgid "Set as root" msgstr "Kök olarak ata" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1700 -#: ../treebrowser/src/treebrowser.c:2063 +#: ../treebrowser/src/treebrowser.c:1231 ../treebrowser/src/treebrowser.c:1745 +#: ../treebrowser/src/treebrowser.c:2125 msgid "Refresh" msgstr "Yenile" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1235 +msgid "_Find in Files" +msgstr "Dosy_alarda Ara" + +#: ../treebrowser/src/treebrowser.c:1243 msgid "Create new directory" msgstr "Yeni dizin oluştur" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1247 msgid "Create new file" msgstr "Yeni dosya oluştur" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1251 msgid "Rename" msgstr "Yeniden adlandır" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1256 msgid "Delete" msgstr "Sil" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1264 #, c-format msgid "Close: %s" msgstr "Kapat: %s" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1269 #, c-format msgid "Close Child Documents " msgstr "Alt Dosyaları Kapat" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" -msgstr "Tam yolu panoya kopyala" +#: ../treebrowser/src/treebrowser.c:1274 +msgid "_Copy full path to clipboard" +msgstr "Tam yolu panoya _kopyala" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1977 +#: ../treebrowser/src/treebrowser.c:1294 ../treebrowser/src/treebrowser.c:2034 msgid "Show bookmarks" msgstr "Yer imlerini göster" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1931 +#: ../treebrowser/src/treebrowser.c:1299 ../treebrowser/src/treebrowser.c:1983 msgid "Show hidden files" msgstr "Gizli dosyaları göster" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1304 msgid "Show toolbars" msgstr "Araç çubuklarını göster" -#: ../treebrowser/src/treebrowser.c:1578 +#: ../treebrowser/src/treebrowser.c:1623 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "Hedef dosya '%s' zaten var, üzerine yazmak istiyor musunuz?" -#: ../treebrowser/src/treebrowser.c:1705 +#: ../treebrowser/src/treebrowser.c:1750 msgid "Home" msgstr "Ev" -#: ../treebrowser/src/treebrowser.c:1715 +#: ../treebrowser/src/treebrowser.c:1760 msgid "Track path" msgstr "" -#: ../treebrowser/src/treebrowser.c:1720 +#: ../treebrowser/src/treebrowser.c:1765 msgid "Hide bars" msgstr "Çubukları gizle" -#: ../treebrowser/src/treebrowser.c:1730 +#: ../treebrowser/src/treebrowser.c:1775 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1738 +#: ../treebrowser/src/treebrowser.c:1783 msgid "Addressbar for example '/projects/my-project'" msgstr "Adres satırı, örneğin '/projeler/benim-projem'" -#: ../treebrowser/src/treebrowser.c:1763 +#: ../treebrowser/src/treebrowser.c:1808 msgid "Tree Browser" msgstr "Ağaç Gezgini" -#: ../treebrowser/src/treebrowser.c:1895 +#: ../treebrowser/src/treebrowser.c:1947 msgid "External open command" msgstr "Harici açma komutu" -#: ../treebrowser/src/treebrowser.c:1900 +#: ../treebrowser/src/treebrowser.c:1952 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -5886,53 +6208,53 @@ "filename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Toolbar" msgstr "Araç Çubuğu" -#: ../treebrowser/src/treebrowser.c:1910 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Hidden" msgstr "Gizli" -#: ../treebrowser/src/treebrowser.c:1911 +#: ../treebrowser/src/treebrowser.c:1963 msgid "Top" msgstr "Üstte" -#: ../treebrowser/src/treebrowser.c:1912 +#: ../treebrowser/src/treebrowser.c:1964 msgid "Bottom" msgstr "Sonda" -#: ../treebrowser/src/treebrowser.c:1917 +#: ../treebrowser/src/treebrowser.c:1969 msgid "If position is changed, the option require plugin restart." msgstr "Eğer pozisyon değişirse eklentinin tekrar başlatılması gerekmektedir." -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1973 msgid "Show icons" msgstr "Simgeleri göster" -#: ../treebrowser/src/treebrowser.c:1923 +#: ../treebrowser/src/treebrowser.c:1975 msgid "None" msgstr "Hiçbiri" -#: ../treebrowser/src/treebrowser.c:1924 +#: ../treebrowser/src/treebrowser.c:1976 msgid "Base" msgstr "Temel" -#: ../treebrowser/src/treebrowser.c:1925 +#: ../treebrowser/src/treebrowser.c:1977 msgid "Content-type" msgstr "İçerik-türü" -#: ../treebrowser/src/treebrowser.c:1936 +#: ../treebrowser/src/treebrowser.c:1988 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" "Windows'da bu sadece '.' (nokta) ile başlayan dosyaların görünmemesini " "sağlar." -#: ../treebrowser/src/treebrowser.c:1938 +#: ../treebrowser/src/treebrowser.c:1990 msgid "Hide object files" msgstr "Nesne dosyalarını gizle" -#: ../treebrowser/src/treebrowser.c:1943 +#: ../treebrowser/src/treebrowser.c:1995 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" @@ -5940,47 +6262,55 @@ "Dahili oluşturulmuş dosyaları dosya tarayıcıda göstermez, bu *.o, *.obj. *." "so, *.dll, *.a, *.lib dosyalarını içerir." -#: ../treebrowser/src/treebrowser.c:1945 +#: ../treebrowser/src/treebrowser.c:1997 msgid "Reverse filter" msgstr "" -#: ../treebrowser/src/treebrowser.c:1950 +#: ../treebrowser/src/treebrowser.c:2002 msgid "Follow current document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1955 +#: ../treebrowser/src/treebrowser.c:2007 msgid "Single click, open document and focus it" msgstr "" -#: ../treebrowser/src/treebrowser.c:1960 +#: ../treebrowser/src/treebrowser.c:2012 msgid "Double click open directory" msgstr "Dizini açmak için çift tık" -#: ../treebrowser/src/treebrowser.c:1965 +#: ../treebrowser/src/treebrowser.c:2017 msgid "On delete file, close it if is opened" msgstr "Silme tuşu, eğer açık ise kapat" -#: ../treebrowser/src/treebrowser.c:1970 +#: ../treebrowser/src/treebrowser.c:2022 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2027 msgid "Show tree lines" msgstr "" -#: ../treebrowser/src/treebrowser.c:2053 +#: ../treebrowser/src/treebrowser.c:2039 +msgid "Open new files" +msgstr "Yeni dosya aç" + +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus File List" msgstr "Dosya Listesini Odakla" -#: ../treebrowser/src/treebrowser.c:2055 +#: ../treebrowser/src/treebrowser.c:2117 msgid "Focus Path Entry" msgstr "Yol Yazımını Odakla" -#: ../treebrowser/src/treebrowser.c:2057 +#: ../treebrowser/src/treebrowser.c:2119 msgid "Rename Object" msgstr "Nesneyi Yeniden adlandır" -#: ../treebrowser/src/treebrowser.c:2059 +#: ../treebrowser/src/treebrowser.c:2121 msgid "Create New File" msgstr "Yeni Dosya Oluştur" -#: ../treebrowser/src/treebrowser.c:2061 +#: ../treebrowser/src/treebrowser.c:2123 msgid "Create New Directory" msgstr "Yeni Dizin Oluştur" @@ -6045,44 +6375,44 @@ msgid "utility" msgstr "araç" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "%s:" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "_Yakınlaştırma" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 msgid "Flip panes orientation" msgstr "" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "Geri" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "İleri" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 msgid "Cancel loading" msgstr "Yüklemeyi iptal et" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "Geçerli sayfayı yenile" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" @@ -6270,9 +6600,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "tty geçici dizini belirtilmedi!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "tty geçici dizini bulunamadı!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "tty yardımcı program belirtilmedi!\n" @@ -6345,12 +6672,6 @@ #~ msgid "Delete selected breakpoint?" #~ msgstr "Seçilen kesme noktasını sil?" -#~ msgid "Edit watchpoint" -#~ msgstr "İzleme noktasını düzenle" - -#~ msgid "Edit breakpoint" -#~ msgstr "Kesme noktasını düzenle" - #~ msgid "Enabled" #~ msgstr "Etkinleştirildi" @@ -6455,9 +6776,6 @@ #~ msgid "(no program)" #~ msgstr "(program yok)" -#~ msgid "loaded" -#~ msgstr "yüklendi" - #~ msgid "starting" #~ msgstr "başlatılıyor" @@ -6551,10 +6869,6 @@ #~ msgid "Couldn't create tempfile" #~ msgstr "Yeni dosya oluştur" -#, fuzzy -#~ msgid "GeanyPG" -#~ msgstr "GeanyGDB" - #~ msgid "Yura Siamshka " #~ msgstr "Yura Siamshka " diff -Nru geany-plugins-1.24.0+20140222+git/po/zh_CN.po geany-plugins-1.24.1+dfsg/po/zh_CN.po --- geany-plugins-1.24.0+20140222+git/po/zh_CN.po 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/po/zh_CN.po 2014-04-12 14:28:39.000000000 +0000 @@ -5,9 +5,9 @@ # Xhacker Liu , 2009. msgid "" msgstr "" -"Project-Id-Version: Geany-plugins 1.23\n" +"Project-Id-Version: Geany-plugins 1.24\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-23 14:32+0100\n" +"POT-Creation-Date: 2014-03-30 19:33+0200\n" "PO-Revision-Date: 2009-10-30 08:44+0800\n" "Last-Translator: Xhacker Liu \n" "Language-Team: zh_CN <>\n" @@ -36,12 +36,12 @@ msgid "Contents" msgstr "内容" -#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:615 +#: ../addons/src/ao_bookmarklist.c:374 ../treebrowser/src/treebrowser.c:625 msgid "Bookmarks" msgstr "书签" #. complete update -#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2295 +#: ../addons/src/ao_tasks.c:373 ../geanyvc/src/geanyvc.c:2351 msgid "_Update" msgstr "更新(_U)" @@ -81,15 +81,15 @@ msgid "Context:" msgstr "内容" -#: ../addons/src/ao_xmltagging.c:56 +#: ../addons/src/ao_xmltagging.c:54 msgid "XML tagging" msgstr "" -#: ../addons/src/ao_xmltagging.c:67 +#: ../addons/src/ao_xmltagging.c:65 msgid "Tag name to be inserted:" msgstr "" -#: ../addons/src/ao_xmltagging.c:71 +#: ../addons/src/ao_xmltagging.c:69 #, c-format msgid "" "%s will be replaced with your current selection. Please keep care on your " @@ -161,11 +161,12 @@ msgid "Run XML tagging" msgstr "" -#: ../addons/src/addons.c:417 ../geanylatex/src/geanylatex.c:241 -#: ../geanyprj/src/geanyprj.c:174 ../geanysendmail/src/geanysendmail.c:121 -#: ../geanysendmail/src/geanysendmail.c:287 ../geanyvc/src/geanyvc.c:1798 +#: ../addons/src/addons.c:417 ../autoclose/src/autoclose.c:871 +#: ../geanylatex/src/geanylatex.c:241 ../geanyprj/src/geanyprj.c:174 +#: ../geanysendmail/src/geanysendmail.c:123 +#: ../geanysendmail/src/geanysendmail.c:291 ../geanyvc/src/geanyvc.c:1854 #: ../geniuspaste/src/geniuspaste.c:140 ../spellcheck/src/scplugin.c:146 -#: ../treebrowser/src/treebrowser.c:1880 +#: ../treebrowser/src/treebrowser.c:1933 #: ../updatechecker/src/updatechecker.c:253 msgid "Plugin configuration directory could not be created." msgstr "无法创建插件配置文件目录。" @@ -256,6 +257,14 @@ msgid "Enclose selection automatically (without having to press a keybinding)" msgstr "" +#: ../autoclose/src/autoclose.c:50 +msgid "Auto-close" +msgstr "" + +#: ../autoclose/src/autoclose.c:51 +msgid "Auto-close braces and brackets with lot of features" +msgstr "" + #: ../codenav/src/codenavigation.c:52 msgid "Code navigation" msgstr "代码导航" @@ -325,8 +334,8 @@ msgid "Various debuggers integration." msgstr "" -#: ../debugger/src/plugin.c:131 ../debugger/src/keys.c:76 -#: ../scope/data/scope.glade.h:125 ../scope/src/scope.c:225 +#: ../debugger/src/plugin.c:133 ../debugger/src/keys.c:76 +#: ../scope/data/scope.glade.h:124 ../scope/src/scope.c:226 #, fuzzy msgid "Debug" msgstr "调试器" @@ -471,7 +480,7 @@ msgid "Target" msgstr "Pages" -#: ../debugger/src/tabs.c:135 ../scope/data/scope.glade.h:69 +#: ../debugger/src/tabs.c:135 ../scope/src/scope.c:524 msgid "Breakpoints" msgstr "断点" @@ -514,24 +523,24 @@ msgstr "正在启动" #: ../debugger/src/keys.c:52 ../debugger/src/btnpanel.c:113 -#: ../scope/src/scope.c:67 +#: ../scope/src/scope.c:66 #, fuzzy msgid "Step into" msgstr "单步进入(_I)" #: ../debugger/src/keys.c:53 ../debugger/src/btnpanel.c:110 -#: ../scope/src/scope.c:68 +#: ../scope/src/scope.c:67 msgid "Step over" msgstr "" #: ../debugger/src/keys.c:54 ../debugger/src/btnpanel.c:122 -#: ../scope/src/scope.c:69 +#: ../scope/src/scope.c:68 #, fuzzy msgid "Step out" msgstr "单步进入(_I)" #: ../debugger/src/keys.c:55 ../debugger/src/btnpanel.c:125 -#: ../scope/src/scope.c:65 +#: ../scope/src/scope.c:64 #, fuzzy msgid "Run to cursor" msgstr "运行到位置" @@ -543,7 +552,7 @@ #: ../debugger/src/keys.c:57 #, fuzzy -msgid "Jump to the currect instruction" +msgid "Jump to the current instruction" msgstr "完成当前执行的函数。" #: ../debugger/src/watch_model.c:220 @@ -577,6 +586,14 @@ msgid "Save debug session data to a project" msgstr "" +#: ../defineformat/src/defineformat.c:56 +msgid "Define formatter" +msgstr "" + +#: ../defineformat/src/defineformat.c:57 +msgid "Automatically align backslash in multi-line defines" +msgstr "" + #. never search for more than this many chars #: ../devhelp/src/dhp.h:38 #, fuzzy @@ -690,7 +707,7 @@ msgstr "书籍" #. i18n: a documentation book -#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1760 +#: ../devhelp/devhelp/dh-link.c:255 ../geanylatex/src/geanylatex.c:1759 msgid "Book" msgstr "书籍" @@ -820,12 +837,12 @@ msgid "A developers' help browser for GNOME" msgstr "" -#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2010 +#: ../devhelp/devhelp/dh-window.c:759 ../geanyvc/src/geanyvc.c:2066 msgid "_File" msgstr "文件(_F)" -#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1815 -#: ../geanymacro/src/geanymacro.c:2112 +#: ../devhelp/devhelp/dh-window.c:760 ../geanymacro/src/geanymacro.c:1822 +#: ../geanymacro/src/geanymacro.c:2118 #, fuzzy msgid "_Edit" msgstr "Editor" @@ -1015,59 +1032,68 @@ msgid "Column mode, select to line / brace / anchor." msgstr "" -#: ../geanyextrasel/src/extrasel.c:482 +#: ../geanyextrasel/src/extrasel.c:502 msgid "E_xtra Selection" msgstr "" -#: ../geanyextrasel/src/extrasel.c:489 +#: ../geanyextrasel/src/extrasel.c:509 msgid "_Column Mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:494 +#: ../geanyextrasel/src/extrasel.c:514 msgid "Column mode" msgstr "" -#: ../geanyextrasel/src/extrasel.c:496 +#: ../geanyextrasel/src/extrasel.c:516 #, fuzzy msgid "Select to _Line" msgstr "选择字体" -#: ../geanyextrasel/src/extrasel.c:500 +#: ../geanyextrasel/src/extrasel.c:520 #, fuzzy msgid "Select to line" msgstr "选择字体" -#: ../geanyextrasel/src/extrasel.c:502 +#: ../geanyextrasel/src/extrasel.c:522 msgid "Select to Matching _Brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:506 +#: ../geanyextrasel/src/extrasel.c:526 msgid "Select to matching brace" msgstr "" -#: ../geanyextrasel/src/extrasel.c:510 +#: ../geanyextrasel/src/extrasel.c:528 +msgid "_Toggle Stream/Rectangular" +msgstr "" + +#: ../geanyextrasel/src/extrasel.c:532 +#, fuzzy +msgid "Convert selection" +msgstr "将选中部分左对齐" + +#: ../geanyextrasel/src/extrasel.c:537 msgid "_Set Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:514 +#: ../geanyextrasel/src/extrasel.c:541 msgid "Set anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:516 +#: ../geanyextrasel/src/extrasel.c:543 #, fuzzy msgid "Select to _Anchor" msgstr "选择字体" -#: ../geanyextrasel/src/extrasel.c:520 +#: ../geanyextrasel/src/extrasel.c:547 #, fuzzy msgid "Select to anchor" msgstr "选择字体" -#: ../geanyextrasel/src/extrasel.c:522 +#: ../geanyextrasel/src/extrasel.c:549 msgid "_Rectangle Select to Anchor" msgstr "" -#: ../geanyextrasel/src/extrasel.c:527 +#: ../geanyextrasel/src/extrasel.c:554 msgid "Rectangle select to anchor" msgstr "" @@ -1471,84 +1497,84 @@ msgid "Default documentation type for languages that does not have one set" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:37 ../geanyinsertnum/src/insertnum.c:329 -#: ../geanyinsertnum/src/insertnum.c:461 +#: ../geanyinsertnum/src/insertnum.c:44 ../geanyinsertnum/src/insertnum.c:337 +#: ../geanyinsertnum/src/insertnum.c:484 #, fuzzy msgid "Insert Numbers" msgstr "插入标签" -#: ../geanyinsertnum/src/insertnum.c:37 +#: ../geanyinsertnum/src/insertnum.c:44 msgid "Insert/Fill columns with numbers." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:140 +#: ../geanyinsertnum/src/insertnum.c:146 #, fuzzy msgid "Counting..." msgstr "继续(_C)" -#: ../geanyinsertnum/src/insertnum.c:188 +#: ../geanyinsertnum/src/insertnum.c:194 msgid "Preparing..." msgstr "" -#: ../geanyinsertnum/src/insertnum.c:194 +#: ../geanyinsertnum/src/insertnum.c:200 #, fuzzy msgid "Inserting..." msgstr "正在启动" -#: ../geanyinsertnum/src/insertnum.c:318 +#: ../geanyinsertnum/src/insertnum.c:333 msgid "For base 11 and above" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:341 +#: ../geanyinsertnum/src/insertnum.c:353 #, fuzzy msgid "_Start:" msgstr "状态(_S)" -#: ../geanyinsertnum/src/insertnum.c:346 +#: ../geanyinsertnum/src/insertnum.c:358 #, fuzzy msgid "S_tep:" msgstr "单步(_S)" -#: ../geanyinsertnum/src/insertnum.c:352 +#: ../geanyinsertnum/src/insertnum.c:364 #, fuzzy msgid "_Base:" msgstr "暂停(_P)" -#: ../geanyinsertnum/src/insertnum.c:363 +#: ../geanyinsertnum/src/insertnum.c:380 #, fuzzy msgid "Letters:" msgstr "书信" -#: ../geanyinsertnum/src/insertnum.c:366 +#: ../geanyinsertnum/src/insertnum.c:383 #, fuzzy msgid "_Upper" msgstr "更新(_U)" -#: ../geanyinsertnum/src/insertnum.c:371 +#: ../geanyinsertnum/src/insertnum.c:388 msgid "_Lower" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:376 +#: ../geanyinsertnum/src/insertnum.c:393 msgid "Base _prefix" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:378 +#: ../geanyinsertnum/src/insertnum.c:395 msgid "0 for octal, 0x for hex, + for positive decimal" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:380 +#: ../geanyinsertnum/src/insertnum.c:397 msgid "Padding:" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:382 +#: ../geanyinsertnum/src/insertnum.c:399 msgid "Sp_ace" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:385 +#: ../geanyinsertnum/src/insertnum.c:402 msgid "_Zero" msgstr "" -#: ../geanyinsertnum/src/insertnum.c:454 +#: ../geanyinsertnum/src/insertnum.c:477 #, fuzzy msgid "Insert _Numbers" msgstr "插入标签(_L)" @@ -1990,20 +2016,20 @@ msgid "BibTeX reference name:" msgstr "引用名称" -#: ../geanylatex/src/geanylatex.c:1680 +#: ../geanylatex/src/geanylatex.c:1679 msgid "Dear Sir or Madame" msgstr "亲爱的先生或女士" -#: ../geanylatex/src/geanylatex.c:1681 +#: ../geanylatex/src/geanylatex.c:1680 msgid "With kind regards" msgstr "亲切的问候" -#: ../geanylatex/src/geanylatex.c:1689 +#: ../geanylatex/src/geanylatex.c:1688 msgid "No template assigned. Aborting" msgstr "" #. Building the wizard-dialog and showing it -#: ../geanylatex/src/geanylatex.c:1716 +#: ../geanylatex/src/geanylatex.c:1715 msgid "LaTeX-Wizard" msgstr "LaTeX 向导" @@ -2011,80 +2037,80 @@ #. * Adds custom templates if there are any. If there are none just #. * adds default one #. TEMPLATE FILE -#: ../geanylatex/src/geanylatex.c:1731 ../markdown/src/conf.c:666 +#: ../geanylatex/src/geanylatex.c:1730 ../markdown/src/conf.c:659 msgid "Template:" msgstr "" -#: ../geanylatex/src/geanylatex.c:1735 +#: ../geanylatex/src/geanylatex.c:1734 msgid "Set the template which should be used for creating the new document" msgstr "" -#: ../geanylatex/src/geanylatex.c:1744 +#: ../geanylatex/src/geanylatex.c:1743 #, fuzzy msgid "Default" msgstr "默认(%s)" #. Documentclass -#: ../geanylatex/src/geanylatex.c:1755 +#: ../geanylatex/src/geanylatex.c:1754 msgid "Documentclass:" msgstr "文档类型:" -#: ../geanylatex/src/geanylatex.c:1758 +#: ../geanylatex/src/geanylatex.c:1757 msgid "Choose the kind of document you want to write" msgstr "选择您想要写哪种文档" -#: ../geanylatex/src/geanylatex.c:1762 +#: ../geanylatex/src/geanylatex.c:1761 msgid "Article" msgstr "文章" -#: ../geanylatex/src/geanylatex.c:1764 +#: ../geanylatex/src/geanylatex.c:1763 msgid "Report" msgstr "报告" -#: ../geanylatex/src/geanylatex.c:1766 +#: ../geanylatex/src/geanylatex.c:1765 msgid "Letter" msgstr "书信" -#: ../geanylatex/src/geanylatex.c:1768 +#: ../geanylatex/src/geanylatex.c:1767 msgid "Presentation" msgstr "简报" #. Encoding -#: ../geanylatex/src/geanylatex.c:1778 +#: ../geanylatex/src/geanylatex.c:1777 msgid "Encoding:" msgstr "编码:" -#: ../geanylatex/src/geanylatex.c:1782 +#: ../geanylatex/src/geanylatex.c:1781 msgid "Set the encoding for your new document" msgstr "为您的新文档设置编码" #. fontsize -#: ../geanylatex/src/geanylatex.c:1798 +#: ../geanylatex/src/geanylatex.c:1797 #, fuzzy msgid "Font size" msgstr "文字大小:" -#: ../geanylatex/src/geanylatex.c:1804 +#: ../geanylatex/src/geanylatex.c:1803 msgid "Set the default font size of your new document" msgstr "为您的新文档设置默认的文字大小" #. Author -#: ../geanylatex/src/geanylatex.c:1816 +#: ../geanylatex/src/geanylatex.c:1815 msgid "Author:" msgstr "作者:" -#: ../geanylatex/src/geanylatex.c:1819 +#: ../geanylatex/src/geanylatex.c:1818 msgid "" "Sets the value of the \\author command. In most cases this should be your " "name" msgstr "设置 \\author 命令的值。大多数情况下这应该是您的姓名。" #. Date -#: ../geanylatex/src/geanylatex.c:1833 +#: ../geanylatex/src/geanylatex.c:1832 msgid "Date:" msgstr "日期:" -#: ../geanylatex/src/geanylatex.c:1836 +#: ../geanylatex/src/geanylatex.c:1835 #, fuzzy msgid "" "Sets the value of the \\date command inside header of your new created LaTeX-" @@ -2095,39 +2121,39 @@ "名。如果您不需要固定的日期,设置为 \\today 是一个很好的决定。" #. Title of the new document -#: ../geanylatex/src/geanylatex.c:1848 +#: ../geanylatex/src/geanylatex.c:1847 msgid "Title:" msgstr "标题:" -#: ../geanylatex/src/geanylatex.c:1851 +#: ../geanylatex/src/geanylatex.c:1850 msgid "Sets the title of your new document." msgstr "设置您的新文档的标题。" #. Papersize -#: ../geanylatex/src/geanylatex.c:1860 +#: ../geanylatex/src/geanylatex.c:1859 msgid "Paper size:" msgstr "纸张尺寸:" -#: ../geanylatex/src/geanylatex.c:1863 +#: ../geanylatex/src/geanylatex.c:1862 msgid "Choose the paper format for the newly created document" msgstr "为新建文档选择纸张格式" #. Paper direction -#: ../geanylatex/src/geanylatex.c:1876 +#: ../geanylatex/src/geanylatex.c:1875 #, fuzzy msgid "Paper Orientation:" msgstr "简报" -#: ../geanylatex/src/geanylatex.c:1879 +#: ../geanylatex/src/geanylatex.c:1878 #, fuzzy msgid "Choose the paper orientation for the newly created document" msgstr "为新建文档选择纸张格式" -#: ../geanylatex/src/geanylatex.c:1900 +#: ../geanylatex/src/geanylatex.c:1899 msgid "Use KOMA-script classes if possible" msgstr "如果可能,使用 KOMA 脚本类" -#: ../geanylatex/src/geanylatex.c:1902 +#: ../geanylatex/src/geanylatex.c:1901 #, fuzzy msgid "" "Uses the KOMA-script classes by Markus Kohm.\n" @@ -2137,112 +2163,112 @@ "使用 Markus Kohm 的 KOMA 脚本类。\n" "注意:编译您的文档前需要安装这些类。" -#: ../geanylatex/src/geanylatex.c:1909 +#: ../geanylatex/src/geanylatex.c:1908 msgid "Use draft mode" msgstr "使用草稿模式" -#: ../geanylatex/src/geanylatex.c:1911 +#: ../geanylatex/src/geanylatex.c:1910 msgid "" "Set the draft flag inside new created documents to get documents with a " "number of debugging helpers" msgstr "在新建的文档中设置草稿标志使他人可以帮助调试。" -#: ../geanylatex/src/geanylatex.c:1928 +#: ../geanylatex/src/geanylatex.c:1927 msgid "Run LaTeX-Wizard" msgstr "运行 LaTeX 向导" -#: ../geanylatex/src/geanylatex.c:1930 +#: ../geanylatex/src/geanylatex.c:1929 msgid "Insert \\label" msgstr "插入 \\label" -#: ../geanylatex/src/geanylatex.c:1932 +#: ../geanylatex/src/geanylatex.c:1931 msgid "Insert \\ref" msgstr "插入 \\ref" -#: ../geanylatex/src/geanylatex.c:1934 +#: ../geanylatex/src/geanylatex.c:1933 msgid "Insert linebreak \\\\ " msgstr "插入断行 \\\\ " -#: ../geanylatex/src/geanylatex.c:1937 +#: ../geanylatex/src/geanylatex.c:1936 #, fuzzy msgid "Insert command" msgstr "插入环境" -#: ../geanylatex/src/geanylatex.c:1939 +#: ../geanylatex/src/geanylatex.c:1938 msgid "Turn input replacement on/off" msgstr "开/关输入替换" -#: ../geanylatex/src/geanylatex.c:1943 +#: ../geanylatex/src/geanylatex.c:1942 msgid "Replace special characters" msgstr "替换特殊字符" -#: ../geanylatex/src/geanylatex.c:1946 +#: ../geanylatex/src/geanylatex.c:1945 msgid "Run insert environment dialog" msgstr "运行插入环境对话框" -#: ../geanylatex/src/geanylatex.c:1948 +#: ../geanylatex/src/geanylatex.c:1947 msgid "Insert \\item" msgstr "插入 \\item" -#: ../geanylatex/src/geanylatex.c:1950 +#: ../geanylatex/src/geanylatex.c:1949 msgid "Format selection in bold font face" msgstr "将选中部分变为粗体" -#: ../geanylatex/src/geanylatex.c:1952 +#: ../geanylatex/src/geanylatex.c:1951 msgid "Format selection in italic font face" msgstr "将选中部分变为斜体" -#: ../geanylatex/src/geanylatex.c:1954 +#: ../geanylatex/src/geanylatex.c:1953 msgid "Format selection in typewriter font face" msgstr "将选中部分变为打字机字体" -#: ../geanylatex/src/geanylatex.c:1956 +#: ../geanylatex/src/geanylatex.c:1955 msgid "Format selection centered" msgstr "将选中部分居中" -#: ../geanylatex/src/geanylatex.c:1958 +#: ../geanylatex/src/geanylatex.c:1957 msgid "Format selection left-aligned" msgstr "将选中部分左对齐" -#: ../geanylatex/src/geanylatex.c:1960 +#: ../geanylatex/src/geanylatex.c:1959 #, fuzzy msgid "Format selection right-aligned" msgstr "将选中部分右对齐" -#: ../geanylatex/src/geanylatex.c:1963 +#: ../geanylatex/src/geanylatex.c:1962 msgid "Insert description list" msgstr "" -#: ../geanylatex/src/geanylatex.c:1966 +#: ../geanylatex/src/geanylatex.c:1965 #, fuzzy msgid "Insert itemize list" msgstr "插入 \\item" -#: ../geanylatex/src/geanylatex.c:1969 +#: ../geanylatex/src/geanylatex.c:1968 #, fuzzy msgid "Insert enumerate list" msgstr "插入 Lipsum 文本" -#: ../geanylatex/src/geanylatex.c:1972 +#: ../geanylatex/src/geanylatex.c:1971 msgid "Set selection one level up" msgstr "" -#: ../geanylatex/src/geanylatex.c:1975 +#: ../geanylatex/src/geanylatex.c:1974 #, fuzzy msgid "Set selection one level down" msgstr "将选中部分居中" -#: ../geanylatex/src/geanylatex.c:1978 +#: ../geanylatex/src/geanylatex.c:1977 #, fuzzy msgid "Insert \\usepackage{}" msgstr "插入 \\label" -#: ../geanylatex/src/geanylatex.c:1981 +#: ../geanylatex/src/geanylatex.c:1980 #, fuzzy msgid "Insert BibTeX reference dialog" msgstr "插入引用" -#: ../geanylatex/src/geanylatex.c:1988 +#: ../geanylatex/src/geanylatex.c:1987 msgid "" "GeanyLaTeX is a plugin to improve support for LaTeX in Geany.\n" "\n" @@ -2252,129 +2278,129 @@ "\n" "请将所有 bug 或 功能请求 报告给作者。" -#: ../geanylatex/src/geanylatex.c:2026 +#: ../geanylatex/src/geanylatex.c:2025 msgid "" "glatex_set_autocompletion_contextsize has been initialized with an invalid " "value. Default value taken. Please check your configuration file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2048 ../geanylatex/src/geanylatex.c:2055 +#: ../geanylatex/src/geanylatex.c:2047 ../geanylatex/src/geanylatex.c:2054 msgid "page \\pageref{{{reference}}}" msgstr "" -#: ../geanylatex/src/geanylatex.c:2052 ../geanylatex/src/geanylatex.c:2059 +#: ../geanylatex/src/geanylatex.c:2051 ../geanylatex/src/geanylatex.c:2058 msgid "\\ref{{{reference}}}, page \\pageref{{{reference}}}" msgstr "" #. Build up menu for menubar -#: ../geanylatex/src/geanylatex.c:2107 +#: ../geanylatex/src/geanylatex.c:2106 msgid "_LaTeX" msgstr "_LaTeX" #. Filling up menubar menus #. LaTeX menu -#: ../geanylatex/src/geanylatex.c:2116 ../geanylatex/src/geanylatex.c:2328 +#: ../geanylatex/src/geanylatex.c:2115 ../geanylatex/src/geanylatex.c:2327 msgid "LaTeX-_Wizard" msgstr "LaTeX 向导(_W)" -#: ../geanylatex/src/geanylatex.c:2119 ../geanylatex/src/geanylatex.c:2331 +#: ../geanylatex/src/geanylatex.c:2118 ../geanylatex/src/geanylatex.c:2330 msgid "Starts a Wizard to easily create LaTeX-documents" msgstr "启动一个向导轻松创建 LaTeX 文档" -#: ../geanylatex/src/geanylatex.c:2124 +#: ../geanylatex/src/geanylatex.c:2123 #, fuzzy msgid "I_nsert Special Character" msgstr "插入特殊字符(_S)" -#: ../geanylatex/src/geanylatex.c:2126 +#: ../geanylatex/src/geanylatex.c:2125 msgid "Helps to use some not very common letters and signs" msgstr "帮助您使用一些不常用的字符" -#: ../geanylatex/src/geanylatex.c:2136 +#: ../geanylatex/src/geanylatex.c:2135 msgid "Insert _Reference" msgstr "插入引用(_R)" -#: ../geanylatex/src/geanylatex.c:2138 +#: ../geanylatex/src/geanylatex.c:2137 msgid "Inserting references to the document" msgstr "向文档中插入引用" -#: ../geanylatex/src/geanylatex.c:2143 +#: ../geanylatex/src/geanylatex.c:2142 msgid "Insert _Label" msgstr "插入标签(_L)" -#: ../geanylatex/src/geanylatex.c:2145 +#: ../geanylatex/src/geanylatex.c:2144 msgid "Helps at inserting labels to a document" msgstr "帮助您向文档中插入标签" -#: ../geanylatex/src/geanylatex.c:2151 +#: ../geanylatex/src/geanylatex.c:2150 msgid "Insert _Environment" msgstr "插入环境(_E)" -#: ../geanylatex/src/geanylatex.c:2153 +#: ../geanylatex/src/geanylatex.c:2152 msgid "Helps at inserting an environment a document" msgstr "帮助您向文档中插入环境" -#: ../geanylatex/src/geanylatex.c:2159 +#: ../geanylatex/src/geanylatex.c:2158 #, fuzzy msgid "Insert P_ackage" msgstr "插入标签(_L)" -#: ../geanylatex/src/geanylatex.c:2161 +#: ../geanylatex/src/geanylatex.c:2160 msgid "A small dialog to insert \\usepackage{} into header of current file" msgstr "" -#: ../geanylatex/src/geanylatex.c:2166 ../scope/data/scope.glade.h:58 +#: ../geanylatex/src/geanylatex.c:2165 ../scope/data/scope.glade.h:58 msgid "_Format" msgstr "格式(_F)" #. Add font size menu -#: ../geanylatex/src/geanylatex.c:2183 +#: ../geanylatex/src/geanylatex.c:2182 #, fuzzy msgid "F_ont size" msgstr "文字大小:" -#: ../geanylatex/src/geanylatex.c:2201 +#: ../geanylatex/src/geanylatex.c:2200 msgid "_Special Character Replacement" msgstr "特殊字符替换(_S)" -#: ../geanylatex/src/geanylatex.c:2209 +#: ../geanylatex/src/geanylatex.c:2208 msgid "Bulk _Replace Special Characters" msgstr "批量替换特殊字符(_R)" -#: ../geanylatex/src/geanylatex.c:2211 +#: ../geanylatex/src/geanylatex.c:2210 #, fuzzy msgid "_Replace selected special characters with TeX substitutes" msgstr "用 TeX 格式替换选中的特殊字符(_R)" -#: ../geanylatex/src/geanylatex.c:2219 +#: ../geanylatex/src/geanylatex.c:2218 msgid "Toggle _Special Character Replacement" msgstr "开关特殊字符替换(_S)" -#: ../geanylatex/src/geanylatex.c:2230 +#: ../geanylatex/src/geanylatex.c:2229 #, fuzzy msgid "Insert _Command" msgstr "插入环境(_E)" -#: ../geanylatex/src/geanylatex.c:2232 +#: ../geanylatex/src/geanylatex.c:2231 #, fuzzy msgid "Inserting costumized command to document" msgstr "向文档中插入引用" -#: ../geanylatex/src/geanylatex.c:2257 +#: ../geanylatex/src/geanylatex.c:2256 #, fuzzy msgid "_BibTeX" msgstr "_BibTeX" -#: ../geanylatex/src/geanylatex.c:2265 +#: ../geanylatex/src/geanylatex.c:2264 #, fuzzy msgid "Insert B_ibTeX reference" msgstr "插入引用(_R)" -#: ../geanylatex/src/geanylatex.c:2267 +#: ../geanylatex/src/geanylatex.c:2266 msgid "Helps to insert a reference out of BibTeX files" msgstr "" -#: ../geanylatex/src/geanylatex.c:2272 +#: ../geanylatex/src/geanylatex.c:2271 #, fuzzy msgid "_BibTeX entries" msgstr "_BibTeX" @@ -2538,16 +2564,16 @@ msgid "Creating dummy text with Geany" msgstr "用 Geany 创建空虚的文字" -#: ../geanylipsum/src/geanylipsum.c:86 +#: ../geanylipsum/src/geanylipsum.c:89 msgid "Lipsum-Generator" msgstr "Lipsum 生成器" -#: ../geanylipsum/src/geanylipsum.c:87 +#: ../geanylipsum/src/geanylipsum.c:90 msgid "Enter the length of Lipsum text here" msgstr "输入 Lipsum 文本的长度" #. Building menu entry -#: ../geanylipsum/src/geanylipsum.c:163 +#: ../geanylipsum/src/geanylipsum.c:164 msgid "_Lipsum" msgstr "_Lipsum" @@ -2685,19 +2711,19 @@ msgid "Browse..." msgstr "浏览..." -#: ../geanylua/gsdlg.c:175 +#: ../geanylua/gsdlg.c:176 msgid "Select Color" msgstr "选择颜色" -#: ../geanylua/gsdlg.c:205 +#: ../geanylua/gsdlg.c:207 msgid "Choose..." msgstr "选择..." -#: ../geanylua/gsdlg.c:226 +#: ../geanylua/gsdlg.c:228 msgid "Select Font" msgstr "选择字体" -#: ../geanylua/gsdlg.c:253 +#: ../geanylua/gsdlg.c:255 msgid "Select..." msgstr "选取..." @@ -2728,7 +2754,7 @@ "在模块“%s”的函数 %s() 中出现错误:\n" "没有给命令“%s”传递足够的参数。\n" -#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:398 +#: ../geanylua/glspi_sci.c:652 ../geanylua/glspi_app.c:396 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2768,7 +2794,7 @@ msgid "Save file" msgstr "保存文件" -#: ../geanylua/glspi_dlg.c:436 +#: ../geanylua/glspi_dlg.c:438 #, c-format msgid "" "Error in module \"%s\" at function pickfile():\n" @@ -2777,7 +2803,7 @@ "在模块“%s”的函数 pickfile() 中出现错误:\n" "参数 #3 分析过滤器字符串失败。\n" -#: ../geanylua/glspi_dlg.c:486 +#: ../geanylua/glspi_dlg.c:489 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2820,7 +2846,7 @@ "%s 插件未能正确加载。\n" "请检查您的安装。" -#: ../geanylua/glspi_app.c:19 +#: ../geanylua/glspi_app.c:21 #, fuzzy, c-format msgid "" "%s %s: %s\n" @@ -2829,7 +2855,7 @@ "%s %s: %s\n" "Copyright (c) 2007-2008 " -#: ../geanylua/glspi_app.c:149 +#: ../geanylua/glspi_app.c:151 #, c-format msgid "" "Error in module \"%s\" at function %s():\n" @@ -2838,7 +2864,7 @@ "在模块“%s”的函数 %s() 中出现错误:\n" " 参数 #1 未找到小工具“%s”。\n" -#: ../geanylua/glspi_app.c:158 +#: ../geanylua/glspi_app.c:160 #, c-format msgid "" "Error in module \"%s\" at function %s() argument #2:\n" @@ -3213,6 +3239,21 @@ "duplicate line" msgstr "" +#: ../geanymacro/src/geanymacro.c:150 +#, fuzzy +msgid "Search for next \"\"" +msgstr "插入环境" + +#: ../geanymacro/src/geanymacro.c:151 +#, fuzzy +msgid "Search for previous \"\"" +msgstr "插入环境" + +#: ../geanymacro/src/geanymacro.c:152 +#, fuzzy +msgid "Set start of search to beginning of selection" +msgstr "选择字体" + #: ../geanymacro/src/geanymacro.c:181 #, fuzzy msgid "Macros" @@ -3417,12 +3458,12 @@ #. create buttons #: ../geanymacro/src/geanymacro.c:1393 ../geanymacro/src/geanymacro.c:1536 -#: ../geanymacro/src/geanymacro.c:1819 ../geanymacro/src/geanymacro.c:2116 +#: ../geanymacro/src/geanymacro.c:1826 ../geanymacro/src/geanymacro.c:2122 msgid "_Ok" msgstr "" #: ../geanymacro/src/geanymacro.c:1394 ../geanymacro/src/geanymacro.c:1537 -#: ../geanymacro/src/geanymacro.c:1820 +#: ../geanymacro/src/geanymacro.c:1827 #, fuzzy msgid "_Cancel" msgstr "编码:" @@ -3440,7 +3481,7 @@ msgid "Search for contents of clipboard" msgstr "" -#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:92 +#: ../geanymacro/src/geanymacro.c:1424 ../gproject/src/gproject-sidebar.c:101 msgid "Search for:" msgstr "" @@ -3476,61 +3517,61 @@ msgid "Text:" msgstr "内容" -#: ../geanymacro/src/geanymacro.c:1571 ../geanymacro/src/geanymacro.c:1755 +#: ../geanymacro/src/geanymacro.c:1570 ../geanymacro/src/geanymacro.c:1758 #, c-format msgid "Insert/replace with \"%s\"" msgstr "" #. create dialog box -#: ../geanymacro/src/geanymacro.c:1731 +#: ../geanymacro/src/geanymacro.c:1735 #, fuzzy, c-format msgid "Edit: %s" msgstr "编辑观察点" #. add column -#: ../geanymacro/src/geanymacro.c:1794 +#: ../geanymacro/src/geanymacro.c:1801 msgid "Event" msgstr "" #. add buttons -#: ../geanymacro/src/geanymacro.c:1809 +#: ../geanymacro/src/geanymacro.c:1816 msgid "Move _Up" msgstr "" -#: ../geanymacro/src/geanymacro.c:1811 +#: ../geanymacro/src/geanymacro.c:1818 msgid "Move Do_wn" msgstr "" -#: ../geanymacro/src/geanymacro.c:1813 +#: ../geanymacro/src/geanymacro.c:1820 msgid "New _Above" msgstr "" -#: ../geanymacro/src/geanymacro.c:1814 +#: ../geanymacro/src/geanymacro.c:1821 msgid "New _Below" msgstr "" -#: ../geanymacro/src/geanymacro.c:1817 ../geanymacro/src/geanymacro.c:2114 +#: ../geanymacro/src/geanymacro.c:1824 ../geanymacro/src/geanymacro.c:2120 #, fuzzy msgid "_Delete" msgstr "删除项目" #. create dialog box -#: ../geanymacro/src/geanymacro.c:2059 +#: ../geanymacro/src/geanymacro.c:2065 #, fuzzy msgid "Edit Macros" msgstr "编辑观察点" -#: ../geanymacro/src/geanymacro.c:2089 +#: ../geanymacro/src/geanymacro.c:2095 msgid "Macro Name" msgstr "" -#: ../geanymacro/src/geanymacro.c:2095 +#: ../geanymacro/src/geanymacro.c:2101 #, fuzzy msgid "Key Trigger" msgstr "访问触发器" #. add buttons -#: ../geanymacro/src/geanymacro.c:2110 +#: ../geanymacro/src/geanymacro.c:2116 msgid "_Re-Record" msgstr "" @@ -3549,6 +3590,33 @@ msgid "_Edit Macros" msgstr "" +#. *< \brief It's the information message about geany mini script +#: ../geanyminiscript/src/gms_gui.c:129 +msgid "" +"GMS : Geany Mini-Script filter Plugin\n" +"This plugin is a tool to apply a script filter on:\n" +" o the text selection,\n" +" o the current document,\n" +" o all documents of the current session.\n" +"\n" +"The filter type can be:\n" +" o Unix shell script,\n" +" o perl script,\n" +" o python script,\n" +" o sed commands,\n" +" o awk script.\n" +"\n" +"AUTHOR\n" +" Written by Pascal BURLOT (December,2008)\n" +"\n" +"LICENSE:\n" +"This program is free software; you can redistribute\n" +"it and/or modify it under the terms of the GNU \n" +"General Public License as published by the Free\n" +"Software Foundation; either version 2 of the License,\n" +"or (at your option) any later version." +msgstr "" + #: ../geanyminiscript/src/gms_gui.c:253 msgid "Load Mini-Script File" msgstr "" @@ -3557,114 +3625,113 @@ msgid "Save Mini-Script File" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:418 +#: ../geanyminiscript/src/gms_gui.c:419 msgid "Mini-Script Filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:446 +#: ../geanyminiscript/src/gms_gui.c:445 msgid "Clear the mini-script window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:451 +#: ../geanyminiscript/src/gms_gui.c:450 msgid "Load a mini-script into this window" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:456 +#: ../geanyminiscript/src/gms_gui.c:455 msgid "Save the mini-script into a file" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:461 +#: ../geanyminiscript/src/gms_gui.c:460 #, fuzzy msgid "Display a information about the mini-script plugin" msgstr "显示选定项的更多信息。" -#: ../geanyminiscript/src/gms_gui.c:469 +#: ../geanyminiscript/src/gms_gui.c:468 msgid "select the mini-script type" msgstr "" #. Hbox : Radio bouttons for choosing the input: #. * selection/current document/all documents of the current session -#: ../geanyminiscript/src/gms_gui.c:500 +#: ../geanyminiscript/src/gms_gui.c:499 msgid "filter input" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:502 +#: ../geanyminiscript/src/gms_gui.c:501 msgid "select the input of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:508 +#: ../geanyminiscript/src/gms_gui.c:507 #, fuzzy msgid "selection" msgstr "选择字体" -#: ../geanyminiscript/src/gms_gui.c:509 +#: ../geanyminiscript/src/gms_gui.c:508 #, fuzzy msgid "document" msgstr "将文档作为邮件发送" -#: ../geanyminiscript/src/gms_gui.c:510 +#: ../geanyminiscript/src/gms_gui.c:509 msgid "session" msgstr "" #. Hbox : Radio bouttons for choosing the output: #. * current document/ or new document -#: ../geanyminiscript/src/gms_gui.c:519 +#: ../geanyminiscript/src/gms_gui.c:518 msgid "filter output" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:521 +#: ../geanyminiscript/src/gms_gui.c:520 msgid "select the output of mini-script filter" msgstr "" -#: ../geanyminiscript/src/gms_gui.c:527 +#: ../geanyminiscript/src/gms_gui.c:526 msgid "Current Doc." msgstr "" -#: ../geanyminiscript/src/gms_gui.c:528 +#: ../geanyminiscript/src/gms_gui.c:527 #, fuzzy msgid "New Doc." msgstr "新项目" -#: ../geanyminiscript/src/gms_gui.c:749 +#: ../geanyminiscript/src/gms_gui.c:748 msgid "script configuration" msgstr "" -#. All plugins must set name, description, version and author. #: ../geanyminiscript/src/gms.c:58 #, fuzzy msgid "Mini Script" msgstr "Lua 脚本" -#: ../geanyminiscript/src/gms.c:58 +#: ../geanyminiscript/src/gms.c:59 msgid "" "A tool to apply a script filter on a text selection or current document(s)" msgstr "" -#: ../geanyminiscript/src/gms.c:59 +#: ../geanyminiscript/src/gms.c:60 msgid "Pascal BURLOT, a Geany user" msgstr "" #. Add an item to the Tools menu -#: ../geanyminiscript/src/gms.c:278 +#: ../geanyminiscript/src/gms.c:249 msgid "_Mini-Script" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:58 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:61 msgid "Numbered Bookmarks for Geany" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:923 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:927 #, c-format msgid "Unable to apply all markers to '%s' as all being used." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:925 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:969 -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1392 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:929 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:973 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1396 msgid "_Okay" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:967 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:971 #, c-format msgid "" "'%s' has been edited since it was last saved by geany. Marker positions may " @@ -3672,55 +3739,55 @@ "Press Ignore to try an load markers anyway." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:970 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:974 #, fuzzy msgid "_Ignore" msgstr "忽略全部" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1215 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1219 msgid "remember fold state" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1221 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1225 msgid "Center view when goto bookmark" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1228 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1232 #, fuzzy msgid "Move to start of line" msgstr "将选中部分左对齐" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1229 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1233 msgid "Move to remembered position in line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1230 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1234 msgid "Move to position in current line" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1231 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1235 #, fuzzy msgid "Move to End of line" msgstr "将选中部分左对齐" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1237 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1241 msgid "Save file settings with program settings" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1238 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1242 msgid "Save file settings to filename with suffix" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1243 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1247 msgid "remember normal Bookmarks" msgstr "" #. create dialog box -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1263 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1267 msgid "Numbered Bookmarks help" msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1270 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1274 msgid "" "This Plugin implements Numbered Bookmarks in Geany, as well as remembering " "the state of folds, and positions of standard non-numbered bookmarks when a " @@ -3736,7 +3803,7 @@ "previously set bookmark, press Ctrl+a number from 0 to 9." msgstr "" -#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1391 +#: ../geanynumberedbookmarks/src/geanynumberedbookmarks.c:1395 msgid "Unable to apply markers as all being used." msgstr "" @@ -3820,36 +3887,36 @@ msgstr "选择文件" #. shouldn't get here -#: ../geanypg/src/pinentry.c:107 +#: ../geanypg/src/pinentry.c:111 msgid "Could not use pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:119 +#: ../geanypg/src/pinentry.c:123 msgid "Unexpected output from pinentry." msgstr "" #. read the rest of the first line after OK -#: ../geanypg/src/pinentry.c:127 +#: ../geanypg/src/pinentry.c:131 msgid "Passphrase entry" msgstr "" -#: ../geanypg/src/pinentry.c:131 +#: ../geanypg/src/pinentry.c:135 msgid "Passphrase" msgstr "" -#: ../geanypg/src/pinentry.c:136 +#: ../geanypg/src/pinentry.c:140 msgid "Enter passphrase for" msgstr "" -#: ../geanypg/src/pinentry.c:167 +#: ../geanypg/src/pinentry.c:171 msgid "pinentry gave error" msgstr "" -#: ../geanypg/src/pinentry.c:170 +#: ../geanypg/src/pinentry.c:174 msgid "Unexpected error from pinentry." msgstr "" -#: ../geanypg/src/pinentry.c:195 +#: ../geanypg/src/pinentry.c:199 msgid "" "Error, Passphrase input without using gpg-agent is not supported on Windows " "yet." @@ -3859,8 +3926,8 @@ msgid "a key with fingerprint" msgstr "" -#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:522 -#: ../spellcheck/src/gui.c:533 +#: ../geanypg/src/verify_aux.c:66 ../spellcheck/src/gui.c:527 +#: ../spellcheck/src/gui.c:538 msgid "unknown" msgstr "未知" @@ -4021,7 +4088,7 @@ msgstr "打开文件" #: ../geanyprj/src/geanyprj.c:38 ../geanyprj/src/sidebar.c:456 -#: ../gproject/src/gproject-sidebar.c:822 +#: ../gproject/src/gproject-sidebar.c:870 msgid "Project" msgstr "项目" @@ -4050,7 +4117,7 @@ msgid "C_reate" msgstr "创建(_R)" -#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:116 +#: ../geanyprj/src/menu.c:123 ../scope/data/scope.glade.h:114 msgid "Name:" msgstr "名称:" @@ -4126,7 +4193,7 @@ msgid "Remove File" msgstr "移除文件" -#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:803 +#: ../geanyprj/src/sidebar.c:240 ../gproject/src/gproject-sidebar.c:849 msgid "H_ide Sidebar" msgstr "隐藏侧栏(_I)" @@ -4135,6 +4202,49 @@ msgid "Project \"%s\" opened." msgstr "项目“%s”已打开。" +#: ../geanypy/src/geanypy-plugin.c:34 +msgid "GeanyPy" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:35 +msgid "Python plugins support" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:77 +#, c-format +msgid "Unable to pre-load Python library: %s." +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:157 +msgid "Failed to import manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:166 +msgid "Failed to retrieve PluginManager from manager module" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:182 +#, fuzzy +msgid "System plugin directory not found." +msgstr "未找到 tty 临时目录!\n" + +#: ../geanypy/src/geanypy-plugin.c:211 +msgid "Unable to instantiate new PluginManager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:227 +msgid "Unable to get show_all() method on plugin manager" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:255 +#, c-format +msgid "Unable to create Python plugins directory: %s: %s" +msgstr "" + +#: ../geanypy/src/geanypy-plugin.c:266 +msgid "Python Plugin Manager" +msgstr "" + #: ../geanysendmail/src/geanysendmail.c:43 msgid "GeanySendMail" msgstr "GeanySendMail" @@ -4154,42 +4264,42 @@ msgid "Enter the recipient's e-mail address:" msgstr "输入收件人的电子邮件地址:" -#: ../geanysendmail/src/geanysendmail.c:136 +#: ../geanysendmail/src/geanysendmail.c:138 msgid "Filename placeholder not found. The executed command might have failed." msgstr "没有找到文件名的占位符。执行的命令可能会失败。" -#: ../geanysendmail/src/geanysendmail.c:142 +#: ../geanysendmail/src/geanysendmail.c:144 msgid "" "Recipient address placeholder not found. The executed command might have " "failed." msgstr "没有找到收件人地址的占位符。执行的命令可能会失败。" -#: ../geanysendmail/src/geanysendmail.c:157 +#: ../geanysendmail/src/geanysendmail.c:159 msgid "Could not execute mailer. Please check your configuration." msgstr "无法执行邮件程序。请检查您的设置。" -#: ../geanysendmail/src/geanysendmail.c:166 +#: ../geanysendmail/src/geanysendmail.c:168 msgid "Please define a mail client first." msgstr "请先指定一个邮件客户端。" -#: ../geanysendmail/src/geanysendmail.c:171 +#: ../geanysendmail/src/geanysendmail.c:173 msgid "File has to be saved before sending." msgstr "文件在发送前必须保存。" -#: ../geanysendmail/src/geanysendmail.c:187 +#: ../geanysendmail/src/geanysendmail.c:191 msgid "Mail" msgstr "邮件" -#: ../geanysendmail/src/geanysendmail.c:218 +#: ../geanysendmail/src/geanysendmail.c:222 msgid "Send by mail" msgstr "用邮件发送" #. add a label and a text entry to the dialog -#: ../geanysendmail/src/geanysendmail.c:308 +#: ../geanysendmail/src/geanysendmail.c:312 msgid "Path and options for the mail client:" msgstr "邮件客户端路径和选项:" -#: ../geanysendmail/src/geanysendmail.c:316 +#: ../geanysendmail/src/geanysendmail.c:320 #, fuzzy msgid "" "Note: \n" @@ -4208,31 +4318,31 @@ "\tsylpheed --attach \"\\%f\" --compose \"\\%r\"\n" "\tmutt -s \"Sending '\\%b'\" -a \"\\%f\" \"\\%r\"" -#: ../geanysendmail/src/geanysendmail.c:326 +#: ../geanysendmail/src/geanysendmail.c:330 #, fuzzy msgid "Show toolbar icon" msgstr "显示工具提示。" -#: ../geanysendmail/src/geanysendmail.c:328 +#: ../geanysendmail/src/geanysendmail.c:332 msgid "Shows a icon in the toolbar to send file more easy." msgstr "在工具栏上显示一个图标,可以更轻松地发送文件。" -#: ../geanysendmail/src/geanysendmail.c:334 +#: ../geanysendmail/src/geanysendmail.c:338 #, fuzzy msgid "Use dialog for entering email address of recipients" msgstr "使用对话框输入收件人电子邮件地址" -#: ../geanysendmail/src/geanysendmail.c:356 +#: ../geanysendmail/src/geanysendmail.c:360 msgid "Send file by mail" msgstr "用邮件发送文件" #. Build up menu entry -#: ../geanysendmail/src/geanysendmail.c:379 +#: ../geanysendmail/src/geanysendmail.c:383 #, fuzzy msgid "_Mail document" msgstr "将文档作为邮件发送" -#: ../geanysendmail/src/geanysendmail.c:382 +#: ../geanysendmail/src/geanysendmail.c:386 msgid "" "Sends the opened file as unzipped attachment by any mailer from your $PATH" msgstr "将打开的文件作为未压缩的附件通过您 $PATH 中的邮件程序发送" @@ -4250,89 +4360,108 @@ msgid "geanyvc: s_spawn_sync error: %s" msgstr "geanyvc:s_spawn_sync 错误:%s" -#: ../geanyvc/src/geanyvc.c:609 ../geanyvc/src/geanyvc.c:620 +#: ../geanyvc/src/geanyvc.c:561 +#, c-format +msgid "File %s: action %s executed via %s." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:614 ../geanyvc/src/geanyvc.c:625 #, c-format msgid "geanyvc: vcdiff_file_activated: Unable to rename '%s' to '%s'" msgstr "geanyvc:vcdiff_file_activated:无法重命名“%s”为“%s”" -#: ../geanyvc/src/geanyvc.c:646 ../geanyvc/src/geanyvc.c:696 +#: ../geanyvc/src/geanyvc.c:651 ../geanyvc/src/geanyvc.c:701 msgid "No changes were made." msgstr "没有作出任何修改。" -#: ../geanyvc/src/geanyvc.c:723 +#: ../geanyvc/src/geanyvc.c:728 #, fuzzy msgid "No history available" msgstr "没有可用的历史" -#: ../geanyvc/src/geanyvc.c:916 ../geanyvc/src/geanyvc.c:924 +#: ../geanyvc/src/geanyvc.c:921 ../geanyvc/src/geanyvc.c:929 #, c-format msgid "Do you really want to revert: %s?" msgstr "您真的想恢复:%s?" -#: ../geanyvc/src/geanyvc.c:932 +#: ../geanyvc/src/geanyvc.c:937 #, c-format msgid "Do you really want to add: %s?" msgstr "您真的想添加:%s?" -#: ../geanyvc/src/geanyvc.c:939 +#: ../geanyvc/src/geanyvc.c:944 #, c-format msgid "Do you really want to remove: %s?" msgstr "您真的想移除:%s?" -#: ../geanyvc/src/geanyvc.c:962 +#: ../geanyvc/src/geanyvc.c:967 msgid "Do you really want to update?" msgstr "您真的想更新吗?" -#: ../geanyvc/src/geanyvc.c:1225 +#: ../geanyvc/src/geanyvc.c:1094 +msgid "" +"The resulting differences cannot be displayed because the changes are too " +"big to display here and would slow down the UI significantly.\n" +"\n" +"To view the differences, cancel this dialog and open the differences in " +"Geany directly by using the GeanyVC menu (Base Dirrectory -> Diff)." +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1243 msgid "Commit Y/N" msgstr "提交 Y/N" -#: ../geanyvc/src/geanyvc.c:1235 +#: ../geanyvc/src/geanyvc.c:1253 msgid "Status" msgstr "状态" -#: ../geanyvc/src/geanyvc.c:1242 +#: ../geanyvc/src/geanyvc.c:1260 msgid "Path" msgstr "路径" -#: ../geanyvc/src/geanyvc.c:1330 +#: ../geanyvc/src/geanyvc.c:1324 +#, c-format +msgid "Line: %d Column: %d" +msgstr "" + +#: ../geanyvc/src/geanyvc.c:1370 msgid "Commit" msgstr "提交" -#: ../geanyvc/src/geanyvc.c:1372 +#: ../geanyvc/src/geanyvc.c:1412 msgid "_De-/select all files" msgstr "全不选/全选所有文件(_D)" -#: ../geanyvc/src/geanyvc.c:1413 +#: ../geanyvc/src/geanyvc.c:1456 msgid "Commit message:" msgstr "提交信息:" -#: ../geanyvc/src/geanyvc.c:1426 +#: ../geanyvc/src/geanyvc.c:1475 #, fuzzy msgid "C_ommit" msgstr "提交" -#: ../geanyvc/src/geanyvc.c:1500 +#: ../geanyvc/src/geanyvc.c:1556 msgid "Nothing to commit." msgstr "没有可以提交的。" -#: ../geanyvc/src/geanyvc.c:1546 +#: ../geanyvc/src/geanyvc.c:1602 #, c-format msgid "Error initializing spell checking: %s" msgstr "初始化拼写检查时出现错误:%s" -#: ../geanyvc/src/geanyvc.c:1558 +#: ../geanyvc/src/geanyvc.c:1614 #, c-format msgid "" "Error while setting up language for spellchecking. Please check " "configuration. Error message was: %s" msgstr "为拼写检查设置语言时出现错误。请检查设置。错误信息:%s" -#: ../geanyvc/src/geanyvc.c:1834 +#: ../geanyvc/src/geanyvc.c:1890 msgid "Set Changed-flag for document tabs created by the plugin" msgstr "为插件创建的文档页设置已更改标记" -#: ../geanyvc/src/geanyvc.c:1837 +#: ../geanyvc/src/geanyvc.c:1893 msgid "" "If this option is activated, every new by the VC-plugin created document tab " "will be marked as changed. Even this option is useful in some cases, it " @@ -4341,255 +4470,255 @@ "如果开启这个选项,每个 VC 插件创建的文档页将被标记为已更改。某些情况下这个选" "项有用,但它也许也会带来许多烦人的“您要保存吗”对话框。" -#: ../geanyvc/src/geanyvc.c:1845 +#: ../geanyvc/src/geanyvc.c:1901 msgid "Confirm adding new files to a VCS" msgstr "确认添加新文件到VCS" -#: ../geanyvc/src/geanyvc.c:1848 +#: ../geanyvc/src/geanyvc.c:1904 msgid "Shows a confirmation dialog on adding a new (created) file to VCS." msgstr "添加新文件到VCS时显示一个确认对话框。" -#: ../geanyvc/src/geanyvc.c:1854 +#: ../geanyvc/src/geanyvc.c:1910 msgid "Maximize commit dialog" msgstr "最大化提交对话框" -#: ../geanyvc/src/geanyvc.c:1855 +#: ../geanyvc/src/geanyvc.c:1911 msgid "Show commit dialog maximize." msgstr "最大化显示提交对话框。" -#: ../geanyvc/src/geanyvc.c:1861 +#: ../geanyvc/src/geanyvc.c:1917 msgid "Use external diff viewer" msgstr "使用外部差异查看器" -#: ../geanyvc/src/geanyvc.c:1863 +#: ../geanyvc/src/geanyvc.c:1919 msgid "Use external diff viewer for file diff." msgstr "使用外部差异查看器查看文件差异。" -#: ../geanyvc/src/geanyvc.c:1869 +#: ../geanyvc/src/geanyvc.c:1925 msgid "Show VC entries at editor menu" msgstr "在编辑器菜单中显示VC条目" -#: ../geanyvc/src/geanyvc.c:1871 +#: ../geanyvc/src/geanyvc.c:1927 msgid "Show entries for VC functions inside editor menu" msgstr "在编辑器菜单中显示VC条目。" -#: ../geanyvc/src/geanyvc.c:1876 +#: ../geanyvc/src/geanyvc.c:1932 msgid "Attach menu to menubar" msgstr "" -#: ../geanyvc/src/geanyvc.c:1878 +#: ../geanyvc/src/geanyvc.c:1934 msgid "" "Whether menu for this plugin are getting placed either inside tools menu or " "directly inside Geany's menubar.Will take in account after next start of " "GeanyVC" msgstr "" -#: ../geanyvc/src/geanyvc.c:1886 +#: ../geanyvc/src/geanyvc.c:1942 msgid "Enable CVS" msgstr "启用 CVS" -#: ../geanyvc/src/geanyvc.c:1891 +#: ../geanyvc/src/geanyvc.c:1947 msgid "Enable GIT" msgstr "启用 GIT" -#: ../geanyvc/src/geanyvc.c:1896 +#: ../geanyvc/src/geanyvc.c:1952 msgid "Enable SVN" msgstr "启用 SVN" -#: ../geanyvc/src/geanyvc.c:1901 +#: ../geanyvc/src/geanyvc.c:1957 msgid "Enable SVK" msgstr "启用 SVK" -#: ../geanyvc/src/geanyvc.c:1906 +#: ../geanyvc/src/geanyvc.c:1962 msgid "Enable Bazaar" msgstr "启用 Bazaar" -#: ../geanyvc/src/geanyvc.c:1911 +#: ../geanyvc/src/geanyvc.c:1967 msgid "Enable Mercurial" msgstr "启用 Mercurial" -#: ../geanyvc/src/geanyvc.c:1917 +#: ../geanyvc/src/geanyvc.c:1973 msgid "Spellcheck language" msgstr "拼写检查语言" -#: ../geanyvc/src/geanyvc.c:2008 +#: ../geanyvc/src/geanyvc.c:2064 msgid "_VC file Actions" msgstr "_VC 文件操作" #. Diff of current file #. Diff of the current dir #. Complete diff of base directory -#: ../geanyvc/src/geanyvc.c:2014 ../geanyvc/src/geanyvc.c:2091 -#: ../geanyvc/src/geanyvc.c:2131 +#: ../geanyvc/src/geanyvc.c:2070 ../geanyvc/src/geanyvc.c:2147 +#: ../geanyvc/src/geanyvc.c:2187 msgid "_Diff" msgstr "差异(_D)" -#: ../geanyvc/src/geanyvc.c:2017 +#: ../geanyvc/src/geanyvc.c:2073 msgid "Make a diff from the current active file" msgstr "从当前活动的文件生成差异" #. Revert current file #. Revert current dir #. Revert everything -#: ../geanyvc/src/geanyvc.c:2022 ../geanyvc/src/geanyvc.c:2100 -#: ../geanyvc/src/geanyvc.c:2139 +#: ../geanyvc/src/geanyvc.c:2078 ../geanyvc/src/geanyvc.c:2156 +#: ../geanyvc/src/geanyvc.c:2195 msgid "_Revert" msgstr "恢复(_R)" -#: ../geanyvc/src/geanyvc.c:2025 +#: ../geanyvc/src/geanyvc.c:2081 msgid "Restore pristine working copy file (undo local edits)." msgstr "还原原始的工作复制文件(撤销本地编辑)。" #. Blame for current file -#: ../geanyvc/src/geanyvc.c:2034 +#: ../geanyvc/src/geanyvc.c:2090 msgid "_Blame" msgstr "" -#: ../geanyvc/src/geanyvc.c:2037 +#: ../geanyvc/src/geanyvc.c:2093 msgid "Shows the changes made at one file per revision and author." msgstr "显示文件每个作者和每次修订的更改。" #. History/log of current file #. History/log of the current dir #. Complete History/Log of base directory -#: ../geanyvc/src/geanyvc.c:2044 ../geanyvc/src/geanyvc.c:2110 -#: ../geanyvc/src/geanyvc.c:2151 +#: ../geanyvc/src/geanyvc.c:2100 ../geanyvc/src/geanyvc.c:2166 +#: ../geanyvc/src/geanyvc.c:2207 msgid "_History (log)" msgstr "历史(日志)(_H)" -#: ../geanyvc/src/geanyvc.c:2047 +#: ../geanyvc/src/geanyvc.c:2103 msgid "Shows the log of the current file" msgstr "显示当前文件日志" #. base version of the current file -#: ../geanyvc/src/geanyvc.c:2052 +#: ../geanyvc/src/geanyvc.c:2108 msgid "_Original" msgstr "原始(_O)" -#: ../geanyvc/src/geanyvc.c:2055 +#: ../geanyvc/src/geanyvc.c:2111 #, fuzzy msgid "Shows the original of the current file" msgstr "显示当前文件的最初版本" #. add current file -#: ../geanyvc/src/geanyvc.c:2063 +#: ../geanyvc/src/geanyvc.c:2119 msgid "_Add to Version Control" msgstr "添加到版本控制(_A)" -#: ../geanyvc/src/geanyvc.c:2065 +#: ../geanyvc/src/geanyvc.c:2121 msgid "Add file to repository." msgstr "添加文件到库。" #. remove current file -#: ../geanyvc/src/geanyvc.c:2071 +#: ../geanyvc/src/geanyvc.c:2127 msgid "_Remove from Version Control" msgstr "从版本控制中移除(_R)" -#: ../geanyvc/src/geanyvc.c:2073 +#: ../geanyvc/src/geanyvc.c:2129 msgid "Remove file from repository." msgstr "从库中移除文件。" -#: ../geanyvc/src/geanyvc.c:2088 +#: ../geanyvc/src/geanyvc.c:2144 msgid "_Directory" msgstr "目录(_D)" -#: ../geanyvc/src/geanyvc.c:2094 +#: ../geanyvc/src/geanyvc.c:2150 msgid "Make a diff from the directory of the current active file" msgstr "从文件夹生成与当前活动文件之间的差异" -#: ../geanyvc/src/geanyvc.c:2103 +#: ../geanyvc/src/geanyvc.c:2159 msgid "Restore original files in the current folder (undo local edits)." msgstr "还原当前文件夹中的原始文件(撤销本地编辑)。" -#: ../geanyvc/src/geanyvc.c:2113 +#: ../geanyvc/src/geanyvc.c:2169 msgid "Shows the log of the current directory" msgstr "显示当前目录日志" -#: ../geanyvc/src/geanyvc.c:2127 +#: ../geanyvc/src/geanyvc.c:2183 msgid "_Base Directory" msgstr "根目录(_B)" -#: ../geanyvc/src/geanyvc.c:2133 +#: ../geanyvc/src/geanyvc.c:2189 msgid "Make a diff from the top VC directory" msgstr "从顶层VC目录生成差异" -#: ../geanyvc/src/geanyvc.c:2141 +#: ../geanyvc/src/geanyvc.c:2197 msgid "Revert any local edits." msgstr "恢复所有本地编辑。" -#: ../geanyvc/src/geanyvc.c:2154 +#: ../geanyvc/src/geanyvc.c:2210 msgid "Shows the log of the top VC directory" msgstr "显示顶层VC目录差异" -#: ../geanyvc/src/geanyvc.c:2180 +#: ../geanyvc/src/geanyvc.c:2236 msgid "VC _Commit" msgstr "VC 提交(_C)" -#: ../geanyvc/src/geanyvc.c:2215 +#: ../geanyvc/src/geanyvc.c:2271 msgid "Show diff of file" msgstr "显示文件差异" -#: ../geanyvc/src/geanyvc.c:2217 +#: ../geanyvc/src/geanyvc.c:2273 msgid "Show diff of directory" msgstr "显示目录差异" -#: ../geanyvc/src/geanyvc.c:2219 +#: ../geanyvc/src/geanyvc.c:2275 msgid "Show diff of basedir" msgstr "显示根目录差异" -#: ../geanyvc/src/geanyvc.c:2222 +#: ../geanyvc/src/geanyvc.c:2278 msgid "Commit changes" msgstr "提交更改" -#: ../geanyvc/src/geanyvc.c:2224 +#: ../geanyvc/src/geanyvc.c:2280 msgid "Show status" msgstr "显示状态" -#: ../geanyvc/src/geanyvc.c:2226 +#: ../geanyvc/src/geanyvc.c:2282 msgid "Revert single file" msgstr "恢复单个文件" -#: ../geanyvc/src/geanyvc.c:2228 +#: ../geanyvc/src/geanyvc.c:2284 msgid "Revert directory" msgstr "恢复目录" -#: ../geanyvc/src/geanyvc.c:2230 +#: ../geanyvc/src/geanyvc.c:2286 msgid "Revert base directory" msgstr "恢复根目录" -#: ../geanyvc/src/geanyvc.c:2232 +#: ../geanyvc/src/geanyvc.c:2288 msgid "Update file" msgstr "更新文件" -#: ../geanyvc/src/geanyvc.c:2260 +#: ../geanyvc/src/geanyvc.c:2316 msgid "_VC" msgstr "_VC" -#: ../geanyvc/src/geanyvc.c:2266 +#: ../geanyvc/src/geanyvc.c:2322 #, fuzzy msgid "_Version Control" msgstr "添加到版本控制(_A)" #. Status of basedir -#: ../geanyvc/src/geanyvc.c:2288 +#: ../geanyvc/src/geanyvc.c:2344 msgid "_Status" msgstr "状态(_S)" -#: ../geanyvc/src/geanyvc.c:2290 +#: ../geanyvc/src/geanyvc.c:2346 msgid "Show status." msgstr "显示状态。" -#: ../geanyvc/src/geanyvc.c:2297 +#: ../geanyvc/src/geanyvc.c:2353 #, fuzzy msgid "Update from remote repository." msgstr "从远程库更新。" #. Commit all changes -#: ../geanyvc/src/geanyvc.c:2302 +#: ../geanyvc/src/geanyvc.c:2358 msgid "_Commit" msgstr "提交(_C)" -#: ../geanyvc/src/geanyvc.c:2304 +#: ../geanyvc/src/geanyvc.c:2360 msgid "Commit changes." msgstr "提交更改。" @@ -4737,101 +4866,256 @@ "tab." msgstr "" -#: ../gproject/src/gproject-sidebar.c:81 -#: ../gproject/src/gproject-sidebar.c:792 +#: ../gproject/src/gproject-sidebar.c:90 +#: ../gproject/src/gproject-sidebar.c:838 #, fuzzy msgid "Find File" msgstr "添加文件" -#: ../gproject/src/gproject-sidebar.c:108 +#: ../gproject/src/gproject-sidebar.c:117 msgid "Search inside:" msgstr "" -#: ../gproject/src/gproject-sidebar.c:120 +#: ../gproject/src/gproject-sidebar.c:129 msgid "C_ase sensitive" msgstr "" -#: ../gproject/src/gproject-sidebar.c:123 +#: ../gproject/src/gproject-sidebar.c:132 msgid "Search in full path" msgstr "" -#: ../gproject/src/gproject-sidebar.c:702 +#: ../gproject/src/gproject-sidebar.c:745 msgid "Reload all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:711 -#: ../treebrowser/src/treebrowser.c:1282 +#: ../gproject/src/gproject-sidebar.c:754 +#: ../treebrowser/src/treebrowser.c:1281 msgid "Expand all" msgstr "" -#: ../gproject/src/gproject-sidebar.c:717 -#: ../treebrowser/src/treebrowser.c:1286 +#: ../gproject/src/gproject-sidebar.c:761 +#: ../treebrowser/src/treebrowser.c:1285 #, fuzzy msgid "Collapse all" msgstr "关闭全部(_L)" -#: ../gproject/src/gproject-sidebar.c:726 +#: ../gproject/src/gproject-sidebar.c:771 msgid "Follow active editor" msgstr "" -#: ../gproject/src/gproject-sidebar.c:774 +#: ../gproject/src/gproject-sidebar.c:820 msgid "Expand All" msgstr "" -#: ../gproject/src/gproject-sidebar.c:783 -#: ../treebrowser/src/treebrowser.c:1234 +#: ../gproject/src/gproject-sidebar.c:829 #, fuzzy msgid "Find in Files" msgstr "在项目中查找" #. POSITION OF VIEW -#: ../markdown/src/conf.c:570 +#: ../markdown/src/conf.c:567 #, fuzzy msgid "Position:" msgstr "Edition" -#: ../markdown/src/conf.c:576 +#: ../markdown/src/conf.c:573 #, fuzzy msgid "Sidebar" msgstr "隐藏侧栏(_I)" -#: ../markdown/src/conf.c:584 +#: ../markdown/src/conf.c:581 msgid "Message Window" msgstr "" -#: ../markdown/src/conf.c:598 +#: ../markdown/src/conf.c:595 msgid "Font:" msgstr "" -#: ../markdown/src/conf.c:616 +#: ../markdown/src/conf.c:612 msgid "Code Font:" msgstr "" -#: ../markdown/src/conf.c:634 +#: ../markdown/src/conf.c:629 msgid "BG Color:" msgstr "" -#: ../markdown/src/conf.c:651 +#: ../markdown/src/conf.c:645 msgid "FG Color:" msgstr "" -#: ../markdown/src/conf.c:670 +#: ../markdown/src/conf.c:663 #, fuzzy msgid "Select Template File" msgstr "选择字体" -#: ../markdown/src/plugin.c:33 +#: ../markdown/src/plugin.c:35 msgid "Real-time Markdown preview" msgstr "" -#: ../markdown/src/plugin.c:49 +#: ../markdown/src/plugin.c:51 msgid "Markdown Preview" msgstr "" -#: ../markdown/src/plugin.c:160 +#: ../markdown/src/plugin.c:162 msgid "The current document does not have a Markdown filetype." msgstr "" +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:35 +msgid "Pair Tag Highlighter" +msgstr "" + +#: ../pairtaghighlighter/src/pair_tag_highlighter.c:36 +msgid "Finds and highlights matching opening/closing HTML tag" +msgstr "" + +#: ../pohelper/data/menus.ui.h:1 +msgid "_Translation Helper" +msgstr "" + +#: ../pohelper/data/menus.ui.h:2 +msgid "_Previous String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:3 ../pohelper/src/gph-plugin.c:1031 +#, fuzzy +msgid "Go to previous string" +msgstr "返回上一个对话框。" + +#: ../pohelper/data/menus.ui.h:4 +msgid "_Next String" +msgstr "" + +#: ../pohelper/data/menus.ui.h:5 ../pohelper/src/gph-plugin.c:1034 +#, fuzzy +msgid "Go to next string" +msgstr "单步进入下一行。" + +#: ../pohelper/data/menus.ui.h:6 +msgid "Pre_vious Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:7 ../pohelper/src/gph-plugin.c:1037 +msgid "Go to previous untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:8 +msgid "Next _Untranslated" +msgstr "" + +#: ../pohelper/data/menus.ui.h:9 ../pohelper/src/gph-plugin.c:1040 +msgid "Go to next untranslated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:10 +msgid "Previous Fu_zzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:11 ../pohelper/src/gph-plugin.c:1043 +msgid "Go to previous fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:12 +msgid "Next _Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:13 ../pohelper/src/gph-plugin.c:1046 +msgid "Go to next fuzzily translated string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:14 +msgid "Previous Untranslated or Fuzz_y" +msgstr "" + +#: ../pohelper/data/menus.ui.h:15 ../pohelper/src/gph-plugin.c:1049 +msgid "Go to previous untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:16 +msgid "Next Untranslated _or Fuzzy" +msgstr "" + +#: ../pohelper/data/menus.ui.h:17 ../pohelper/src/gph-plugin.c:1053 +msgid "Go to next untranslated or fuzzy string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:18 ../pohelper/src/gph-plugin.c:1064 +#, fuzzy +msgid "Toggle current translation fuzziness" +msgstr "文件交互" + +#: ../pohelper/data/menus.ui.h:19 +msgid "_Toggle Fuzziness" +msgstr "" + +#: ../pohelper/data/menus.ui.h:20 +msgid "Paste _Message as Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:21 +msgid "Paste the original untranslated string to the translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:22 ../pohelper/src/gph-plugin.c:1061 +msgid "Reflow the current translation string" +msgstr "" + +#: ../pohelper/data/menus.ui.h:23 +msgid "_Reflow Translation" +msgstr "" + +#: ../pohelper/data/menus.ui.h:24 +msgid "" +"Whether to update the translation headers (author, revision date, ...) upon " +"file save" +msgstr "" + +#: ../pohelper/data/menus.ui.h:25 +msgid "Update _Headers Upon Save" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:41 +msgid "Translation Helper" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:42 +msgid "Improves support for GetText translation files." +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1057 +msgid "Paste original untranslated string to translation" +msgstr "" + +#: ../pohelper/src/gph-plugin.c:1099 +#, fuzzy, c-format +msgid "Failed to load configuration file: %s" +msgstr "显示当前文件日志" + +#: ../pohelper/src/gph-plugin.c:1124 +#, fuzzy, c-format +msgid "Failed to create configuration directory \"%s\": %s" +msgstr "取回 GDB 工作路径设置失败" + +#: ../pohelper/src/gph-plugin.c:1127 +#, fuzzy, c-format +msgid "Failed to save configuration file: %s" +msgstr "显示当前文件日志" + +#: ../pohelper/src/gph-plugin.c:1182 +#, fuzzy, c-format +msgid "" +"Failed to load UI definition, please check your installation. The error was: " +"%s" +msgstr "" +"%s 插件未能正确加载。\n" +"请检查您的安装。" + +#: ../pohelper/src/gph-plugin.c:1222 +#, c-format +msgid "" +"Cannot find widget \"%s\" in the UI definition, please check your " +"installation." +msgstr "" + #: ../pretty-printer/src/PluginEntry.c:37 msgid "XML PrettyPrinter" msgstr "" @@ -5192,279 +5476,351 @@ msgstr "" #: ../scope/data/scope.glade.h:64 -msgid "_Evaluate/Modify" +msgid "_Raw" msgstr "" #: ../scope/data/scope.glade.h:65 -msgid "_Watch Expression" +msgid "_Evaluate/Modify" msgstr "" #: ../scope/data/scope.glade.h:66 -#, fuzzy -msgid "_Inspect Variable" -msgstr "环境" +msgid "_Watch Expression" +msgstr "" #: ../scope/data/scope.glade.h:67 #, fuzzy -msgid "Program Terminal" -msgstr "在终端中运行" +msgid "_Inspect Variable" +msgstr "环境" #: ../scope/data/scope.glade.h:68 msgid "Threads" msgstr "" -#: ../scope/data/scope.glade.h:70 +#: ../scope/data/scope.glade.h:69 #, fuzzy msgid "Stack" msgstr "堆栈(_K)" -#: ../scope/data/scope.glade.h:71 +#: ../scope/data/scope.glade.h:70 msgid "Locals" msgstr "" -#: ../scope/data/scope.glade.h:72 +#: ../scope/data/scope.glade.h:71 #, fuzzy msgid "Watches" msgstr "观察点" -#: ../scope/data/scope.glade.h:73 +#: ../scope/data/scope.glade.h:72 msgid "Memory" msgstr "" -#: ../scope/data/scope.glade.h:74 -#, fuzzy -msgid "Debug Console" -msgstr "控制台:" - -#: ../scope/data/scope.glade.h:75 +#: ../scope/data/scope.glade.h:73 #, fuzzy msgid "Enter gdb command:" msgstr "插入环境" -#: ../scope/data/scope.glade.h:76 +#: ../scope/data/scope.glade.h:74 #, fuzzy msgid "Convert _UTF-8 to locale" msgstr "将选中部分左对齐" -#: ../scope/data/scope.glade.h:77 +#: ../scope/data/scope.glade.h:75 msgid "_Thread" msgstr "" -#: ../scope/data/scope.glade.h:78 +#: ../scope/data/scope.glade.h:76 msgid "_Group" msgstr "" -#: ../scope/data/scope.glade.h:79 +#: ../scope/data/scope.glade.h:77 #, fuzzy msgid "_Frame" msgstr "帧信息" -#: ../scope/data/scope.glade.h:80 +#: ../scope/data/scope.glade.h:78 #, fuzzy msgid "Setup Program" msgstr "无程序" -#: ../scope/data/scope.glade.h:81 +#: ../scope/data/scope.glade.h:79 msgid "_Executable:" msgstr "" -#: ../scope/data/scope.glade.h:82 +#: ../scope/data/scope.glade.h:80 msgid "_Arguments:" msgstr "" -#: ../scope/data/scope.glade.h:83 +#: ../scope/data/scope.glade.h:81 #, fuzzy msgid "En_vironment:" msgstr "环境:" -#: ../scope/data/scope.glade.h:84 +#: ../scope/data/scope.glade.h:82 msgid "_Working dir:" msgstr "" -#: ../scope/data/scope.glade.h:85 +#: ../scope/data/scope.glade.h:83 #, fuzzy msgid "_Load script:" msgstr "_Lua 脚本" -#: ../scope/data/scope.glade.h:86 +#: ../scope/data/scope.glade.h:84 msgid "Auto _run program/exit gdb" msgstr "" -#: ../scope/data/scope.glade.h:87 +#: ../scope/data/scope.glade.h:85 msgid "_Non-stop mode" msgstr "" -#: ../scope/data/scope.glade.h:88 -msgid "_Temporary breakpoint at:" +#: ../scope/data/scope.glade.h:86 +msgid "_Temporary breakpoint on load at:" msgstr "" -#: ../scope/data/scope.glade.h:89 -msgid "_Delete all breakpoints, watches and inspects" +#: ../scope/data/scope.glade.h:87 +msgid "_Delete all breakpoints, watches, inspects and registers" msgstr "" -#: ../scope/data/scope.glade.h:90 ../scope/src/prefs.c:337 +#: ../scope/data/scope.glade.h:88 ../scope/src/scope.c:522 #, fuzzy msgid "Program" msgstr "无程序" -#: ../scope/data/scope.glade.h:91 +#: ../scope/data/scope.glade.h:89 #, fuzzy msgid "Open on" msgstr "打开URI" -#: ../scope/data/scope.glade.h:92 +#: ../scope/data/scope.glade.h:90 #, fuzzy msgid "g_db load" msgstr "卸载(_U)" -#: ../scope/data/scope.glade.h:93 +#: ../scope/data/scope.glade.h:91 msgid "p_rogram start" msgstr "" -#: ../scope/data/scope.glade.h:94 +#: ../scope/data/scope.glade.h:92 #, fuzzy msgid "Update all _views" msgstr "更新文件" -#: ../scope/data/scope.glade.h:95 +#: ../scope/data/scope.glade.h:93 msgid "Panel" msgstr "" -#: ../scope/data/scope.glade.h:96 +#: ../scope/data/scope.glade.h:94 msgid "Default 8-bit text mode:" msgstr "" -#: ../scope/data/scope.glade.h:97 +#: ../scope/data/scope.glade.h:95 msgid "_7-bit \\nnn" msgstr "" -#: ../scope/data/scope.glade.h:98 +#: ../scope/data/scope.glade.h:96 msgid "Display" msgstr "" -#: ../scope/data/scope.glade.h:99 +#: ../scope/data/scope.glade.h:97 #, fuzzy msgid "_member" msgstr "Number" -#: ../scope/data/scope.glade.h:100 +#: ../scope/data/scope.glade.h:98 #, fuzzy msgid "and" msgstr "直斜体" -#: ../scope/data/scope.glade.h:101 +#: ../scope/data/scope.glade.h:99 #, fuzzy msgid "_argument" msgstr "将文档作为邮件发送" -#: ../scope/data/scope.glade.h:102 +#: ../scope/data/scope.glade.h:100 #, fuzzy msgid "names" msgstr "文件名:" -#: ../scope/data/scope.glade.h:103 +#: ../scope/data/scope.glade.h:101 msgid "Values" msgstr "" -#: ../scope/data/scope.glade.h:104 +#: ../scope/data/scope.glade.h:102 msgid "E_xpand on apply" msgstr "" -#: ../scope/data/scope.glade.h:105 +#: ../scope/data/scope.glade.h:103 msgid "S_how" msgstr "" -#: ../scope/data/scope.glade.h:106 +#: ../scope/data/scope.glade.h:104 msgid "children" msgstr "" -#: ../scope/data/scope.glade.h:107 +#: ../scope/data/scope.glade.h:105 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:108 +#: ../scope/data/scope.glade.h:106 msgid "Show =li_brary messages" msgstr "" -#: ../scope/data/scope.glade.h:109 +#: ../scope/data/scope.glade.h:107 #, fuzzy msgid "Show _tooltips" msgstr "显示工具提示。" -#: ../scope/data/scope.glade.h:110 +#: ../scope/data/scope.glade.h:108 msgid "Others" msgstr "" -#: ../scope/data/scope.glade.h:111 +#: ../scope/data/scope.glade.h:109 #, fuzzy msgid "Options" msgstr "选项(_O)" -#: ../scope/data/scope.glade.h:112 +#: ../scope/data/scope.glade.h:110 #, fuzzy msgid "_Import" msgstr "报告" -#: ../scope/data/scope.glade.h:113 +#: ../scope/data/scope.glade.h:111 msgid "Enter assignment expression:" msgstr "" -#: ../scope/data/scope.glade.h:114 +#: ../scope/data/scope.glade.h:112 msgid "Inspect" msgstr "" -#: ../scope/data/scope.glade.h:115 +#: ../scope/data/scope.glade.h:113 #, fuzzy msgid "Object:" msgstr "目标信息" -#: ../scope/data/scope.glade.h:117 +#: ../scope/data/scope.glade.h:115 msgid "-" msgstr "" -#: ../scope/data/scope.glade.h:118 +#: ../scope/data/scope.glade.h:116 #, fuzzy msgid "Frame:" msgstr "名称:" -#: ../scope/data/scope.glade.h:119 +#: ../scope/data/scope.glade.h:117 msgid "@" msgstr "" -#: ../scope/data/scope.glade.h:120 +#: ../scope/data/scope.glade.h:118 msgid "_Apply on run" msgstr "" -#: ../scope/data/scope.glade.h:121 +#: ../scope/data/scope.glade.h:119 msgid "Expand" msgstr "" -#: ../scope/data/scope.glade.h:122 +#: ../scope/data/scope.glade.h:120 #, fuzzy msgid "Start:" msgstr "状态(_S)" -#: ../scope/data/scope.glade.h:123 +#: ../scope/data/scope.glade.h:121 msgid "Count:" msgstr "" -#: ../scope/data/scope.glade.h:124 +#: ../scope/data/scope.glade.h:122 msgid "_Expand on apply" msgstr "" -#: ../scope/src/break.c:947 +#: ../scope/data/scope.glade.h:123 ../scope/src/scope.c:522 +#, fuzzy +msgid "Program Terminal" +msgstr "在终端中运行" + +#: ../scope/data/scope.glade.h:125 +msgid "Registers" +msgstr "" + +#: ../scope/src/break.c:97 +#, fuzzy +msgid "breakpoint" +msgstr "断点" + +#: ../scope/src/break.c:98 +#, fuzzy +msgid "hardware breakpoint" +msgstr "编辑断点" + +#: ../scope/src/break.c:99 +#, fuzzy +msgid "tracepoint" +msgstr "观察点" + +#: ../scope/src/break.c:100 +#, fuzzy +msgid "fast tracepoint" +msgstr "观察点" + +#: ../scope/src/break.c:101 +#, fuzzy +msgid "write watchpoint" +msgstr "编辑观察点" + +#: ../scope/src/break.c:104 +#, fuzzy +msgid "access watchpoint" +msgstr "观察点" + +#: ../scope/src/break.c:106 +#, fuzzy +msgid "read watchpoint" +msgstr "编辑观察点" + +#: ../scope/src/break.c:108 +#, fuzzy +msgid "catchpoint" +msgstr "观察点" + +#: ../scope/src/break.c:135 ../scope/src/break.c:139 +msgid "CLI" +msgstr "" + +#: ../scope/src/break.c:136 +msgid "unsupported MI" +msgstr "" + +#: ../scope/src/break.c:141 +#, fuzzy +msgid "on load" +msgstr "卸载(_U)" + +#: ../scope/src/break.c:142 +#, fuzzy +msgid "Run to Cursor" +msgstr "运行到位置" + +#: ../scope/src/break.c:1013 #, c-format msgid "" "There are two or more breakpoints at %s:%d.\n" +"\n" "Use the breakpoint list to remove the exact one." msgstr "" -#: ../scope/src/break.c:1200 +#: ../scope/src/break.c:1252 +#, c-format +msgid ", %s" +msgstr "" + +#: ../scope/src/break.c:1278 +#, c-format +msgid "func %s" +msgstr "" + +#: ../scope/src/break.c:1309 #, fuzzy msgid "Add Breakpoint" msgstr "增加断点" -#: ../scope/src/break.c:1215 +#: ../scope/src/break.c:1324 #, fuzzy msgid "Add Watchpoint" msgstr "增加观察点" @@ -5478,7 +5834,8 @@ msgid "Enter char # (0..255):" msgstr "" -#: ../scope/src/conterm.c:466 ../scope/src/scope.c:502 +#: ../scope/src/conterm.c:509 ../scope/src/scope.c:550 +#: ../scope/src/scope.c:551 #, fuzzy, c-format msgid "Scope: %s." msgstr "关闭全部(_L)" @@ -5498,63 +5855,64 @@ msgid "Program terminated." msgstr "已终止" -#: ../scope/src/debug.c:468 +#: ../scope/src/debug.c:469 msgid "No breakpoints. Hanging." msgstr "" -#: ../scope/src/debug.c:596 ../scope/src/thread.c:97 +#: ../scope/src/debug.c:598 ../scope/src/thread.c:92 #, c-format msgid "%s." msgstr "" -#: ../scope/src/inspect.c:77 +#: ../scope/src/inspect.c:66 #, fuzzy msgid "..." msgstr "更多..." -#: ../scope/src/inspect.c:324 +#: ../scope/src/inspect.c:339 msgid "invalid data" msgstr "" -#: ../scope/src/inspect.c:356 +#: ../scope/src/inspect.c:371 msgid "no children in range" msgstr "" -#: ../scope/src/inspect.c:440 +#: ../scope/src/inspect.c:454 #, fuzzy msgid "out of scope" msgstr "观察点 #%s 越界" -#: ../scope/src/inspect.c:587 +#: ../scope/src/inspect.c:627 msgid "Duplicate inspect variable name." msgstr "" -#: ../scope/src/memory.c:299 +#: ../scope/src/memory.c:292 msgid "Read Memory" msgstr "" -#: ../scope/src/memory.c:408 -msgid "Scope: pointer size > 8, Data disabled." +#: ../scope/src/memory.c:396 +#, c-format +msgid "Scope: pointer size > %d, Data disabled." msgstr "" -#: ../scope/src/menu.c:380 +#: ../scope/src/menu.c:375 msgid "Modify" msgstr "" -#: ../scope/src/menu.c:490 +#: ../scope/src/menu.c:481 msgid "Evaluate/modify" msgstr "" -#: ../scope/src/menu.c:491 +#: ../scope/src/menu.c:482 msgid "Watch expression" msgstr "" -#: ../scope/src/menu.c:492 +#: ../scope/src/menu.c:483 #, fuzzy msgid "Inspect variable" msgstr "本地变量" -#: ../scope/src/parse.c:416 +#: ../scope/src/parse.c:437 msgid "Undefined GDB error." msgstr "" @@ -5568,37 +5926,27 @@ msgid "Select File" msgstr "选择文件" -#: ../scope/src/prefs.c:338 -#, fuzzy -msgid "Breaks" -msgstr "断点" - -#: ../scope/src/prefs.c:339 -#, fuzzy -msgid "Console" -msgstr "控制台:" - -#: ../scope/src/prefs.c:347 ../scope/src/utils.c:570 +#: ../scope/src/prefs.c:294 ../scope/src/utils.c:438 #, c-format msgid "Scope: %s: %s." msgstr "" -#: ../scope/src/prefs.c:352 +#: ../scope/src/prefs.c:299 #, fuzzy msgid "Scope: created configuration file." msgstr "显示当前文件日志" -#: ../scope/src/program.c:231 +#: ../scope/src/program.c:251 #, c-format msgid "Loaded debug settings for %s." msgstr "" -#: ../scope/src/program.c:239 +#: ../scope/src/program.c:259 #, c-format msgid "Could not load debug settings file %s: %s." msgstr "" -#: ../scope/src/program.c:359 +#: ../scope/src/program.c:379 #, fuzzy, c-format msgid "" "%s: %s.\n" @@ -5606,15 +5954,15 @@ "Continue?" msgstr "继续(_C)" -#: ../scope/src/program.c:394 -msgid "Delete all breakpoints, watches and inspects?" +#: ../scope/src/program.c:415 +msgid "Delete all breakpoints, watches et cetera?" msgstr "" -#: ../scope/src/program.c:501 +#: ../scope/src/program.c:523 msgid "as _Name=value" msgstr "" -#: ../scope/src/program.c:502 +#: ../scope/src/program.c:524 msgid "as _Name = value" msgstr "" @@ -5624,169 +5972,184 @@ msgstr "调试器" #: ../scope/src/scope.c:35 -msgid "Simple GDB front-end." +msgid "Relatively simple GDB front-end." msgstr "" -#: ../scope/src/scope.c:63 +#: ../scope/src/scope.c:62 #, fuzzy msgid "Setup program" msgstr "无程序" -#: ../scope/src/scope.c:64 +#: ../scope/src/scope.c:63 #, fuzzy msgid "Run/continue" msgstr "继续(_C)" -#: ../scope/src/scope.c:66 +#: ../scope/src/scope.c:65 #, fuzzy msgid "Run to source" msgstr "运行到位置" -#: ../scope/src/scope.c:70 +#: ../scope/src/scope.c:69 #, fuzzy msgid "Terminate" msgstr "已终止" -#: ../scope/src/scope.c:71 +#: ../scope/src/scope.c:70 #, fuzzy msgid "Toggle breakpoint" msgstr "断点" -#: ../scope/src/scope.c:73 ../scope/src/scope.c:76 +#: ../scope/src/scope.c:72 ../scope/src/scope.c:75 #, fuzzy msgid "GDB command" msgstr "插入环境" -#: ../scope/src/scope.c:74 +#: ../scope/src/scope.c:73 #, fuzzy msgid "Show terminal" msgstr "在终端中运行" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Busy" msgstr "" -#: ../scope/src/scope.c:225 +#: ../scope/src/scope.c:226 msgid "Ready" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Hang" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 msgid "Assem" msgstr "" -#: ../scope/src/scope.c:226 +#: ../scope/src/scope.c:227 #, fuzzy msgid "Load" msgstr "加载(_L)" -#: ../scope/src/scope.c:394 +#: ../scope/src/scope.c:421 msgid "Build action activated. Terminate debugging?" msgstr "" -#: ../scope/src/thread.c:58 +#: ../scope/src/scope.c:524 +#, fuzzy +msgid "Breaks" +msgstr "断点" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Console" +msgstr "控制台:" + +#: ../scope/src/scope.c:526 +#, fuzzy +msgid "Debug Console" +msgstr "控制台:" + +#: ../scope/src/thread.c:48 #, c-format msgid "Thread group %s started." msgstr "" -#: ../scope/src/thread.c:76 +#: ../scope/src/thread.c:63 msgid "Thread group " msgstr "" -#: ../scope/src/thread.c:88 +#: ../scope/src/thread.c:83 msgid " exited" msgstr "" -#: ../scope/src/thread.c:91 +#: ../scope/src/thread.c:86 #, c-format msgid " with exit code %s" msgstr "" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 #, fuzzy msgid "Send Signal" msgstr "用邮件发送" -#: ../scope/src/thread.c:788 +#: ../scope/src/thread.c:748 msgid "Enter signal #:" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Terminate Process" msgstr "" -#: ../scope/src/thread.c:829 +#: ../scope/src/thread.c:788 msgid "Enter exit code:" msgstr "" -#: ../scope/src/thread.c:937 +#: ../scope/src/thread.c:891 #, fuzzy msgid "Running" msgstr "运行中" -#: ../scope/src/thread.c:938 +#: ../scope/src/thread.c:892 #, fuzzy msgid "Stopped" msgstr "已停止" -#: ../scope/src/utils.c:44 -#, c-format -msgid "%s: error %lu." -msgstr "" +#: ../scope/src/utils.c:45 +#, fuzzy, c-format +msgid "%s: %s" +msgstr "关闭全部(_L)" -#: ../scope/src/utils.c:358 +#: ../scope/src/utils.c:225 #, c-format msgid "Scope: error reading [%s]." msgstr "" -#: ../scope/src/views.c:505 +#: ../scope/src/views.c:526 msgid "…" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Send" msgstr "" -#: ../scope/src/views.c:528 +#: ../scope/src/views.c:549 msgid "_Busy" msgstr "" -#: ../scope/src/views.c:535 +#: ../scope/src/views.c:558 #, fuzzy msgid "GDB Command" msgstr "命令0:" -#: ../spellcheck/src/speller.c:94 +#: ../spellcheck/src/speller.c:180 msgid "Try: " msgstr "尝试:" -#: ../spellcheck/src/speller.c:173 +#: ../spellcheck/src/speller.c:252 msgid "Checking" msgstr "检查中" -#: ../spellcheck/src/speller.c:186 +#: ../spellcheck/src/speller.c:265 #, c-format msgid "Checking file \"%s\" (lines %d to %d using %s):" msgstr "正在检查文件“%s”(第 %d 行至第 %d 行,使用 %s)" -#: ../spellcheck/src/speller.c:196 +#: ../spellcheck/src/speller.c:275 #, c-format msgid "Checking file \"%s\" (using %s):" msgstr "正在检查文件“%s”(使用 %s)" -#: ../spellcheck/src/speller.c:223 +#: ../spellcheck/src/speller.c:302 msgid "The checked text is spelled correctly." msgstr "已检查的文字拼写正确。" -#: ../spellcheck/src/speller.c:233 +#: ../spellcheck/src/speller.c:312 #, c-format msgid "The Enchant library couldn't be initialized (%s)." msgstr "无法初始化 Enchant 库(%s)。" -#: ../spellcheck/src/speller.c:234 +#: ../spellcheck/src/speller.c:313 msgid "unknown error (maybe the chosen language is not available)" msgstr "未知错误(可能不支持选取的语言)" @@ -5878,17 +6241,17 @@ msgid "Ignore All" msgstr "忽略全部" -#: ../spellcheck/src/gui.c:521 +#: ../spellcheck/src/gui.c:526 #, c-format msgid "Default (%s)" msgstr "默认(%s)" -#: ../spellcheck/src/gui.c:532 +#: ../spellcheck/src/gui.c:537 #, c-format msgid "Toggle spell check while typing (current language: %s)" msgstr "开关输入时的拼写检查(当前语言:%s)" -#: ../spellcheck/src/gui.c:587 +#: ../spellcheck/src/gui.c:592 msgid "Spelling Suggestions" msgstr "拼写建议" @@ -5919,189 +6282,195 @@ #. OK. Something went not as expected. #. * We did have a selection but cannot parse it into rows. #. * Aborting -#: ../tableconvert/src/tableconvert.c:236 +#: ../tableconvert/src/tableconvert.c:237 msgid "Something went wrong on parsing selection. Aborting" msgstr "" -#: ../tableconvert/src/tableconvert.c:268 +#: ../tableconvert/src/tableconvert.c:269 #, fuzzy msgid "Convert selection to table" msgstr "将选中部分左对齐" #. Build up menu entry -#: ../tableconvert/src/tableconvert.c:281 +#: ../tableconvert/src/tableconvert.c:282 msgid "_Convert to table" msgstr "" -#: ../tableconvert/src/tableconvert.c:284 +#: ../tableconvert/src/tableconvert.c:285 msgid "Converts current marked list to a table." msgstr "" -#: ../treebrowser/src/treebrowser.c:120 +#: ../treebrowser/src/treebrowser.c:124 #, fuzzy msgid "TreeBrowser" msgstr "浏览..." -#: ../treebrowser/src/treebrowser.c:121 +#: ../treebrowser/src/treebrowser.c:125 msgid "" "This plugin adds a tree browser to Geany, allowing the user to browse files " "using a tree view of the directory being browsed." msgstr "" -#: ../treebrowser/src/treebrowser.c:430 +#: ../treebrowser/src/treebrowser.c:434 #, c-format msgid "%s: no such directory." msgstr "" -#: ../treebrowser/src/treebrowser.c:526 ../treebrowser/src/treebrowser.c:561 -#: ../treebrowser/src/treebrowser.c:663 +#: ../treebrowser/src/treebrowser.c:537 ../treebrowser/src/treebrowser.c:572 +#: ../treebrowser/src/treebrowser.c:670 #, fuzzy msgid "(Empty)" msgstr "(空行)" -#: ../treebrowser/src/treebrowser.c:966 +#: ../treebrowser/src/treebrowser.c:971 #, c-format msgid "Could not execute configured external command '%s' (%s)." msgstr "" -#: ../treebrowser/src/treebrowser.c:1037 +#: ../treebrowser/src/treebrowser.c:1042 #, fuzzy msgid "NewDirectory" msgstr "目录(_D)" -#: ../treebrowser/src/treebrowser.c:1039 +#: ../treebrowser/src/treebrowser.c:1044 #, fuzzy msgid "NewFile" msgstr "文件(_F)" -#: ../treebrowser/src/treebrowser.c:1044 +#: ../treebrowser/src/treebrowser.c:1049 #, c-format msgid "" "Target file '%s' exists\n" ", do you really want to replace it with empty file?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1089 +#: ../treebrowser/src/treebrowser.c:1095 #, fuzzy, c-format msgid "Do you really want to delete '%s' ?" msgstr "您真的想恢复:%s?" -#: ../treebrowser/src/treebrowser.c:1208 ../treebrowser/src/treebrowser.c:1692 +#: ../treebrowser/src/treebrowser.c:1207 ../treebrowser/src/treebrowser.c:1738 msgid "Go up" msgstr "" -#: ../treebrowser/src/treebrowser.c:1212 ../treebrowser/src/treebrowser.c:1707 +#: ../treebrowser/src/treebrowser.c:1211 ../treebrowser/src/treebrowser.c:1753 #, fuzzy msgid "Set path from document" msgstr "为您的新文档设置编码" -#: ../treebrowser/src/treebrowser.c:1216 -msgid "Open externally" -msgstr "" +#: ../treebrowser/src/treebrowser.c:1215 +#, fuzzy +msgid "_Open externally" +msgstr "在终端中运行" -#: ../treebrowser/src/treebrowser.c:1221 +#: ../treebrowser/src/treebrowser.c:1220 #, fuzzy msgid "Open Terminal" msgstr "在终端中运行" -#: ../treebrowser/src/treebrowser.c:1225 +#: ../treebrowser/src/treebrowser.c:1224 msgid "Set as root" msgstr "" -#: ../treebrowser/src/treebrowser.c:1230 ../treebrowser/src/treebrowser.c:1697 -#: ../treebrowser/src/treebrowser.c:2060 +#: ../treebrowser/src/treebrowser.c:1229 ../treebrowser/src/treebrowser.c:1743 +#: ../treebrowser/src/treebrowser.c:2123 #, fuzzy msgid "Refresh" msgstr "Series" -#: ../treebrowser/src/treebrowser.c:1242 +#: ../treebrowser/src/treebrowser.c:1233 +#, fuzzy +msgid "_Find in Files" +msgstr "在项目中查找" + +#: ../treebrowser/src/treebrowser.c:1241 #, fuzzy msgid "Create new directory" msgstr "恢复根目录" -#: ../treebrowser/src/treebrowser.c:1246 +#: ../treebrowser/src/treebrowser.c:1245 #, fuzzy msgid "Create new file" msgstr "更新文件" -#: ../treebrowser/src/treebrowser.c:1250 +#: ../treebrowser/src/treebrowser.c:1249 #, fuzzy msgid "Rename" msgstr "文件名:" -#: ../treebrowser/src/treebrowser.c:1255 +#: ../treebrowser/src/treebrowser.c:1254 #, fuzzy msgid "Delete" msgstr "删除项目" -#: ../treebrowser/src/treebrowser.c:1263 +#: ../treebrowser/src/treebrowser.c:1262 #, fuzzy, c-format msgid "Close: %s" msgstr "关闭全部(_L)" -#: ../treebrowser/src/treebrowser.c:1268 +#: ../treebrowser/src/treebrowser.c:1267 #, fuzzy, c-format msgid "Close Child Documents " msgstr "关闭其他文件(_H)" -#: ../treebrowser/src/treebrowser.c:1273 -msgid "Copy full path to clipboard" +#: ../treebrowser/src/treebrowser.c:1272 +msgid "_Copy full path to clipboard" msgstr "" -#: ../treebrowser/src/treebrowser.c:1293 ../treebrowser/src/treebrowser.c:1974 +#: ../treebrowser/src/treebrowser.c:1292 ../treebrowser/src/treebrowser.c:2032 #, fuzzy msgid "Show bookmarks" msgstr "书签" -#: ../treebrowser/src/treebrowser.c:1298 ../treebrowser/src/treebrowser.c:1928 +#: ../treebrowser/src/treebrowser.c:1297 ../treebrowser/src/treebrowser.c:1981 #, fuzzy msgid "Show hidden files" msgstr "显示文件差异" -#: ../treebrowser/src/treebrowser.c:1303 +#: ../treebrowser/src/treebrowser.c:1302 #, fuzzy msgid "Show toolbars" msgstr "显示状态" -#: ../treebrowser/src/treebrowser.c:1574 +#: ../treebrowser/src/treebrowser.c:1621 #, c-format msgid "Target file '%s' exists, do you really want to replace it?" msgstr "" -#: ../treebrowser/src/treebrowser.c:1702 +#: ../treebrowser/src/treebrowser.c:1748 #, fuzzy msgid "Home" msgstr "Volume" -#: ../treebrowser/src/treebrowser.c:1712 +#: ../treebrowser/src/treebrowser.c:1758 #, fuzzy msgid "Track path" msgstr "根目录:" -#: ../treebrowser/src/treebrowser.c:1717 +#: ../treebrowser/src/treebrowser.c:1763 #, fuzzy msgid "Hide bars" msgstr "隐藏侧栏(_I)" -#: ../treebrowser/src/treebrowser.c:1727 +#: ../treebrowser/src/treebrowser.c:1773 msgid "" "Filter (*.c;*.h;*.cpp), and if you want temporary filter using the '!' " "reverse try for example this '!;*.c;*.h;*.cpp'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1735 +#: ../treebrowser/src/treebrowser.c:1781 msgid "Addressbar for example '/projects/my-project'" msgstr "" -#: ../treebrowser/src/treebrowser.c:1760 +#: ../treebrowser/src/treebrowser.c:1806 msgid "Tree Browser" msgstr "" -#: ../treebrowser/src/treebrowser.c:1892 +#: ../treebrowser/src/treebrowser.c:1945 msgid "External open command" msgstr "" -#: ../treebrowser/src/treebrowser.c:1897 +#: ../treebrowser/src/treebrowser.c:1950 #, c-format msgid "" "The command to execute when using \"Open with\". You can use %f and %d " @@ -6111,107 +6480,116 @@ "filename" msgstr "" -#: ../treebrowser/src/treebrowser.c:1905 +#: ../treebrowser/src/treebrowser.c:1958 msgid "Toolbar" msgstr "" -#: ../treebrowser/src/treebrowser.c:1907 +#: ../treebrowser/src/treebrowser.c:1960 msgid "Hidden" msgstr "" -#: ../treebrowser/src/treebrowser.c:1908 +#: ../treebrowser/src/treebrowser.c:1961 msgid "Top" msgstr "" -#: ../treebrowser/src/treebrowser.c:1909 +#: ../treebrowser/src/treebrowser.c:1962 msgid "Bottom" msgstr "" -#: ../treebrowser/src/treebrowser.c:1914 +#: ../treebrowser/src/treebrowser.c:1967 msgid "If position is changed, the option require plugin restart." msgstr "" -#: ../treebrowser/src/treebrowser.c:1918 +#: ../treebrowser/src/treebrowser.c:1971 #, fuzzy msgid "Show icons" msgstr "显示图标。" -#: ../treebrowser/src/treebrowser.c:1920 +#: ../treebrowser/src/treebrowser.c:1973 msgid "None" msgstr "" -#: ../treebrowser/src/treebrowser.c:1921 +#: ../treebrowser/src/treebrowser.c:1974 #, fuzzy msgid "Base" msgstr "暂停(_P)" -#: ../treebrowser/src/treebrowser.c:1922 +#: ../treebrowser/src/treebrowser.c:1975 #, fuzzy msgid "Content-type" msgstr "内容" -#: ../treebrowser/src/treebrowser.c:1933 +#: ../treebrowser/src/treebrowser.c:1986 msgid "On Windows, this just hide files that are prefixed with '.' (dot)" msgstr "" -#: ../treebrowser/src/treebrowser.c:1935 +#: ../treebrowser/src/treebrowser.c:1988 #, fuzzy msgid "Hide object files" msgstr "选择文件" -#: ../treebrowser/src/treebrowser.c:1940 +#: ../treebrowser/src/treebrowser.c:1993 msgid "" "Don't show generated object files in the file browser, this includes *.o, *." "obj. *.so, *.dll, *.a, *.lib" msgstr "" -#: ../treebrowser/src/treebrowser.c:1942 +#: ../treebrowser/src/treebrowser.c:1995 #, fuzzy msgid "Reverse filter" msgstr "恢复单个文件" -#: ../treebrowser/src/treebrowser.c:1947 +#: ../treebrowser/src/treebrowser.c:2000 msgid "Follow current document" msgstr "" -#: ../treebrowser/src/treebrowser.c:1952 +#: ../treebrowser/src/treebrowser.c:2005 msgid "Single click, open document and focus it" msgstr "" -#: ../treebrowser/src/treebrowser.c:1957 +#: ../treebrowser/src/treebrowser.c:2010 #, fuzzy msgid "Double click open directory" msgstr "显示目录差异" -#: ../treebrowser/src/treebrowser.c:1962 +#: ../treebrowser/src/treebrowser.c:2015 msgid "On delete file, close it if is opened" msgstr "" -#: ../treebrowser/src/treebrowser.c:1967 +#: ../treebrowser/src/treebrowser.c:2020 +msgid "Focus editor on file open" +msgstr "" + +#: ../treebrowser/src/treebrowser.c:2025 #, fuzzy msgid "Show tree lines" msgstr "显示工具提示。" -#: ../treebrowser/src/treebrowser.c:2050 +#: ../treebrowser/src/treebrowser.c:2037 +#, fuzzy +msgid "Open new files" +msgstr "打开文件" + +#: ../treebrowser/src/treebrowser.c:2113 #, fuzzy msgid "Focus File List" msgstr "焦点书签列表" -#: ../treebrowser/src/treebrowser.c:2052 +#: ../treebrowser/src/treebrowser.c:2115 msgid "Focus Path Entry" msgstr "" -#: ../treebrowser/src/treebrowser.c:2054 +#: ../treebrowser/src/treebrowser.c:2117 #, fuzzy msgid "Rename Object" msgstr "文件名:" -#: ../treebrowser/src/treebrowser.c:2056 +#: ../treebrowser/src/treebrowser.c:2119 #, fuzzy msgid "Create New File" msgstr "更新文件" -#: ../treebrowser/src/treebrowser.c:2058 +#: ../treebrowser/src/treebrowser.c:2121 #, fuzzy msgid "Create New Directory" msgstr "恢复根目录" @@ -6281,46 +6659,46 @@ msgid "utility" msgstr "" -#: ../webhelper/src/gwh-settings.c:775 +#: ../webhelper/src/gwh-settings.c:782 #, c-format msgid "%s:" msgstr "" -#: ../webhelper/src/gwh-browser.c:528 +#: ../webhelper/src/gwh-browser.c:534 msgid "_Zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:550 +#: ../webhelper/src/gwh-browser.c:556 msgid "Full-_content zoom" msgstr "" -#: ../webhelper/src/gwh-browser.c:561 +#: ../webhelper/src/gwh-browser.c:567 #, fuzzy msgid "Flip panes orientation" msgstr "简报" -#: ../webhelper/src/gwh-browser.c:808 +#: ../webhelper/src/gwh-browser.c:814 msgid "Back" msgstr "" -#: ../webhelper/src/gwh-browser.c:812 +#: ../webhelper/src/gwh-browser.c:818 msgid "Forward" msgstr "" -#: ../webhelper/src/gwh-browser.c:816 +#: ../webhelper/src/gwh-browser.c:822 #, fuzzy msgid "Cancel loading" msgstr "编码:" -#: ../webhelper/src/gwh-browser.c:820 +#: ../webhelper/src/gwh-browser.c:826 msgid "Reload current page" msgstr "" -#: ../webhelper/src/gwh-browser.c:833 ../webhelper/src/gwh-browser.c:879 +#: ../webhelper/src/gwh-browser.c:839 ../webhelper/src/gwh-browser.c:885 msgid "Web inspector" msgstr "" -#: ../webhelper/src/gwh-browser.c:834 +#: ../webhelper/src/gwh-browser.c:840 msgid "Toggle web inspector" msgstr "" @@ -6491,9 +6869,6 @@ #~ msgid "Failed to retrieve executable search path setting from GDB." #~ msgstr "取回 GDB 可执行文件搜索路径设置失败。" -#~ msgid "Failed to retrieve working directory setting from GDB." -#~ msgstr "取回 GDB 工作路径设置失败" - #~ msgid "Field list too long, not all items can be displayed.\n" #~ msgstr "字段列表太长,无法显示所有项。\n" @@ -6527,9 +6902,6 @@ #~ msgid "tty temporary directory not specified!\n" #~ msgstr "未指定 tty 临时目录!\n" -#~ msgid "tty temporary directory not found!\n" -#~ msgstr "未找到 tty 临时目录!\n" - #~ msgid "tty helper program not specified!\n" #~ msgstr "未指定 tty helper program!\n" @@ -6597,21 +6969,12 @@ #~ msgid "No %s selected" #~ msgstr "未选择任何 %s" -#~ msgid "watchpoint" -#~ msgstr "观察点" - #~ msgid "Delete selected watchpoint?" #~ msgstr "删除选定的观察点?" #~ msgid "Delete selected breakpoint?" #~ msgstr "删除选定的断点?" -#~ msgid "Edit watchpoint" -#~ msgstr "编辑观察点" - -#~ msgid "Edit breakpoint" -#~ msgstr "编辑断点" - #~ msgid "Enabled" #~ msgstr "已启用" diff -Nru geany-plugins-1.24.0+20140222+git/pohelper/data/Makefile.in geany-plugins-1.24.1+dfsg/pohelper/data/Makefile.in --- geany-plugins-1.24.0+20140222+git/pohelper/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pohelper/data/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,630 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindata_DATA) +subdir = pohelper/data +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindatadir)" +DATA = $(dist_plugindata_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = pohelper +dist_plugindata_DATA = menus.ui +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pohelper/data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pohelper/data/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindataDATA: $(dist_plugindata_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindatadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindatadir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindatadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindatadir)" || exit $$?; \ + done + +uninstall-dist_plugindataDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindatadir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindatadir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindataDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindataDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindataDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_plugindataDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pohelper/Makefile.in geany-plugins-1.24.1+dfsg/pohelper/Makefile.in --- geany-plugins-1.24.0+20140222+git/pohelper/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pohelper/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = pohelper +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = data src +plugin = pohelper +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pohelper/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pohelper/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pohelper/src/gph-plugin.c geany-plugins-1.24.1+dfsg/pohelper/src/gph-plugin.c --- geany-plugins-1.24.0+20140222+git/pohelper/src/gph-plugin.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pohelper/src/gph-plugin.c 2014-04-12 14:28:39.000000000 +0000 @@ -727,14 +727,12 @@ * cuts first at \n, then at spaces and punctuation */ static gchar ** split_msg (const gchar *str, - gint len) + gsize len) { GPtrArray *chunks = g_ptr_array_new (); - g_return_val_if_fail (len >= 0, NULL); - while (*str) { - GString *chunk = g_string_sized_new ((gsize) len); + GString *chunk = g_string_sized_new (len); while (*str) { const gchar *nl = strstr (str, "\\n"); @@ -749,12 +747,12 @@ else /* if there is no separator, use the end of the string */ p = strchr (str, 0); - if (nl && ((chunk_len + g_utf8_strlen (str, nl - str)) <= len || + if (nl && ((gsize)(chunk_len + g_utf8_strlen (str, nl - str)) <= len || (nl < p && chunk->len == 0))) { g_string_append_len (chunk, str, nl - str); str = nl; break; - } else if ((chunk_len + g_utf8_strlen (str, p - str)) <= len || + } else if ((gsize)(chunk_len + g_utf8_strlen (str, p - str)) <= len || chunk->len == 0) { g_string_append_len (chunk, str, p - str); str = p; @@ -789,6 +787,11 @@ gint line_len = geany_data->editor_prefs->line_break_column; gint msgstr_kw_len; + /* if line break column doesn't have a reasonable value, don't use it */ + if (line_len < 8) { + line_len = 72; + } + sci_start_undo_action (sci); scintilla_send_message (sci, SCI_DELETERANGE, (uptr_t) start, end + 1 - start); @@ -802,7 +805,7 @@ } else { /* otherwise, put nothing on the msgstr line and split it up through * next ones */ - gchar **chunks = split_msg (msgstr->str, line_len - 2); + gchar **chunks = split_msg (msgstr->str, (gsize)(line_len - 2)); guint i; sci_insert_text (sci, start, "\"\""); /* nothing on the msgstr line */ diff -Nru geany-plugins-1.24.0+20140222+git/pohelper/src/Makefile.in geany-plugins-1.24.1+dfsg/pohelper/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/pohelper/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pohelper/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,817 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = pohelper/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +pohelper_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_pohelper_la_OBJECTS = pohelper_la-gph-plugin.lo +pohelper_la_OBJECTS = $(am_pohelper_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +pohelper_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(pohelper_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(pohelper_la_SOURCES) +DIST_SOURCES = $(pohelper_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = pohelper +geanyplugins_LTLIBRARIES = pohelper.la +pohelper_la_SOURCES = gph-plugin.c +pohelper_la_CPPFLAGS = $(AM_CPPFLAGS) \ + -DG_LOG_DOMAIN=\"PoHelper\" + +pohelper_la_CFLAGS = $(AM_CFLAGS) +pohelper_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pohelper/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pohelper/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +pohelper.la: $(pohelper_la_OBJECTS) $(pohelper_la_DEPENDENCIES) $(EXTRA_pohelper_la_DEPENDENCIES) + $(AM_V_CCLD)$(pohelper_la_LINK) -rpath $(geanypluginsdir) $(pohelper_la_OBJECTS) $(pohelper_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pohelper_la-gph-plugin.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +pohelper_la-gph-plugin.lo: gph-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pohelper_la_CPPFLAGS) $(CPPFLAGS) $(pohelper_la_CFLAGS) $(CFLAGS) -MT pohelper_la-gph-plugin.lo -MD -MP -MF $(DEPDIR)/pohelper_la-gph-plugin.Tpo -c -o pohelper_la-gph-plugin.lo `test -f 'gph-plugin.c' || echo '$(srcdir)/'`gph-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pohelper_la-gph-plugin.Tpo $(DEPDIR)/pohelper_la-gph-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gph-plugin.c' object='pohelper_la-gph-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pohelper_la_CPPFLAGS) $(CPPFLAGS) $(pohelper_la_CFLAGS) $(CFLAGS) -c -o pohelper_la-gph-plugin.lo `test -f 'gph-plugin.c' || echo '$(srcdir)/'`gph-plugin.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pretty-printer/Makefile.in geany-plugins-1.24.1+dfsg/pretty-printer/Makefile.in --- geany-plugins-1.24.0+20140222+git/pretty-printer/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pretty-printer/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,750 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# include $(top_srcdir)/build/vars.auxfiles.mk +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = pretty-printer +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = src +plugin = codenav +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pretty-printer/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pretty-printer/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am tags tags-am uninstall uninstall-am + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pretty-printer/src/Makefile.in geany-plugins-1.24.1+dfsg/pretty-printer/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/pretty-printer/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pretty-printer/src/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,840 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = pretty-printer/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +pretty_printer_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_pretty_printer_la_OBJECTS = pretty_printer_la-PluginEntry.lo \ + pretty_printer_la-PrettyPrinter.lo \ + pretty_printer_la-ConfigUI.lo +pretty_printer_la_OBJECTS = $(am_pretty_printer_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +pretty_printer_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(pretty_printer_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(pretty_printer_la_SOURCES) +DIST_SOURCES = $(pretty_printer_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = pretty-printer.la +pretty_printer_la_SOURCES = \ + PluginEntry.h \ + PluginEntry.c \ + PrettyPrinter.c \ + PrettyPrinter.h \ + ConfigUI.h \ + ConfigUI.c + +pretty_printer_la_CFLAGS = $(AM_CFLAGS) $(LIBXML_CFLAGS) -DHAVE_GLIB -DHAVE_LIBXML +pretty_printer_la_LIBADD = $(COMMONLIBS) $(LIBXML_LIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pretty-printer/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign pretty-printer/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +pretty-printer.la: $(pretty_printer_la_OBJECTS) $(pretty_printer_la_DEPENDENCIES) $(EXTRA_pretty_printer_la_DEPENDENCIES) + $(AM_V_CCLD)$(pretty_printer_la_LINK) -rpath $(geanypluginsdir) $(pretty_printer_la_OBJECTS) $(pretty_printer_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pretty_printer_la-ConfigUI.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pretty_printer_la-PluginEntry.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pretty_printer_la-PrettyPrinter.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +pretty_printer_la-PluginEntry.lo: PluginEntry.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -MT pretty_printer_la-PluginEntry.lo -MD -MP -MF $(DEPDIR)/pretty_printer_la-PluginEntry.Tpo -c -o pretty_printer_la-PluginEntry.lo `test -f 'PluginEntry.c' || echo '$(srcdir)/'`PluginEntry.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pretty_printer_la-PluginEntry.Tpo $(DEPDIR)/pretty_printer_la-PluginEntry.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='PluginEntry.c' object='pretty_printer_la-PluginEntry.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -c -o pretty_printer_la-PluginEntry.lo `test -f 'PluginEntry.c' || echo '$(srcdir)/'`PluginEntry.c + +pretty_printer_la-PrettyPrinter.lo: PrettyPrinter.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -MT pretty_printer_la-PrettyPrinter.lo -MD -MP -MF $(DEPDIR)/pretty_printer_la-PrettyPrinter.Tpo -c -o pretty_printer_la-PrettyPrinter.lo `test -f 'PrettyPrinter.c' || echo '$(srcdir)/'`PrettyPrinter.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pretty_printer_la-PrettyPrinter.Tpo $(DEPDIR)/pretty_printer_la-PrettyPrinter.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='PrettyPrinter.c' object='pretty_printer_la-PrettyPrinter.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -c -o pretty_printer_la-PrettyPrinter.lo `test -f 'PrettyPrinter.c' || echo '$(srcdir)/'`PrettyPrinter.c + +pretty_printer_la-ConfigUI.lo: ConfigUI.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -MT pretty_printer_la-ConfigUI.lo -MD -MP -MF $(DEPDIR)/pretty_printer_la-ConfigUI.Tpo -c -o pretty_printer_la-ConfigUI.lo `test -f 'ConfigUI.c' || echo '$(srcdir)/'`ConfigUI.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/pretty_printer_la-ConfigUI.Tpo $(DEPDIR)/pretty_printer_la-ConfigUI.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ConfigUI.c' object='pretty_printer_la-ConfigUI.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pretty_printer_la_CFLAGS) $(CFLAGS) -c -o pretty_printer_la-ConfigUI.lo `test -f 'ConfigUI.c' || echo '$(srcdir)/'`ConfigUI.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/pretty-printer/wscript_build geany-plugins-1.24.1+dfsg/pretty-printer/wscript_build --- geany-plugins-1.24.0+20140222+git/pretty-printer/wscript_build 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pretty-printer/wscript_build 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -# -*- coding: utf-8 -*- -# -# WAF build script for geany-plugins - Pretty Printer -# -# Copyright 2010 Enrico Tröger -# -# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# $Id$ - -from build.wafutils import build_plugin - - -name = 'Pretty-Printer' -includes = ['pretty-printer/src'] -libraries = ['LIBXML_2_0'] -defines = ['HAVE_GLIB=1'] - -build_plugin(bld, name, includes=includes, libraries=libraries, defines=defines) diff -Nru geany-plugins-1.24.0+20140222+git/pretty-printer/wscript_configure geany-plugins-1.24.1+dfsg/pretty-printer/wscript_configure --- geany-plugins-1.24.0+20140222+git/pretty-printer/wscript_configure 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/pretty-printer/wscript_configure 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- -# -# WAF build script for geany-plugins - Pretty Printer -# -# Copyright 2010 Enrico Tröger -# -# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# $Id$ - -from build.wafutils import check_cfg_cached - - -check_cfg_cached(conf, - package='libxml-2.0', - atleast_version='2.6.27', - mandatory=True, - uselib_store='LIBXML_2_0', - args='--cflags --libs') - diff -Nru geany-plugins-1.24.0+20140222+git/README.template geany-plugins-1.24.1+dfsg/README.template --- geany-plugins-1.24.0+20140222+git/README.template 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/README.template 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -Plugin name -=========== - -.. image:: http://www.geany.org/images/geany_main_small.png - :width: 400 - :alt: image of a plugin in work (if applicable) - :align: right - :target: http://www.geany.org/uploads/Gallery/geany_main.png - -.. contents:: - -About ------ - -General information about what a plugin is all about. - -Features --------- - -* list of features a plugin exposes -* list of features a plugin exposes -* list of features a plugin exposes - -Usage ------ - -Information about using a plugin: -descriptions, use-cases, hotkeys lists, -configuration, known bugs etc. - -Requirements ------------- - -* first -* second - -Contact developers ------------------- - -E-mails, IRC, other contacts diff -Nru geany-plugins-1.24.0+20140222+git/scope/data/Makefile.in geany-plugins-1.24.1+dfsg/scope/data/Makefile.in --- geany-plugins-1.24.0+20140222+git/scope/data/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/data/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,658 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindata_DATA) +subdir = scope/data +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindatadir)" +DATA = $(dist_plugindata_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = scope +dist_plugindata_DATA = \ + BreakPoint.png \ + BreakPoint22.png \ + Continue.png \ + Continue22.png \ + Continue24.png \ + Kill.png \ + Kill22.png \ + Kill24.png \ + Pause.png \ + Pause22.png \ + Pause24.png \ + RunToCursor.png \ + RunToCursor22.png \ + RunToCursor24.png \ + RunToMethod.png \ + RunToMethod22.png \ + RunToMethod24.png \ + StepInto.png \ + StepInto22.png \ + StepInto24.png \ + StepOut.png \ + StepOut22.png \ + StepOut24.png \ + StepOver.png \ + StepOver22.png \ + StepOver24.png \ + scope.glade + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign scope/data/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign scope/data/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindataDATA: $(dist_plugindata_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindatadir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindatadir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindatadir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindatadir)" || exit $$?; \ + done + +uninstall-dist_plugindataDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindata_DATA)'; test -n "$(plugindatadir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindatadir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(plugindatadir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_plugindataDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_plugindataDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindataDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_plugindataDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/scope/docs/Makefile.in geany-plugins-1.24.1+dfsg/scope/docs/Makefile.in --- geany-plugins-1.24.0+20140222+git/scope/docs/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/docs/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,634 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_pluginhtmldoc_DATA) +subdir = scope/docs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(pluginhtmldocdir)" +DATA = $(dist_pluginhtmldoc_DATA) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +plugin = scope +pluginhtmldocdir = $(plugindocdir)/html +dist_pluginhtmldoc_DATA = \ + scope.html \ + codes.html + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign scope/docs/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign scope/docs/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_pluginhtmldocDATA: $(dist_pluginhtmldoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_pluginhtmldoc_DATA)'; test -n "$(pluginhtmldocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pluginhtmldocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pluginhtmldocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pluginhtmldocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pluginhtmldocdir)" || exit $$?; \ + done + +uninstall-dist_pluginhtmldocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_pluginhtmldoc_DATA)'; test -n "$(pluginhtmldocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pluginhtmldocdir)'; $(am__uninstall_files_from_dir) +tags TAGS: + +ctags CTAGS: + +cscope cscopelist: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(pluginhtmldocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-dist_pluginhtmldocDATA + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-dist_pluginhtmldocDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + cscopelist-am ctags-am distclean distclean-generic \ + distclean-libtool distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_pluginhtmldocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am uninstall-dist_pluginhtmldocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/scope/Makefile.in geany-plugins-1.24.1+dfsg/scope/Makefile.in --- geany-plugins-1.24.0+20140222+git/scope/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/Makefile.in 2014-04-13 17:12:45.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = scope +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src data docs +plugin = scope +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign scope/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign scope/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/scope/NOTES geany-plugins-1.24.1+dfsg/scope/NOTES --- geany-plugins-1.24.0+20140222+git/scope/NOTES 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/NOTES 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ --var-evaluate-expression reports the value from the last -var-update or --var-assign execution, not the current value - -register modified is 07 since changing a register ($dh, $mm1.uint64) may -change another ($dx, $st1), and there is some chance of watches/inspects -containing a register - -07-var-assign is required, because assigning to an out of scope -(sub)variable may succeed(?), but not be reflected on -var-update * - -the only way to fix unnecessary inspect drop target expansion is to block -INTO, so deriving GtkTreeStore and altering GtkTreeDragDest makes no sense - -"new_children: If new children were added to a dynamic varobj [...]" -"A varobj's contents may be provided by a Python-based pretty-printer -In this case the varobj is known as a dynamic varobj" - not supported - -shift-clicking send/busy to send a command without closing the dialog can be -implemented, but is very ugly; shortcut for "GDB command" plus typing in the -debug console should suffice - -gtk tooltips send lots of queries, and can't be explicitly shown/hidden; -sci dwell tips often do not disappear as they should; tooltip_update_state -can not be used, because sending the tooltip evaluate command changes state - -under win~1, the async break messages escape all slashes twice; file names -can be handled, but other fields (condition, script) choke parser - -under win~1, if Geany is compiled with -mconsole, gdb stdin/stdout will be -mixed with the program stdin/stdout, leading to gigo - -in foreground execution, GDB waits for the program to report that _some_ -thread has stopped before prompting for another command - -clicking a button with response 0, and then clicking an accept button or -gtk_dialog_response(ACCEPT), may generate 0 instead of accept - --var-create for global symbols allows any frame --set-update-range seems to have no effect on my system - -global objects may be evaluated (including as variable objects) in hang -state, but modification requires running inferior - -parse with string in VR_COMPACT / VR_NEUTRAL is slower for texts with less -than 100 characters, but with such shorts texts, the difference is -insignificant; for large texts, using string is faster, but not much - -CPU load on F8 with vte console: ~88% -with context: ~80%, null output: ~75% - -win~1 hang with poll_pipe(): 1 second for 3h25m -win~1 send on 50ms: 2 seconds for 1h, 1445 KB sent - -GtkTextView with wrapping CHAR: the last character of a wrapped line can be -selected with the mouse only by moving to the next line - -Geany under Win~1, with FF also running, eats 7-8% CPU time, other -applications/conditions may cause such CPU load too; scope doesn't matter - -http://sourceware.org/bugzilla/show_bug.cgi?id=9659 - -set print array on: " {1,\n 2,\n 3}" -set print array-indexes on: "{[0] = 1, [1] = 2, [2] = 3}" -set print elements 10: "\a01\002\003\004\005\006\a\b\t\n"... - {290, 291, 292, 293, 294, 295, 296, 297, 298, 299...} -'\000' , '\001' - -pending breakpoints are handled either at thread stopped, or by async -modified message; parsing =library-loaded seems pointless - -geany->app->datadir = /usr/local/share/geany -geany->app->docdir = /usr/local/share/doc/geany/html - - break trace watch - -disabled -d -d -break-disable -condition -c -c -break-cond -count -i -break-passcount -break-after - -script = -break-commands -fast trace = -break-insert -a -h - -" " is valid executable name, but not valid source name - gdb requires -certain suffixes (.c .c++ etc.); thus we can validate_column(file, TRUE) - -project open: scope message, then geany open message -project close: geany close message, then scope message - -gdb manual states that "which commands will work in the context of a running -thread is highly target dependent", but "commands that try to operate on -thread's stack will not work, on any target"; some commands are DS_SENDABLE -or DS_NOT_BUSY, even if unlikely to execute (like a global watchpoint) - -scid is required because all list positions are async-gdb-output volatile - -break filename may be specified as known source name (test.c) or absolute -name (/home/build/test.c); neither inferior nor gdb relative names work - -would be nice to have 02-thread-info to fully refresh the thread list, if we -missed a thread message, but needs some effort, and we compute gdb status -(and send commands) based on threads, so that'll be very tricky - -gdb recommends full refresh after error, but at least the errors from -refresh (04) commands errors must be ignored avoid an endless loop - -applying break/watchpoints to a thread is promlematic: -break-list does not -contain such info, and the thread identifiers are different on restart - -tested with "unsuccessful" program pty creation - no idea where the terminal -I/O comes from or goes to - -we don't reload terminal prefs on save settings since the signal is before -save and they are they are either empty (for new .conf file) or old - -scite mark "arrow" is actually triangle - ---all | --thread-group N commands: - -exec-continue - -exec-interrupt - -exec-run - -"If the `--thread-group' options is specified, then all threads in that -thread group are resumed." - -*stopped "all" means from this group or everything? - -running "all" does not specify a thread/group; the first running is "all", -others are thread - but that's from observation, gdb.info says nothing diff -Nru geany-plugins-1.24.0+20140222+git/scope/src/Makefile.in geany-plugins-1.24.1+dfsg/scope/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/scope/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,1047 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/vars.docs.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = scope/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +scope_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) +am_scope_la_OBJECTS = scope_la-break.lo scope_la-conterm.lo \ + scope_la-debug.lo scope_la-gtk216.lo scope_la-inspect.lo \ + scope_la-local.lo scope_la-memory.lo scope_la-menu.lo \ + scope_la-parse.lo scope_la-plugme.lo scope_la-prefs.lo \ + scope_la-program.lo scope_la-register.lo scope_la-scope.lo \ + scope_la-stack.lo scope_la-thread.lo scope_la-tooltip.lo \ + scope_la-utils.lo scope_la-views.lo scope_la-watch.lo \ + scope_la-scptreedata.lo scope_la-scptreestore.lo +scope_la_OBJECTS = $(am_scope_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +scope_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(scope_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(scope_la_SOURCES) +DIST_SOURCES = $(scope_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +geanyplugins_LTLIBRARIES = scope.la +plugin = scope +scope_la_SOURCES = \ + break.c \ + break.h \ + common.h \ + conterm.c \ + conterm.h \ + debug.c \ + debug.h \ + gtk216.c \ + gtk216.h \ + inspect.c \ + inspect.h \ + local.c \ + local.h \ + memory.c \ + memory.h \ + menu.c \ + menu.h \ + parse.c \ + parse.h \ + plugme.c \ + plugme.h \ + prefs.c \ + prefs.h \ + program.c \ + program.h \ + register.c \ + register.h \ + scope.c \ + scope.h \ + stack.c \ + stack.h \ + thread.c \ + thread.h \ + tooltip.c \ + tooltip.h \ + utils.c \ + utils.h \ + views.c \ + views.h \ + watch.c \ + watch.h \ + store.h \ + store/scptreedata.h \ + store/scptreedata.c \ + store/scptreestore.h \ + store/scptreestore.c + +scope_la_LIBADD = $(COMMONLIBS) $(VTE_LIBS) $(PTY_LIBS) +scope_la_CFLAGS = $(AM_CFLAGS) $(VTE_CFLAGS) \ + -DPLUGINDATADIR=\"$(plugindatadir)\" \ + -DPLUGINHTMLDOCDIR=\"$(plugindocdir)/html\" \ + -Wno-shadow + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign scope/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign scope/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/vars.docs.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +scope.la: $(scope_la_OBJECTS) $(scope_la_DEPENDENCIES) $(EXTRA_scope_la_DEPENDENCIES) + $(AM_V_CCLD)$(scope_la_LINK) -rpath $(geanypluginsdir) $(scope_la_OBJECTS) $(scope_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-break.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-conterm.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-debug.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-gtk216.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-inspect.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-local.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-memory.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-menu.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-parse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-plugme.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-prefs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-program.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-register.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-scope.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-scptreedata.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-scptreestore.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-stack.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-thread.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-tooltip.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-utils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-views.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scope_la-watch.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +scope_la-break.lo: break.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-break.lo -MD -MP -MF $(DEPDIR)/scope_la-break.Tpo -c -o scope_la-break.lo `test -f 'break.c' || echo '$(srcdir)/'`break.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-break.Tpo $(DEPDIR)/scope_la-break.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='break.c' object='scope_la-break.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-break.lo `test -f 'break.c' || echo '$(srcdir)/'`break.c + +scope_la-conterm.lo: conterm.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-conterm.lo -MD -MP -MF $(DEPDIR)/scope_la-conterm.Tpo -c -o scope_la-conterm.lo `test -f 'conterm.c' || echo '$(srcdir)/'`conterm.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-conterm.Tpo $(DEPDIR)/scope_la-conterm.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='conterm.c' object='scope_la-conterm.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-conterm.lo `test -f 'conterm.c' || echo '$(srcdir)/'`conterm.c + +scope_la-debug.lo: debug.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-debug.lo -MD -MP -MF $(DEPDIR)/scope_la-debug.Tpo -c -o scope_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-debug.Tpo $(DEPDIR)/scope_la-debug.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='debug.c' object='scope_la-debug.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-debug.lo `test -f 'debug.c' || echo '$(srcdir)/'`debug.c + +scope_la-gtk216.lo: gtk216.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-gtk216.lo -MD -MP -MF $(DEPDIR)/scope_la-gtk216.Tpo -c -o scope_la-gtk216.lo `test -f 'gtk216.c' || echo '$(srcdir)/'`gtk216.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-gtk216.Tpo $(DEPDIR)/scope_la-gtk216.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gtk216.c' object='scope_la-gtk216.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-gtk216.lo `test -f 'gtk216.c' || echo '$(srcdir)/'`gtk216.c + +scope_la-inspect.lo: inspect.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-inspect.lo -MD -MP -MF $(DEPDIR)/scope_la-inspect.Tpo -c -o scope_la-inspect.lo `test -f 'inspect.c' || echo '$(srcdir)/'`inspect.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-inspect.Tpo $(DEPDIR)/scope_la-inspect.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='inspect.c' object='scope_la-inspect.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-inspect.lo `test -f 'inspect.c' || echo '$(srcdir)/'`inspect.c + +scope_la-local.lo: local.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-local.lo -MD -MP -MF $(DEPDIR)/scope_la-local.Tpo -c -o scope_la-local.lo `test -f 'local.c' || echo '$(srcdir)/'`local.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-local.Tpo $(DEPDIR)/scope_la-local.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='local.c' object='scope_la-local.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-local.lo `test -f 'local.c' || echo '$(srcdir)/'`local.c + +scope_la-memory.lo: memory.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-memory.lo -MD -MP -MF $(DEPDIR)/scope_la-memory.Tpo -c -o scope_la-memory.lo `test -f 'memory.c' || echo '$(srcdir)/'`memory.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-memory.Tpo $(DEPDIR)/scope_la-memory.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory.c' object='scope_la-memory.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-memory.lo `test -f 'memory.c' || echo '$(srcdir)/'`memory.c + +scope_la-menu.lo: menu.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-menu.lo -MD -MP -MF $(DEPDIR)/scope_la-menu.Tpo -c -o scope_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-menu.Tpo $(DEPDIR)/scope_la-menu.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='menu.c' object='scope_la-menu.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-menu.lo `test -f 'menu.c' || echo '$(srcdir)/'`menu.c + +scope_la-parse.lo: parse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-parse.lo -MD -MP -MF $(DEPDIR)/scope_la-parse.Tpo -c -o scope_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-parse.Tpo $(DEPDIR)/scope_la-parse.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse.c' object='scope_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c + +scope_la-plugme.lo: plugme.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-plugme.lo -MD -MP -MF $(DEPDIR)/scope_la-plugme.Tpo -c -o scope_la-plugme.lo `test -f 'plugme.c' || echo '$(srcdir)/'`plugme.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-plugme.Tpo $(DEPDIR)/scope_la-plugme.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='plugme.c' object='scope_la-plugme.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-plugme.lo `test -f 'plugme.c' || echo '$(srcdir)/'`plugme.c + +scope_la-prefs.lo: prefs.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-prefs.lo -MD -MP -MF $(DEPDIR)/scope_la-prefs.Tpo -c -o scope_la-prefs.lo `test -f 'prefs.c' || echo '$(srcdir)/'`prefs.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-prefs.Tpo $(DEPDIR)/scope_la-prefs.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='prefs.c' object='scope_la-prefs.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-prefs.lo `test -f 'prefs.c' || echo '$(srcdir)/'`prefs.c + +scope_la-program.lo: program.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-program.lo -MD -MP -MF $(DEPDIR)/scope_la-program.Tpo -c -o scope_la-program.lo `test -f 'program.c' || echo '$(srcdir)/'`program.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-program.Tpo $(DEPDIR)/scope_la-program.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='program.c' object='scope_la-program.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-program.lo `test -f 'program.c' || echo '$(srcdir)/'`program.c + +scope_la-register.lo: register.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-register.lo -MD -MP -MF $(DEPDIR)/scope_la-register.Tpo -c -o scope_la-register.lo `test -f 'register.c' || echo '$(srcdir)/'`register.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-register.Tpo $(DEPDIR)/scope_la-register.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='register.c' object='scope_la-register.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-register.lo `test -f 'register.c' || echo '$(srcdir)/'`register.c + +scope_la-scope.lo: scope.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-scope.lo -MD -MP -MF $(DEPDIR)/scope_la-scope.Tpo -c -o scope_la-scope.lo `test -f 'scope.c' || echo '$(srcdir)/'`scope.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-scope.Tpo $(DEPDIR)/scope_la-scope.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='scope.c' object='scope_la-scope.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-scope.lo `test -f 'scope.c' || echo '$(srcdir)/'`scope.c + +scope_la-stack.lo: stack.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-stack.lo -MD -MP -MF $(DEPDIR)/scope_la-stack.Tpo -c -o scope_la-stack.lo `test -f 'stack.c' || echo '$(srcdir)/'`stack.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-stack.Tpo $(DEPDIR)/scope_la-stack.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stack.c' object='scope_la-stack.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-stack.lo `test -f 'stack.c' || echo '$(srcdir)/'`stack.c + +scope_la-thread.lo: thread.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-thread.lo -MD -MP -MF $(DEPDIR)/scope_la-thread.Tpo -c -o scope_la-thread.lo `test -f 'thread.c' || echo '$(srcdir)/'`thread.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-thread.Tpo $(DEPDIR)/scope_la-thread.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread.c' object='scope_la-thread.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-thread.lo `test -f 'thread.c' || echo '$(srcdir)/'`thread.c + +scope_la-tooltip.lo: tooltip.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-tooltip.lo -MD -MP -MF $(DEPDIR)/scope_la-tooltip.Tpo -c -o scope_la-tooltip.lo `test -f 'tooltip.c' || echo '$(srcdir)/'`tooltip.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-tooltip.Tpo $(DEPDIR)/scope_la-tooltip.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tooltip.c' object='scope_la-tooltip.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-tooltip.lo `test -f 'tooltip.c' || echo '$(srcdir)/'`tooltip.c + +scope_la-utils.lo: utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-utils.lo -MD -MP -MF $(DEPDIR)/scope_la-utils.Tpo -c -o scope_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-utils.Tpo $(DEPDIR)/scope_la-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utils.c' object='scope_la-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-utils.lo `test -f 'utils.c' || echo '$(srcdir)/'`utils.c + +scope_la-views.lo: views.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-views.lo -MD -MP -MF $(DEPDIR)/scope_la-views.Tpo -c -o scope_la-views.lo `test -f 'views.c' || echo '$(srcdir)/'`views.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-views.Tpo $(DEPDIR)/scope_la-views.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='views.c' object='scope_la-views.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-views.lo `test -f 'views.c' || echo '$(srcdir)/'`views.c + +scope_la-watch.lo: watch.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-watch.lo -MD -MP -MF $(DEPDIR)/scope_la-watch.Tpo -c -o scope_la-watch.lo `test -f 'watch.c' || echo '$(srcdir)/'`watch.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-watch.Tpo $(DEPDIR)/scope_la-watch.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='watch.c' object='scope_la-watch.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-watch.lo `test -f 'watch.c' || echo '$(srcdir)/'`watch.c + +scope_la-scptreedata.lo: store/scptreedata.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-scptreedata.lo -MD -MP -MF $(DEPDIR)/scope_la-scptreedata.Tpo -c -o scope_la-scptreedata.lo `test -f 'store/scptreedata.c' || echo '$(srcdir)/'`store/scptreedata.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-scptreedata.Tpo $(DEPDIR)/scope_la-scptreedata.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='store/scptreedata.c' object='scope_la-scptreedata.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-scptreedata.lo `test -f 'store/scptreedata.c' || echo '$(srcdir)/'`store/scptreedata.c + +scope_la-scptreestore.lo: store/scptreestore.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -MT scope_la-scptreestore.lo -MD -MP -MF $(DEPDIR)/scope_la-scptreestore.Tpo -c -o scope_la-scptreestore.lo `test -f 'store/scptreestore.c' || echo '$(srcdir)/'`store/scptreestore.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/scope_la-scptreestore.Tpo $(DEPDIR)/scope_la-scptreestore.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='store/scptreestore.c' object='scope_la-scptreestore.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(scope_la_CFLAGS) $(CFLAGS) -c -o scope_la-scptreestore.lo `test -f 'store/scptreestore.c' || echo '$(srcdir)/'`store/scptreestore.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/scope/src/store/ChangeLog geany-plugins-1.24.1+dfsg/scope/src/store/ChangeLog --- geany-plugins-1.24.0+20140222+git/scope/src/store/ChangeLog 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/src/store/ChangeLog 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -2013-09-29 Dimitar Zhekov - - * scptreestore.c, scptreestore.h, scptreestore.html: - Added scp_tree_store_foreach(). - * speed.c: - Added command line arguments. - Different default # of searches for >= 1000 elements. - Level 2: is #define, speed test fix. - * scptreestore.html: - Increased version to 0.86. - - -2013-09-20 Dimitar Zhekov - - * scptreestore.c, scptreestore.h, scptreestore.html: - Added scp_tree_store_register_dynamic(). - * scptreestore.html, fullspeed.html: - Moved the full speed test results to a separate file. - Increased version to 0.85. - * speed.c: - Replaced // with /* */ for glib/gtk+ compliance. - - -2013-05-16 Dimitar Zhekov - - * scptreestore.c, scptreestore.h: - Moved scp_tree_store_iter_tell() from Extra to Store, it's required - to insert before/after and move. - Added scp_tree_store_traverse(). - * scptreestore.html: - Documentation and speed test results for scp_tree_store_traverse(). - Increased version to 0.84. - * speed.c: - Added speed test for scp_tree_store_traverse(). diff -Nru geany-plugins-1.24.0+20140222+git/scope/src/store/fullspeed.html geany-plugins-1.24.1+dfsg/scope/src/store/fullspeed.html --- geany-plugins-1.24.0+20140222+git/scope/src/store/fullspeed.html 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/src/store/fullspeed.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,279 +0,0 @@ - - - - - -ScpTreeStore full speed test - - - - - -

ScpTreeStore

- -

Full speed test

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Unsorted storeRow countGtkTreeStoreScpTreeStoreTimes
 
top-level insert 250.0000.000
top-level set 250.0000.000
top-level remove 250.0000.000
top-level insert with values 250.0000.000
top-level linear search double250.0000.00025
top-level linear search string250.0030.00125
top-level model foreach 250.0000.00025
top-level store traverse 25n/a 0.00025
sublevel 1 insert 250.0000.000
sublevel 1 set 250.0000.000
sublevel 1 remove 250.0000.000
sublevel 1 insert_with values 250.0000.000
both levels model foreach 250.0000.00025
both levels store traverse 25n/a 0.00025
both levels quick sort double 250.0000.000
both levels quick sort string 250.0010.001
 
top-level insert 1000.0000.000
top-level set 1000.0010.000
top-level remove 1000.0000.000
top-level insert with values 1000.0010.000
top-level linear search double1000.0050.000100
top-level linear search string1000.0290.016100
top-level model foreach 1000.0030.000100
top-level store traverse 100n/a 0.000100
sublevel 1 insert 1000.0000.000
sublevel 1 set 1000.0010.000
sublevel 1 remove 1000.0000.000
sublevel 1 insert with values 1000.0010.000
both levels model foreach 1000.0060.000100
both levels store traverse 100n/a 0.000100
both levels quick sort double 1000.0010.000
both levels quick sort string 1000.0060.004
 
top-level insert 2500.0010.001
top-level set 2500.0010.001
top-level remove 2500.0010.001
top-level insert with values 2500.0010.001
top-level linear search double2500.0350.001250
top-level linear search string2500.2200.102250
top-level model foreach 2500.0190.001250
top-level store traverse 250n/a 0.001250
sublevel 1 insert 2500.0010.001
sublevel 1 set 2500.0020.001
sublevel 1 remove 2500.0010.001
sublevel 1 insert with values 2500.0020.001
both levels model foreach 2500.0370.003250
both levels store traverse 250n/a 0.002250
both levels quick sort double 2500.0030.001
both levels quick sort string 2500.0180.014
 
top-level insert 5000.0020.001
top-level set 5000.0030.002
top-level remove 5000.0020.001
top-level insert with values 5000.0030.002
top-level linear search double5000.1240.005500
top-level linear search string5000.8630.432500
top-level model foreach 5000.0770.005500
top-level store traverse 500n/a 0.003500
sublevel 1 insert 5000.0020.002
sublevel 1 set 5000.0030.002
sublevel 1 remove 5000.0020.001
sublevel 1 insert with values 5000.0030.002
both levels model foreach 5000.1350.010500
both levels store traverse 500n/a 0.007500
both levels quick sort double 5000.0060.001
both levels quick sort string 5000.0430.033
 
top-level insert 10000.0040.003
top-level set 10000.0060.003
top-level remove 10000.0040.002
top-level insert with values 10000.0070.004
top-level linear search double10000.1810.007350
top-level linear search string10001.2200.582350
top-level model foreach 10000.1040.007350
top-level store traverse 1000n/a 0.005350
sublevel 1 insert 10000.0050.004
sublevel 1 set 10000.0080.004
sublevel 1 remove 10000.0060.003
sublevel 1 insert with values 10000.0080.005
both levels model foreach 10000.2080.015350
both levels store traverse 1000n/a 0.011350
both levels quick sort double 10000.0150.003
both levels quick sort string 10000.0960.074
 
top-level insert 25000.0150.007
top-level set 25000.0250.008
top-level remove 25000.0170.007
top-level insert with values 25000.0250.011
top-level linear search double25001.0310.041770
top-level linear search string25006.8073.186770
top-level model foreach 25000.5740.042770
top-level store traverse 2500n/a 0.029770
sublevel 1 insert 25000.0330.013
sublevel 1 set 25000.0480.013
sublevel 1 remove 25000.0380.012
sublevel 1 insert with values 25000.0450.017
both levels model foreach 25001.1530.084770
both levels store traverse 2500n/a 0.060770
both levels quick sort double 25000.0430.009
both levels quick sort string 25000.2820.220
 
top-level insert 50000.082 0.017
top-level set 50000.106 0.016
top-level remove 50000.088 0.015
top-level insert with values 50000.102 0.023
top-level linear search double50003.825 0.164 1390
top-level linear search string500024.67811.8481390
top-level model foreach 50002.089 0.161 1390
top-level store traverse 5000n/a 0.117 1390
sublevel 1 insert 50000.1650.038
sublevel 1 set 50000.2000.036
sublevel 1 remove 50000.1820.035
sublevel 1 insert with values 50000.1960.044
both levels model foreach 50004.1740.3691390
both levels store traverse 5000n/a 0.2791390
both levels quick sort double 50000.0960.020
both levels quick sort string 50000.6300.490
 
top-level insert 100000.408 0.042
top-level set 100000.461 0.032
top-level remove 100000.428 0.039
top-level insert with values 100000.455 0.056
top-level linear search double1000016.0960.623 2510
top-level linear search string1000095.66843.3512510
top-level model foreach 100007.549 0.668 2510
top-level store traverse 10000n/a 0.509 2510
sublevel 1 insert 100000.824 0.124
sublevel 1 set 100001.159 0.110
sublevel 1 remove 100000.971 0.120
sublevel 1 insert with values 100001.039 0.140
both levels model foreach 10000n/a 3.2182510
both levels store traverse 10000n/a 2.2242510
both levels quick sort double 100000.218 0.046
both levels quick sort string 100001.383 1.083
 
Store sorted by doubleRow countGtkTreeStoreScpTreeStoreTimes
 
pre/apppend + set 250.0000.000
pre/append with values250.0000.000
binary search 25n/a 0.00025
 
pre/apppend + set 1000.0030.001
pre/append with values1000.0020.001
binary search 100n/a 0.000100
 
pre/apppend + set 2500.0150.003
pre/append with values2500.0140.001
binary search 250n/a 0.000250
 
pre/apppend + set 5000.0560.006
pre/append with values5000.0500.003
binary search 500n/a 0.000500
 
pre/apppend + set 10000.2140.013
pre/append with values10000.2060.006
binary search 1000n/a 0.0001000
 
pre/apppend + set 25001.3210.041
pre/append with values25001.2850.016
binary search 2500n/a 0.0012500
 
pre/apppend + set 50005.8690.104
pre/append with values50005.7910.037
binary search 5000n/a 0.0035000
 
pre/apppend + set 1000027.9210.317
pre/append with values1000027.1990.093
binary search 10000n/a 0.00610000
 
Store sorted by stringRow countGtkTreeStoreScpTreeStoreTimes
 
pre/apppend + set 250.0010.001
pre/append with values250.0010.000
binary search 25n/a 0.00025
 
pre/apppend + set 1000.0150.004
pre/append with values1000.0160.003
binary search 100n/a 0.002100
 
pre/apppend + set 2500.0880.012
pre/append with values2500.0840.008
binary search 250n/a 0.005250
 
pre/apppend + set 5000.3470.028
pre/append with values5000.3510.020
binary search 500n/a 0.012500
 
pre/apppend + set 10001.4140.066
pre/append with values10001.3160.044
binary search 1000n/a 0.0261000
 
pre/apppend + set 25008.7400.193
pre/append with values25008.9130.130
binary search 2500n/a 0.0762500
 
pre/apppend + set 500036.2330.433
pre/append with values500036.1310.294
binary search 5000n/a 0.1765000
 
pre/apppend + set 10000147.8081.046
pre/append with values10000146.9730.648
binary search 10000n/a 0.37310000
- -

Notes:

-
    -
  • pre/append = 50% prepend, 50% append
  • -
  • linear search = gtk_tree_model_iter_{first,next} / scp_tree_store_search
  • -
  • model/store foreach = gtk_tree_model_foreach / scp_tree_store_foreach
  • -
  • top-level only quick sort is always 2x faster
  • -
  • all defensive checks are enabled
  • -
  • all string tests are with utf8 collation
  • -
  • GtkListStore speed is practically identical to GtkTreeStore.
  • -
- - - diff -Nru geany-plugins-1.24.0+20140222+git/scope/src/store/scptreestore.html geany-plugins-1.24.1+dfsg/scope/src/store/scptreestore.html --- geany-plugins-1.24.0+20140222+git/scope/src/store/scptreestore.html 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/src/store/scptreestore.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,530 +0,0 @@ - - - - - -ScpTreeStore - - - - - - - -

ScpTreeStore

- -

ScpTreeStore - an array-based GtkTreeStore/GtkListStore like object.

- -
- -

Description

- -

ScpTreeStore is a GtkTreeStore/GtkListStore object, based entitely on arrays. In -particular:

- -
    -
  • The column values for a row are stored in a C array
  • -
  • The column sort headers are stored in a C array
  • -
  • The rows are stored in GPtrArray-s.
  • -
- -

Using arrays for the column headers and row data would probably be beneficial for -GtkTreeStore and GtkListStore too, leading to faster and smaller code.

- -

ScpTreeStore implements GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest, GtkTreeSortable -and GtkBuildable. The functions that implement these interfaces are public, so you can invoke -them directly, without type-casting the store an interface (except for the GtkBuildable -functions, which are never invoked directly).

- -
- -

Synopsis

- -

The functions identical to their GtkTreeStore or interface counterparts, as well as the -obvious funtions and macros, are listed without descriptions.

- -

The GtkTreeStore behviour described below applies to GtkListStore too (where applicable). -

- -

#include <gtk/gtk.h>
-#include "scptreestore.h"

- -

/* Store */
-ScpTreeStore *scp_tree_store_new(gboolean sublevels, gint -n_columns, ...);
-ScpTreeStore *scp_tree_store_newv(gboolean sublevels, gint -n_columns, GType *types);
-gboolean scp_tree_store_set_column_types(ScpTreeStore *store, gint n_columns, GType *types);
-void scp_tree_store_set_utf8_collate(ScpTreeStore -*store, gint column, gboolean collate);
-void scp_tree_store_set_valuesv(ScpTreeStore *store, GtkTreeIter *iter, gint *columns, GValue -*values, gint n_values);
-void scp_tree_store_set_value(ScpTreeStore *store, GtkTreeIter *iter, gint column, GValue -*value);
-void scp_tree_store_set_valist(ScpTreeStore *store, GtkTreeIter *iter, va_list ap);
-void scp_tree_store_set(ScpTreeStore *store, GtkTreeIter *iter, ...);
-gboolean scp_tree_store_remove(ScpTreeStore *store, -GtkTreeIter *iter);
-void scp_tree_store_insert(ScpTreeStore *store, GtkTreeIter -*iter, GtkTreeIter *parent, gint position);
-#define scp_tree_store_prepend(store, iter, parent)
-#define scp_tree_store_append(store, iter, parent)
-void scp_tree_store_insert_with_valuesv(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*parent, gint position, gint *columns, GValue *values, gint n_values);
-#define scp_tree_store_prepend_with_valuesv(store, iter, parent, columns, values, n_values)
-#define scp_tree_store_append_with_valuesv(store, iter, parent, columns, values, n_values)
-void scp_tree_store_insert_with_valist(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*parent, gint position, va_list ap);
-#define scp_tree_store_prepend_with_valist(store, iter, parent, ap)
-#define scp_tree_store_append_with_valist(store, iter, parent, ap)
-void scp_tree_store_insert_with_values(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*parent, gint position, ...);
-#define scp_tree_store_prepend_with_values(store, iter, parent, ...)
-#define scp_tree_store_append_with_values(store, iter, parent, ...)
-void scp_tree_store_get_valist(ScpTreeStore *store, -GtkTreeIter *iter, va_list var_args);
-void scp_tree_store_get(ScpTreeStore *store, GtkTreeIter -*iter, ...);
-gboolean scp_tree_store_is_ancestor(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*descendant);
-gint scp_tree_store_iter_depth(ScpTreeStore *store, GtkTreeIter *iter);
-void scp_tree_store_clear_children(ScpTreeStore -*store, GtkTreeIter *parent, gboolean emit_subsignals);
-#define scp_tree_store_clear(store)
-gboolean scp_tree_store_iter_is_valid(ScpTreeStore *store, GtkTreeIter *iter);
-void scp_tree_store_reorder(ScpTreeStore *store, GtkTreeIter *parent, gint *new_order);
-void scp_tree_store_swap(ScpTreeStore *store, GtkTreeIter *a, GtkTreeIter *b);
-void scp_tree_store_move(ScpTreeStore *store, GtkTreeIter -*iter, gint position);
-

- -

/* Model */
-GtkTreeModelFlags scp_tree_store_get_flags(ScpTreeStore *store);
-gint scp_tree_store_get_n_columns(ScpTreeStore *store);
-GType scp_tree_store_get_column_type(ScpTreeStore *store, gint index);
-gboolean scp_tree_store_get_iter(ScpTreeStore *store, GtkTreeIter *iter, GtkTreePath *path);
-GtkTreePath *scp_tree_store_get_path(ScpTreeStore *store, GtkTreeIter *iter);
-void scp_tree_store_get_value(ScpTreeStore *model, GtkTreeIter *iter, gint column, GValue -*value);
-gboolean scp_tree_store_iter_next(ScpTreeStore *store, GtkTreeIter *iter);
-gboolean scp_tree_store_iter_previous(ScpTreeStore -*store, GtkTreeIter *iter);
-gboolean scp_tree_store_iter_children(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*parent);
-gboolean scp_tree_store_iter_has_child(ScpTreeStore *store, GtkTreeIter *iter);
-gint scp_tree_store_iter_n_children(ScpTreeStore *store, GtkTreeIter *iter);
-gboolean scp_tree_store_iter_nth_child(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*parent, gint n);
-#define scp_tree_store_get_iter_first(store, iter)
-gboolean scp_tree_store_iter_parent(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter -*child);
-void scp_tree_store_foreach(ScpTreeStore *store, GtkTreeModelForeachFunc func, gpointer -gdata);
-

- -

/* DND */
-gboolean scp_tree_store_row_draggable(ScpTreeStore *store, GtkTreePath *path);
-gboolean scp_tree_store_drag_data_delete(ScpTreeStore *store, GtkTreePath *path);
-gboolean scp_tree_store_drag_data_get(ScpTreeStore *store, GtkTreePath *path, GtkSelectionData -*selection_data);
-gboolean scp_tree_store_drag_data_received(ScpTreeStore *store, GtkTreePath *dest, -GtkSelectionData *selection_data);
-gboolean scp_tree_store_row_drop_possible(ScpTreeStore *store, GtkTreePath *dest_path, -GtkSelectionData *selection_data);
-

- -

/* Sortable */
-gboolean scp_tree_store_get_sort_column_id(ScpTreeStore *store, gint *sort_column_id, -GtkSortType *order);
-void scp_tree_store_set_sort_column_id(ScpTreeStore *store, gint sort_column_id, GtkSortType -order);
-void scp_tree_store_set_sort_func(ScpTreeStore *store, gint sort_column_id, -GtkTreeIterCompareFunc func, gpointer data, GDestroyNotify destroy);
-void scp_tree_store_set_default_sort_func(ScpTreeStore *store, GtkTreeIterCompareFunc func, -gpointer data, GDestroyNotify destroy);
-gboolean scp_tree_store_has_default_sort_func(ScpTreeStore *store);
-

- -

/* Extra */
-void scp_tree_store_set_allocation(ScpTreeStore -*store, guint toplevel_reserved, guint sublevel_reserved, gboolean sublevel_discard);
-gint scp_tree_store_compare_func(ScpTreeStore *store, -GtkTreeIter *a, GtkTreeIter *b, gpointer data);
-gboolean scp_tree_store_iter_seek(ScpTreeStore *store, -GtkTreeIter *iter, gint position);
-gint scp_tree_store_iter_tell(ScpTreeStore *store, GtkTreeIter *iter);
-gboolean scp_tree_store_search(ScpTreeStore *store, -gboolean sublevels, gboolean linear_order, GtkTreeIter *iter, GtkTreeIter *parent, gint column, -...);
-typedef gint (*ScpTreeStoreTraverseFunc)(ScpTreeStore -*store, GtkTreeIter *iter, gpointer gdata);
-gboolean scp_tree_store_traverse(ScpTreeStore *store, -gboolean sublevels, GtkTreeIter *iter, GtkTreeIter *parent, ScpTreeStoreTraverseFunc func, -gpointer gdata); -

- -
- -

scp_tree_store_new()
-scp_tree_store_newv()

- -

ScpTreeStore *scp_tree_store_new(gboolean sublevels, gint n_columns, ...);
-ScpTreeStore *scp_tree_store_newv(gboolean sublevels, gint n_columns, GType *types);

- -
The sublevels parameter determines whether ScpTreeStore behaves as GtkTreeStore or -GtkListStore:
-
sublevels = TRUE: tree-like structure
-sublevels = FALSE: list-like structure.
-

- -
- -

scp_tree_store_insert()

- -

void scp_tree_store_insert(ScpTreeStore *store, GtkTreeIter *iter, GtkTreeIter *parent, -gint position);

- -

position must be between -1 and N, where N is the number of rows at that level. -GtkTreeStore allows position > N and treats it as N (i.e. appends). To be precise, it -simply walks it's row-list either until position is reached or there are no more rows.

- -

If you insert a row in a sorted GtkTreeStore, and do not set a value for the sort column -(or for any column, if a non-standard sort function is being used), the row will remain where -you inserted it, possibly breaking the sort order. ScpTreeStore will sort such rows if needed. -

- -

When a row is being sorted as a result of an insert_with or set operation, GtkTreeStore -uses linear search, so this row always end up before the first row equal to it, if any. -ScpTreeStore uses binary search, and "If two iters compare as equal, their order in the sorted -model is undefined", as stated in the GtkTreeSortable documentation.

- -
- -

scp_tree_store_remove()

- -

void scp_tree_store_remove(ScpTreeStore *store, GtkTreeIter *iter);

- -

GtkTreeStore removes the children of iter (if any) from first to last, while ScpTreeStore -removes them from last to first. The GTK+ documentation does not specify any particular order. -

- -
- -

scp_tree_store_get_valist()
-scp_tree_store_get()

- -

void scp_tree_store_get_valist(ScpTreeStore *store, GtkTreeIter *iter, va_list -var_args);
-void scp_tree_store_get(ScpTreeStore *store, GtkTreeIter *iter, ...);

- -

Unlike the similar GtkTreeModel functions, these do not copy the strings or reference the -objects/boxeds, so the return values for these types (a) need not be freed/unreferenced, and -(b) may become invalid if the row is removed.

- -
- -

scp_tree_store_clear_children()

- -

void scp_tree_store_clear_children(ScpTreeStore *store, GtkTreeIter *parent, gboolean -emit_subsignals);

- -
Removes all rows under parent, from last to first.
-
emit_subsignals = FALSE: emit "row-removed" signals only -for the rows directly under parent
-emit_subsignals = TRUE: emit "row-removed" signals for all removed rows
-parent = NULL: remove the top-level rows.
-

- -
- -

scp_tree_store_clear()

- -

#define scp_tree_store_clear(store)

- -

gtk_tree_store_clear() emits "row-removed" signals not only for the top-level -rows, but for their all their children as well. ScpTreeStore follows that behaviour. Clearing -the store with scp_tree_store_clear_children(store, NULL, FALSE) is faster, though not -significantly.

- -

GtkTreeStore removes the rows from first to last, while ScpTreeStore removes them from last -to first. The GTK+ documentation does not specify any particular order.

- -
- -

void scp_tree_store_move()

- -

void scp_tree_store_move(ScpTreeStore *store, GtkTreeIter *iter, gint position);

- -
Moves the row pointed by iter to a new position in the same level.
-
position = -1: move row to the last position.
-

- -
- -

scp_tree_store_iter_previous()

- -

gboolean scp_tree_store_iter_previous(ScpTreeStore *store, GtkTreeIter *iter);

- -

gtk_tree_model_iter_previous() requires gtk+ 3.0.0 or later; scp_tree_model_iter_previous() -does not.

- -
- -

scp_tree_store_set_allocation()

- -

void scp_tree_store_set_reserved(ScpTreeStore *store, guint toplevel_reserved, guint -sublevel_reserved, gboolean sublevel_discard);

- -
Sets the "toplevel-reserved", "sublevel-reserved" and -"sublevel_discard" properties.
-
toplevel_reserved = 0: "toplevel-reserved" will not be -set (the default is 0 anyway).
-

- -
- -

scp_tree_store_set_utf8_collate()

- -

void scp_tree_store_set_utf8_collate(ScpTreeStore *store, gint column, gboolean -collate);

- -
Normally, all stores compare strings with g_utf8_collate(), which is linguistically -correct, but very slow. You can create a separate column with the string keys, of course, and -write a small compare function that does g_strcmp0(), but the side effects are that in a store -is sorted by a non-standard function, setting the value of any column causes a check if the -row is properly sorted, and ScpTreeStore's binary search can not be used.
-
collate = TRUE: use g_utf8_collate() to compare strings, only for -string columns
-collate = FALSE: use g_strcmp0() to compare strings, the above side effects mentioned -above. -
- -
- -

scp_tree_store_compare_func()

- -

gint scp_tree_store_compare_func(ScpTreeStore *store, GtkTreeIter *a, GtkTreeIter *b, -gpointer data);

- -
The default ScpTreeStore data comparision function for columns >= 0.
-
data = GINT_TO_POINTER(column_to_compare)
-

May NOT be used with GtkTreeStore and GtkListStore.
-Compatible with and type-castable to GtkTreeIterCompareFunc.

- -
- -

scp_tree_store_iter_seek()

- -

gboolean scp_tree_store_iter_seek(ScpTreeStore *store, GtkTreeIter *iter, gint -position);

- -
Seek to row at position in the same level.
-
position = -1: seek to the last row.
-

- -
- -

scp_tree_store_search()

- -

gboolean scp_tree_store_search(ScpTreeStore *store, gboolean sublevels, gboolean -linear_order, GtkTreeIter *iter, GtkTreeIter *parent, gint column, ...);

- -
Search the rows under parent for one whose column data matches a value.
-
sublevels = FALSE: search only the rows directly under parent
-sublevels = TRUE: search all children
-linear_order: always return the first match
-parent = NULL: search the top-level rows
-...: value to compare with, must match the column type.
-

If column is the current sort column, it's compare function is the default one, and -linear_order is FALSE, binary search will be used. Aside from that, the column -compare function is ignored, because it requires an iterator, not a value. For string columns, -utf8_collate is taken into account.

- -
- -

ScpTreeStoreTraverseFunc()

- -

gint ScpTreeStoreTraverseFunc(ScpTreeStore *store, GtkTreeIter *iter, gpointer gdata); -

- -
The callback function type for scp_tree_store_traverse(). Return values:
-
TRUE (or another positive value): stop iterating
-FALSE: continue iterating
--1 (or another negative value): remove the current element and continue.
- -

scp_tree_store_traverse()

- -

gboolean scp_tree_store_traverse(ScpTreeStore *store, gboolean sublevels, GtkTreeIter -*iter, GtkTreeIter *parent, ScpTreeStoreTraverseFunc func, gpointer gdata);

- -
Traverse the rows under parent.
-
iter: optional, may be NULL
-parent = NULL: traverse the top-level rows.
-

-
Return values:
-
TRUE and valid iter if func returns TRUE (or -another positive value)
-FALSE and invalid iter otherwise.
-

- -
- -

scp_tree_store_register_dynamic()

- -

scp_tree_store_register_dynamic(void);

- -

ScpTreeStore is written in a way that allows unloading the module which defines it, -provided that:

- -
    -
  • there are no stores in use
  • -
  • no attempts to create a store while the module is unloaded
  • -
  • this function is invoked once each time the module is (re)loaded, for example in it's -startup code.
  • -
- -
- -

Properties

- -

"sublevels" (gboolean, read/construct) - whether the store supports -sublevels.

- -

"toplevel-reserved" (gint, read/write) - number of pointers to preallocate for -the top-level array. Default = 0, GPtrArray allocates minimum 16.

- -

"sublevel-reserved" (gint, read/write) - number of pointers to preallocate the -sublevel arrays. Default = 0, GPtrArray allocates minimum 16.

- -

"sublevel-discard" (gboolean, read/write) - whether to discard a sublevel array -when the last row from that level is removed. Default = FALSE.

- -

The arrays are allocated when the first row at that level is being inserted. Setting -"-reserved" has no effect on any currently allocated arrays. The top-level array is -discarded only when the store is finalized. Thus, setting "toplevel-reserved" after -at least one row was inserted in the store has no effect.

- -

Notes

- -

Non-persistent iterators

- -

ScpTreeStore's iterators are non-persistent - that is, each operation which changes the -rows order may affect the iterators at that level. More specifically, the iterators work like -array indexes: for you have an iter_a for the 5th row, and remove the 3rd row, iter_a will now -point to the new 5th row (former 6th), or will become invalid, if there were 5 rows. Using -invalid iterators may generate warning messages, or simply crash the application (that applies -to GtkTreeStore as well).

- -

Obviously, appending to an unsorted store will not affect the existing iterators, -and you can predict the effects of all other operations - even for sorted stores, using -scp_tree_store_tell(). But it's easy to make mistakes, so if you need a persistent reference -to a row, it's better to try GtkTreeRowReference.

- -

GtkTreeModelFilter and GtkTreeModelSort use persistent iterators (if available) to cache -their GtkTreeRowReference-s. Although ScpTreeStore has a very fast path to iter, and is -generally quite fast, these models may still be slower.

- -

top-level "rows-reordered"

- -

void user_function(GtkTreeModel *tree_model, GtkTreePath *path, GtkTreeIter *iter, -gpointer new_order, gpointer user_data);

- -

From the GtkTreeModel documentation (at least gtk+ <= 3.6.4):

- -

"iter : a valid GtkTreeIter pointing to the node whose" [children have been -reordered?]

- -

When the top-level rows are being reordered, such iter may not be valid, because it must -point above the top. GtkTreeStore pass a pseudo-valid iter which is suitable for a few -operations, and so does ScpTreeStore, but you should not rely on that and check for path -depth = 0 instead.

- -
- -

Speed

- -

An unsorted ScpTreeStore is faster than GtkTreeStore, but the difference is not big (20% -on average, depending on the operation and number of elements), and not significant (< 0.5+ -seconds) for stores with less than 10000 elements. Normally, inserting into and removing from -a list is faster than using an array, but all store operations must emit a signal, containing -the row path (numeric index), which negates this advantage.

- -

The sorted gtk+ stores are slow, since they are based on lists, and sorting by a string -with utf-8 collation makes them even slower.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Store sorted by doubleRow countGtkTreeStoreScpTreeStoreTimes
 
pre/apppend + set 2500.0150.003
pre/append with values2500.0140.001
binary search 250n/a 0.000250
unsorted linear search2500.0350.001250
 
pre/apppend + set 25001.3210.041
pre/append with values25001.2850.016
binary search 2500n/a 0.0012500
unsorted linear search25001.0310.041770
 
Store sorted by stringRow countGtkTreeStoreScpTreeStoreTimes
 
pre/apppend + set 2500.0880.012
pre/append with values2500.0840.008
binary search 250n/a 0.005250
unsorted linear search2500.2200.102250
 
pre/apppend + set 25008.7400.193
pre/append with values25008.9130.130
binary search 2500n/a 0.0762500
unsorted linear search25006.8073.186770
- -

The full speed test is here. In general, a sorted ScpTreeStore -can be used as a normal data structure, which is not the case with GtkTree/ListStore.

- -
- -

Bugs

- -

Incomplete Glade support. You can include ScpTreeStore-s in .glade files with a text -editor, but editing such files with Glade will discard the stores.

- -

The linguistically correct string comparision is not well tested.

- -

Report bugs to <dimitar.zhekov@gmail.com>.

- -

Copyright

- -

Parts of DND, most defensive programming checks and most of the buildable implementation -are from GtkTreeStore.

- -

GtkTreeStore, Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford

- -

ScpTreeStore was written for the Scope plugin of Geany light IDE, which relies heavily on -stores.

- -

ScpTreeStore 0.85, Copyright (C) 2013 Dimitar Toshkov Zhekov

- -

ScpTreeStore is distributed 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.

- - - diff -Nru geany-plugins-1.24.0+20140222+git/scope/wscript_build geany-plugins-1.24.1+dfsg/scope/wscript_build --- geany-plugins-1.24.0+20140222+git/scope/wscript_build 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/scope/wscript_build 2014-04-12 14:28:39.000000000 +0000 @@ -28,18 +28,24 @@ includes = ['scope/src', 'scope/src/store'] if target_is_win32(bld): - datadir = '${G_PREFIX}/${GEANYPLUGINS_DATADIR}/geany-plugins/scope' + datadir_define = '${GEANYPLUGINS_DATADIR}/geany-plugins/scope' + datadir = '${G_PREFIX}/%s' % datadir_define docdir = 'doc/plugins/scope' - htmldocdir = '${G_PREFIX}/%s/html' % docdir + htmldocdir_define = '%s/html' % docdir + htmldocdir = '${G_PREFIX}/%s' % htmldocdir_define libraries = [] else: datadir = '${GEANYPLUGINS_DATADIR}/geany-plugins/scope' + datadir_define = datadir docdir = '${DOCDIR}/scope' htmldocdir = '%s/html' % docdir + htmldocdir_define = htmldocdir libraries = ['VTE', 'UTIL'] -defines = [ subst_vars('PLUGINDATADIR="' + datadir + '"', bld.env).replace("\\", "/"), - subst_vars('PLUGINHTMLDOCDIR="' + htmldocdir + '"', bld.env).replace("\\", "/")] +defines = [ + subst_vars('PLUGINDATADIR="' + datadir_define + '"', bld.env).replace("\\", "/"), + subst_vars('PLUGINHTMLDOCDIR="' + htmldocdir_define + '"', bld.env).replace("\\", "/") +] build_plugin(bld, name, includes=includes, libraries=libraries, defines=defines) diff -Nru geany-plugins-1.24.0+20140222+git/shiftcolumn/ChangeLog geany-plugins-1.24.1+dfsg/shiftcolumn/ChangeLog --- geany-plugins-1.24.0+20140222+git/shiftcolumn/ChangeLog 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/shiftcolumn/ChangeLog 2014-04-12 14:28:39.000000000 +0000 @@ -1,3 +1,7 @@ +2013-03-28 Shankhoneer Chakrovarty + + * src/shiftcolumn.c: Removed default keybinding + 2011-04-25 Frank Lanitz * src/shiftcolumn.c: Fix a maybe uninitialized usage of a variable. diff -Nru geany-plugins-1.24.0+20140222+git/shiftcolumn/Makefile.in geany-plugins-1.24.1+dfsg/shiftcolumn/Makefile.in --- geany-plugins-1.24.0+20140222+git/shiftcolumn/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/shiftcolumn/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = shiftcolumn +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = shiftcolumn +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign shiftcolumn/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign shiftcolumn/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/shiftcolumn/README geany-plugins-1.24.1+dfsg/shiftcolumn/README --- geany-plugins-1.24.0+20140222+git/shiftcolumn/README 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/shiftcolumn/README 2014-04-12 14:28:39.000000000 +0000 @@ -5,7 +5,7 @@ About ----- -This plugin allows you to move blocks of text horizontally +This plugin allows you to move blocks of text horizontally in left or right direction skipping one character at a time. Requirements ------------ @@ -32,8 +32,7 @@ ----- After installed successfully, load the plugin in Geany's plugin manager and a new menu item in the Tools menu will appear. Alternatively, you can -assign a keyboard shortcut in Geany's preferences dialog. By default -the mappings are to 9 and 0 +assign a keyboard shortcut in Geany's preferences dialog. Known issues diff -Nru geany-plugins-1.24.0+20140222+git/shiftcolumn/src/Makefile.in geany-plugins-1.24.1+dfsg/shiftcolumn/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/shiftcolumn/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/shiftcolumn/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = shiftcolumn/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +shiftcolumn_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_shiftcolumn_la_OBJECTS = shiftcolumn.lo +shiftcolumn_la_OBJECTS = $(am_shiftcolumn_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(shiftcolumn_la_SOURCES) +DIST_SOURCES = $(shiftcolumn_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = shiftcolumn.la +shiftcolumn_la_SOURCES = shiftcolumn.c +shiftcolumn_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign shiftcolumn/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign shiftcolumn/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +shiftcolumn.la: $(shiftcolumn_la_OBJECTS) $(shiftcolumn_la_DEPENDENCIES) $(EXTRA_shiftcolumn_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(shiftcolumn_la_OBJECTS) $(shiftcolumn_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shiftcolumn.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/shiftcolumn/src/shiftcolumn.c geany-plugins-1.24.1+dfsg/shiftcolumn/src/shiftcolumn.c --- geany-plugins-1.24.0+20140222+git/shiftcolumn/src/shiftcolumn.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/shiftcolumn/src/shiftcolumn.c 2014-04-12 14:28:39.000000000 +0000 @@ -397,9 +397,9 @@ /* setup keybindings */ keybindings_set_item(plugin_key_group, KB_SHIFT_LEFT, kb_shift_left, - GDK_9, GDK_CONTROL_MASK, "shift_left", _("Shift Left"), menu_item_shift_left); + 0, GDK_CONTROL_MASK, "shift_left", _("Shift Left"), menu_item_shift_left); keybindings_set_item(plugin_key_group, KB_SHIFT_RIGHT, kb_shift_right, - GDK_0, GDK_CONTROL_MASK, "shift_right", _("Shift Right"), menu_item_shift_right); + 0, GDK_CONTROL_MASK, "shift_right", _("Shift Right"), menu_item_shift_right); } void plugin_cleanup(void){ diff -Nru geany-plugins-1.24.0+20140222+git/spellcheck/Makefile.in geany-plugins-1.24.1+dfsg/spellcheck/Makefile.in --- geany-plugins-1.24.0+20140222+git/spellcheck/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/spellcheck/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = spellcheck +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = spellcheck +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign spellcheck/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign spellcheck/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/spellcheck/src/gui.c geany-plugins-1.24.1+dfsg/spellcheck/src/gui.c --- geany-plugins-1.24.0+20140222+git/spellcheck/src/gui.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/spellcheck/src/gui.c 2014-04-12 14:28:39.000000000 +0000 @@ -297,7 +297,7 @@ search_word = g_strdup(word); /* ignore numbers or words starting with digits and non-text */ - if (! NZV(search_word) || isdigit(*search_word) || ! sc_speller_is_text(doc, pos)) + if (EMPTY(search_word) || isdigit(*search_word) || ! sc_speller_is_text(doc, pos)) { g_free(search_word); return; diff -Nru geany-plugins-1.24.0+20140222+git/spellcheck/src/Makefile.in geany-plugins-1.24.1+dfsg/spellcheck/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/spellcheck/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/spellcheck/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,843 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +@HAVE_ENCHANT_1_5_TRUE@am__append_1 = -DHAVE_ENCHANT_1_5 +subdir = spellcheck/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +spellcheck_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_spellcheck_la_OBJECTS = spellcheck_la-gui.lo \ + spellcheck_la-speller.lo spellcheck_la-scplugin.lo +spellcheck_la_OBJECTS = $(am_spellcheck_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +spellcheck_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(spellcheck_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(spellcheck_la_SOURCES) +DIST_SOURCES = $(spellcheck_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = spellcheck.la +spellcheck_la_SOURCES = \ + scplugin.h \ + speller.h \ + gui.h \ + gui.c \ + speller.c \ + scplugin.c + +spellcheck_la_CFLAGS = $(AM_CFLAGS) $(ENCHANT_CFLAGS) $(am__append_1) +spellcheck_la_LIBADD = \ + $(COMMONLIBS) \ + $(ENCHANT_LIBS) + +AM_CPPCHECKFLAGS = -DSCE_PAS_DEFAULT=0 +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign spellcheck/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign spellcheck/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +spellcheck.la: $(spellcheck_la_OBJECTS) $(spellcheck_la_DEPENDENCIES) $(EXTRA_spellcheck_la_DEPENDENCIES) + $(AM_V_CCLD)$(spellcheck_la_LINK) -rpath $(geanypluginsdir) $(spellcheck_la_OBJECTS) $(spellcheck_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spellcheck_la-gui.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spellcheck_la-scplugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spellcheck_la-speller.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +spellcheck_la-gui.lo: gui.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -MT spellcheck_la-gui.lo -MD -MP -MF $(DEPDIR)/spellcheck_la-gui.Tpo -c -o spellcheck_la-gui.lo `test -f 'gui.c' || echo '$(srcdir)/'`gui.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/spellcheck_la-gui.Tpo $(DEPDIR)/spellcheck_la-gui.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gui.c' object='spellcheck_la-gui.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -c -o spellcheck_la-gui.lo `test -f 'gui.c' || echo '$(srcdir)/'`gui.c + +spellcheck_la-speller.lo: speller.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -MT spellcheck_la-speller.lo -MD -MP -MF $(DEPDIR)/spellcheck_la-speller.Tpo -c -o spellcheck_la-speller.lo `test -f 'speller.c' || echo '$(srcdir)/'`speller.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/spellcheck_la-speller.Tpo $(DEPDIR)/spellcheck_la-speller.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='speller.c' object='spellcheck_la-speller.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -c -o spellcheck_la-speller.lo `test -f 'speller.c' || echo '$(srcdir)/'`speller.c + +spellcheck_la-scplugin.lo: scplugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -MT spellcheck_la-scplugin.lo -MD -MP -MF $(DEPDIR)/spellcheck_la-scplugin.Tpo -c -o spellcheck_la-scplugin.lo `test -f 'scplugin.c' || echo '$(srcdir)/'`scplugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/spellcheck_la-scplugin.Tpo $(DEPDIR)/spellcheck_la-scplugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='scplugin.c' object='spellcheck_la-scplugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(spellcheck_la_CFLAGS) $(CFLAGS) -c -o spellcheck_la-scplugin.lo `test -f 'scplugin.c' || echo '$(srcdir)/'`scplugin.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/spellcheck/src/scplugin.c geany-plugins-1.24.1+dfsg/spellcheck/src/scplugin.c --- geany-plugins-1.24.0+20140222+git/spellcheck/src/scplugin.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/spellcheck/src/scplugin.c 2014-04-12 14:28:39.000000000 +0000 @@ -219,7 +219,7 @@ GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); text = utils_get_locale_from_utf8(gtk_entry_get_text(GTK_ENTRY(item))); - if (NZV(text)) + if (!EMPTY(text)) gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), text); /* run it */ @@ -294,7 +294,7 @@ ui_widget_set_tooltip_text(entry_dir, _("Read additional dictionary files from this directory. " "For now, this only works with myspell dictionaries.")); - if (NZV(sc_info->dictionary_dir)) + if (! EMPTY(sc_info->dictionary_dir)) gtk_entry_set_text(GTK_ENTRY(entry_dir), sc_info->dictionary_dir); button = gtk_button_new(); diff -Nru geany-plugins-1.24.0+20140222+git/spellcheck/src/speller.c geany-plugins-1.24.1+dfsg/spellcheck/src/speller.c --- geany-plugins-1.24.0+20140222+git/spellcheck/src/speller.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/spellcheck/src/speller.c 2014-04-12 14:28:39.000000000 +0000 @@ -133,7 +133,7 @@ g_return_val_if_fail(word != NULL, 0); g_return_val_if_fail(start_pos >= 0 && end_pos >= 0, 0); - if (! NZV(word)) + if (EMPTY(word)) return 0; /* ignore numbers or words starting with digits */ @@ -338,7 +338,7 @@ const gchar *lang = g_getenv("LANG"); gchar *result = NULL; - if (NZV(lang)) + if (! EMPTY(lang)) { if (*lang == 'C' || *lang == 'c') lang = "en"; @@ -497,7 +497,7 @@ /* Check if the stored default dictionary is (still) available, fall back to the first * one in the list if not */ - if (! NZV(lang) || ! check_default_lang()) + if (EMPTY(lang) || ! check_default_lang()) { if (sc_info->dicts->len > 0) { @@ -510,7 +510,7 @@ } /* Request new dict object */ - if (NZV(lang)) + if (! EMPTY(lang)) sc_speller_dict = enchant_broker_request_dict(sc_speller_broker, lang); else sc_speller_dict = NULL; diff -Nru geany-plugins-1.24.0+20140222+git/tableconvert/Makefile.in geany-plugins-1.24.1+dfsg/tableconvert/Makefile.in --- geany-plugins-1.24.0+20140222+git/tableconvert/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/tableconvert/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = tableconvert +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = tableconvert +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tableconvert/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tableconvert/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/tableconvert/src/Makefile.in geany-plugins-1.24.1+dfsg/tableconvert/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/tableconvert/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/tableconvert/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,802 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = tableconvert/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +tableconvert_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_tableconvert_la_OBJECTS = tableconvert.lo +tableconvert_la_OBJECTS = $(am_tableconvert_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(tableconvert_la_SOURCES) +DIST_SOURCES = $(tableconvert_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = tableconvert.la +tableconvert_la_SOURCES = tableconvert.c +tableconvert_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tableconvert/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign tableconvert/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +tableconvert.la: $(tableconvert_la_OBJECTS) $(tableconvert_la_DEPENDENCIES) $(EXTRA_tableconvert_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(tableconvert_la_OBJECTS) $(tableconvert_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tableconvert.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.html geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.html --- geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.html 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff diff -Nru geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.sql geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.sql --- geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.sql 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.sql 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff diff -Nru geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.tex geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.tex --- geany-plugins-1.24.0+20140222+git/tableconvert/testfiles/test.tex 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/tableconvert/testfiles/test.tex 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff -aaaa bbbbb ccccc ddddd fffff diff -Nru geany-plugins-1.24.0+20140222+git/test-driver geany-plugins-1.24.1+dfsg/test-driver --- geany-plugins-1.24.0+20140222+git/test-driver 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/test-driver 2014-04-13 17:12:44.000000000 +0000 @@ -0,0 +1,139 @@ +#! /bin/sh +# test-driver - basic testsuite driver script. + +scriptversion=2013-07-13.22; # UTC + +# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# +# 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, 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, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +# Make unconditional expansion of undefined variables an error. This +# helps a lot in preventing typo-related bugs. +set -u + +usage_error () +{ + echo "$0: $*" >&2 + print_usage >&2 + exit 2 +} + +print_usage () +{ + cat <$log_file 2>&1 +estatus=$? +if test $enable_hard_errors = no && test $estatus -eq 99; then + estatus=1 +fi + +case $estatus:$expect_failure in + 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; + 0:*) col=$grn res=PASS recheck=no gcopy=no;; + 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; + 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; + *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; + *:*) col=$red res=FAIL recheck=yes gcopy=yes;; +esac + +# Report outcome to console. +echo "${col}${res}${std}: $test_name" + +# Register the test result, and other relevant metadata. +echo ":test-result: $res" > $trs_file +echo ":global-test-result: $res" >> $trs_file +echo ":recheck: $recheck" >> $trs_file +echo ":copy-in-global-log: $gcopy" >> $trs_file + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff -Nru geany-plugins-1.24.0+20140222+git/treebrowser/Makefile.in geany-plugins-1.24.1+dfsg/treebrowser/Makefile.in --- geany-plugins-1.24.0+20140222+git/treebrowser/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/treebrowser/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README +subdir = treebrowser +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = treebrowser +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign treebrowser/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign treebrowser/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/treebrowser/src/Makefile.am geany-plugins-1.24.1+dfsg/treebrowser/src/Makefile.am --- geany-plugins-1.24.0+20140222+git/treebrowser/src/Makefile.am 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/treebrowser/src/Makefile.am 2014-04-12 14:28:39.000000000 +0000 @@ -6,4 +6,7 @@ treebrowser_la_CFLAGS = $(AM_CFLAGS) $(GIO_CFLAGS) treebrowser_la_LIBADD = $(COMMONLIBS) $(GIO_LIBS) +AM_CPPCHECKFLAGS = --suppress='deallocDealloc:$(srcdir)/treebrowser.c' +AM_CPPCHECKFLAGS += --suppress='doubleFree:$(srcdir)/treebrowser.c' + include $(top_srcdir)/build/cppcheck.mk diff -Nru geany-plugins-1.24.0+20140222+git/treebrowser/src/Makefile.in geany-plugins-1.24.1+dfsg/treebrowser/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/treebrowser/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/treebrowser/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,818 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = treebrowser/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +treebrowser_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_treebrowser_la_OBJECTS = treebrowser_la-treebrowser.lo +treebrowser_la_OBJECTS = $(am_treebrowser_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +treebrowser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(treebrowser_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \ + $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(treebrowser_la_SOURCES) +DIST_SOURCES = $(treebrowser_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = treebrowser.la +treebrowser_la_SOURCES = treebrowser.c +treebrowser_la_CFLAGS = $(AM_CFLAGS) $(GIO_CFLAGS) +treebrowser_la_LIBADD = $(COMMONLIBS) $(GIO_LIBS) +AM_CPPCHECKFLAGS = \ + --suppress='deallocDealloc:$(srcdir)/treebrowser.c' \ + --suppress='doubleFree:$(srcdir)/treebrowser.c' +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign treebrowser/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign treebrowser/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +treebrowser.la: $(treebrowser_la_OBJECTS) $(treebrowser_la_DEPENDENCIES) $(EXTRA_treebrowser_la_DEPENDENCIES) + $(AM_V_CCLD)$(treebrowser_la_LINK) -rpath $(geanypluginsdir) $(treebrowser_la_OBJECTS) $(treebrowser_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/treebrowser_la-treebrowser.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +treebrowser_la-treebrowser.lo: treebrowser.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(treebrowser_la_CFLAGS) $(CFLAGS) -MT treebrowser_la-treebrowser.lo -MD -MP -MF $(DEPDIR)/treebrowser_la-treebrowser.Tpo -c -o treebrowser_la-treebrowser.lo `test -f 'treebrowser.c' || echo '$(srcdir)/'`treebrowser.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/treebrowser_la-treebrowser.Tpo $(DEPDIR)/treebrowser_la-treebrowser.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='treebrowser.c' object='treebrowser_la-treebrowser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(treebrowser_la_CFLAGS) $(CFLAGS) -c -o treebrowser_la-treebrowser.lo `test -f 'treebrowser.c' || echo '$(srcdir)/'`treebrowser.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/treebrowser/src/treebrowser.c geany-plugins-1.24.1+dfsg/treebrowser/src/treebrowser.c --- geany-plugins-1.24.0+20140222+git/treebrowser/src/treebrowser.c 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/treebrowser/src/treebrowser.c 2014-04-12 14:28:39.000000000 +0000 @@ -295,7 +295,7 @@ } } - if (! NZV(gtk_entry_get_text(GTK_ENTRY(filter)))) + if (EMPTY(gtk_entry_get_text(GTK_ENTRY(filter)))) return TRUE; filters = g_strsplit(gtk_entry_get_text(GTK_ENTRY(filter)), ";", 0); @@ -344,7 +344,7 @@ const gchar *base_name = NULL; base_name = g_path_get_basename(filename); - if (! NZV(base_name)) + if (EMPTY(base_name)) return FALSE; if (CONFIG_SHOW_HIDDEN_FILES) @@ -389,7 +389,7 @@ else dir = geany->prefs->default_open_path; - if (NZV(dir)) + if (! EMPTY(dir)) return utils_get_locale_from_utf8(dir); return g_get_current_dir(); @@ -685,6 +685,7 @@ gtk_tree_path_free(tree_path); } } + g_free(bookmarks); } static gboolean @@ -726,7 +727,6 @@ static void fs_remove(gchar *root, gboolean delete_root) { - GDir *dir; gchar *path; const gchar *name; @@ -735,6 +735,7 @@ if (g_file_test(root, G_FILE_TEST_IS_DIR)) { + GDir *dir; dir = g_dir_open (root, 0, NULL); if (!dir) @@ -756,6 +757,7 @@ g_free(path); name = g_dir_read_name(dir); } + g_dir_close(dir); } else delete_root = TRUE; diff -Nru geany-plugins-1.24.0+20140222+git/updatechecker/Makefile.in geany-plugins-1.24.1+dfsg/updatechecker/Makefile.in --- geany-plugins-1.24.0+20140222+git/updatechecker/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/updatechecker/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = updatechecker +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = updatechecker +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign updatechecker/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign updatechecker/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/updatechecker/src/Makefile.in geany-plugins-1.24.1+dfsg/updatechecker/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/updatechecker/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/updatechecker/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,827 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = updatechecker/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +updatechecker_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am_updatechecker_la_OBJECTS = updatechecker_la-updatechecker.lo +updatechecker_la_OBJECTS = $(am_updatechecker_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +updatechecker_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(updatechecker_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(updatechecker_la_SOURCES) +DIST_SOURCES = $(updatechecker_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = updatechecker +geanyplugins_LTLIBRARIES = updatechecker.la +updatechecker_la_SOURCES = updatechecker.c +updatechecker_la_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -DGEANY_VERSION=\"$(GEANY_VERSION)\" \ + -DG_LOG_DOMAIN=\"Updatechecker\" + +updatechecker_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(UPDATECHECKER_CFLAGS) + +updatechecker_la_LIBADD = \ + $(COMMONLIBS) \ + $(UPDATECHECKER_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign updatechecker/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign updatechecker/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +updatechecker.la: $(updatechecker_la_OBJECTS) $(updatechecker_la_DEPENDENCIES) $(EXTRA_updatechecker_la_DEPENDENCIES) + $(AM_V_CCLD)$(updatechecker_la_LINK) -rpath $(geanypluginsdir) $(updatechecker_la_OBJECTS) $(updatechecker_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/updatechecker_la-updatechecker.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +updatechecker_la-updatechecker.lo: updatechecker.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(updatechecker_la_CPPFLAGS) $(CPPFLAGS) $(updatechecker_la_CFLAGS) $(CFLAGS) -MT updatechecker_la-updatechecker.lo -MD -MP -MF $(DEPDIR)/updatechecker_la-updatechecker.Tpo -c -o updatechecker_la-updatechecker.lo `test -f 'updatechecker.c' || echo '$(srcdir)/'`updatechecker.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/updatechecker_la-updatechecker.Tpo $(DEPDIR)/updatechecker_la-updatechecker.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='updatechecker.c' object='updatechecker_la-updatechecker.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(updatechecker_la_CPPFLAGS) $(CPPFLAGS) $(updatechecker_la_CFLAGS) $(CFLAGS) -c -o updatechecker_la-updatechecker.lo `test -f 'updatechecker.c' || echo '$(srcdir)/'`updatechecker.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: Binary files /tmp/CpX7UnuPPT/geany-plugins-1.24.0+20140222+git/waf and /tmp/BpMK8ffG3q/geany-plugins-1.24.1+dfsg/waf differ diff -Nru geany-plugins-1.24.0+20140222+git/webhelper/Makefile.in geany-plugins-1.24.1+dfsg/webhelper/Makefile.in --- geany-plugins-1.24.0+20140222+git/webhelper/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/webhelper/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,826 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog NEWS README TODO +subdir = webhelper +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +AUXFILES = TODO +SUBDIRS = src +plugin = webhelper +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign webhelper/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign webhelper/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/webhelper/src/Makefile.in geany-plugins-1.24.1+dfsg/webhelper/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/webhelper/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/webhelper/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,898 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = webhelper/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +webhelper_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_1) +am__objects_1 = webhelper_la-gwh-enum-types.lo +am__objects_2 = +am__objects_3 = webhelper_la-gwh-browser.lo \ + webhelper_la-gwh-keybindings.lo webhelper_la-gwh-plugin.lo \ + webhelper_la-gwh-settings.lo webhelper_la-gwh-utils.lo +am_webhelper_la_OBJECTS = $(am__objects_1) $(am__objects_2) \ + $(am__objects_3) $(am__objects_2) +webhelper_la_OBJECTS = $(am_webhelper_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +webhelper_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(webhelper_la_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(webhelper_la_SOURCES) +DIST_SOURCES = $(webhelper_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +plugin = webhelper +geanyplugins_LTLIBRARIES = webhelper.la +sources = gwh-browser.c \ + gwh-keybindings.c \ + gwh-plugin.c \ + gwh-settings.c \ + gwh-utils.c + +headers = gwh-browser.h \ + gwh-keybindings.h \ + gwh-plugin.h \ + gwh-settings.h \ + gwh-utils.h + +autogen_sources = gwh-enum-types.c +autogen_headers = gwh-enum-types.h +EXTRA_DIST = gwh-enum-types.c.tpl \ + gwh-enum-types.h.tpl + +webhelper_la_SOURCES = $(autogen_sources) \ + $(autogen_headers) \ + $(sources) \ + $(headers) + +webhelper_la_CPPFLAGS = $(AM_CPPFLAGS) \ + -I$(srcdir) -I$(builddir) \ + -DG_LOG_DOMAIN=\"WebHelper\" + +webhelper_la_CFLAGS = $(AM_CFLAGS) \ + $(WEBHELPER_CFLAGS) + +webhelper_la_LIBADD = $(COMMONLIBS) \ + $(WEBHELPER_LIBS) + +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign webhelper/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign webhelper/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +webhelper.la: $(webhelper_la_OBJECTS) $(webhelper_la_DEPENDENCIES) $(EXTRA_webhelper_la_DEPENDENCIES) + $(AM_V_CCLD)$(webhelper_la_LINK) -rpath $(geanypluginsdir) $(webhelper_la_OBJECTS) $(webhelper_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-browser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-enum-types.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-keybindings.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-settings.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/webhelper_la-gwh-utils.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +webhelper_la-gwh-enum-types.lo: gwh-enum-types.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-enum-types.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-enum-types.Tpo -c -o webhelper_la-gwh-enum-types.lo `test -f 'gwh-enum-types.c' || echo '$(srcdir)/'`gwh-enum-types.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-enum-types.Tpo $(DEPDIR)/webhelper_la-gwh-enum-types.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-enum-types.c' object='webhelper_la-gwh-enum-types.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-enum-types.lo `test -f 'gwh-enum-types.c' || echo '$(srcdir)/'`gwh-enum-types.c + +webhelper_la-gwh-browser.lo: gwh-browser.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-browser.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-browser.Tpo -c -o webhelper_la-gwh-browser.lo `test -f 'gwh-browser.c' || echo '$(srcdir)/'`gwh-browser.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-browser.Tpo $(DEPDIR)/webhelper_la-gwh-browser.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-browser.c' object='webhelper_la-gwh-browser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-browser.lo `test -f 'gwh-browser.c' || echo '$(srcdir)/'`gwh-browser.c + +webhelper_la-gwh-keybindings.lo: gwh-keybindings.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-keybindings.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-keybindings.Tpo -c -o webhelper_la-gwh-keybindings.lo `test -f 'gwh-keybindings.c' || echo '$(srcdir)/'`gwh-keybindings.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-keybindings.Tpo $(DEPDIR)/webhelper_la-gwh-keybindings.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-keybindings.c' object='webhelper_la-gwh-keybindings.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-keybindings.lo `test -f 'gwh-keybindings.c' || echo '$(srcdir)/'`gwh-keybindings.c + +webhelper_la-gwh-plugin.lo: gwh-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-plugin.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-plugin.Tpo -c -o webhelper_la-gwh-plugin.lo `test -f 'gwh-plugin.c' || echo '$(srcdir)/'`gwh-plugin.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-plugin.Tpo $(DEPDIR)/webhelper_la-gwh-plugin.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-plugin.c' object='webhelper_la-gwh-plugin.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-plugin.lo `test -f 'gwh-plugin.c' || echo '$(srcdir)/'`gwh-plugin.c + +webhelper_la-gwh-settings.lo: gwh-settings.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-settings.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-settings.Tpo -c -o webhelper_la-gwh-settings.lo `test -f 'gwh-settings.c' || echo '$(srcdir)/'`gwh-settings.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-settings.Tpo $(DEPDIR)/webhelper_la-gwh-settings.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-settings.c' object='webhelper_la-gwh-settings.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-settings.lo `test -f 'gwh-settings.c' || echo '$(srcdir)/'`gwh-settings.c + +webhelper_la-gwh-utils.lo: gwh-utils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -MT webhelper_la-gwh-utils.lo -MD -MP -MF $(DEPDIR)/webhelper_la-gwh-utils.Tpo -c -o webhelper_la-gwh-utils.lo `test -f 'gwh-utils.c' || echo '$(srcdir)/'`gwh-utils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/webhelper_la-gwh-utils.Tpo $(DEPDIR)/webhelper_la-gwh-utils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gwh-utils.c' object='webhelper_la-gwh-utils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(webhelper_la_CPPFLAGS) $(CPPFLAGS) $(webhelper_la_CFLAGS) $(CFLAGS) -c -o webhelper_la-gwh-utils.lo `test -f 'gwh-utils.c' || echo '$(srcdir)/'`gwh-utils.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +# These are generated in $(srcdir) because they are part of the distribution, +# and should anyway only be regenerated if the .tpl changes, which is a +# developer thing ,so if should be harmless. +$(srcdir)/gwh-enum-types.c: $(srcdir)/gwh-enum-types.c.tpl gwh-enum-types.h $(headers) + $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(headers:%=$(srcdir)/%) > $@ +$(srcdir)/gwh-enum-types.h: $(srcdir)/gwh-enum-types.h.tpl $(headers) + $(AM_V_GEN)$(GLIB_MKENUMS) --template $< $(headers:%=$(srcdir)/%) > $@ + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/wscript geany-plugins-1.24.1+dfsg/wscript --- geany-plugins-1.24.0+20140222+git/wscript 2014-02-22 14:06:39.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/wscript 2014-04-13 16:42:54.000000000 +0000 @@ -39,7 +39,6 @@ import os import tempfile -from glob import glob from waflib import Logs, Scripting, Utils from waflib.Tools import c_preproc from waflib.Errors import ConfigurationError @@ -51,7 +50,7 @@ check_cfg_cached, get_plugins, get_enabled_plugins, - get_svn_rev, + get_git_rev, install_docs, launch, load_intltool_if_available, @@ -94,9 +93,9 @@ args='--cflags --libs') set_lib_dir(conf) - # SVN/GIT detection - svn_rev = get_svn_rev(conf) - conf.define('REVISION', svn_rev, 1) + # GIT detection + revision = get_git_rev(conf) + conf.define('REVISION', revision, 1) # GTK/Geany versions geany_version = conf.check_cfg(modversion='geany') or 'Unknown' gtk_version = conf.check_cfg(modversion='gtk+-2.0') or 'Unknown' @@ -116,16 +115,16 @@ conf.write_config_header('config.h') # enable debug when compiling from VCS - if svn_rev > 0: - conf.env.append_value('CFLAGS', '-g -DDEBUG'.split()) # -DGEANY_DISABLE_DEPRECATED + if revision > 0: + conf.env.append_value('CFLAGS', '-g -DDEBUG'.split()) # -DGEANY_DISABLE_DEPRECATED # summary Logs.pprint('BLUE', 'Summary:') conf.msg('Install Geany Plugins ' + VERSION + ' in', conf.env['G_PREFIX']) conf.msg('Using GTK version', gtk_version) conf.msg('Using Geany version', geany_version) - if svn_rev > 0: - conf.msg('Compiling Subversion revision', svn_rev) + if revision > 0: + conf.msg('Compiling Git revision', revision) conf.msg('Plugins to compile', ' '.join(enabled_plugins)) @@ -203,6 +202,9 @@ # execute plugin specific option code opt.recurse(plugins, mandatory=False) + # Options + opt.add_option('--no-scm', action='store_true', default=False, + help='Disable SCM detection [default: No]', dest='no_scm') # Paths opt.add_option('--libdir', type='string', default='', help='object code libraries', dest='libdir') @@ -213,8 +215,8 @@ help='list plugins which can be built', dest='list_plugins') opt.add_option('--enable-plugins', action='store', default='', - help='plugins to be built [plugins in CSV format, e.g. "%(1)s,%(2)s"]' % \ - { '1' : plugins[0], '2' : plugins[1] }, dest='enable_plugins') + help='plugins to be built [plugins in CSV format, e.g. "%(1)s,%(2)s"]' % + {'1': plugins[0], '2': plugins[1]}, dest='enable_plugins') opt.add_option('--skip-plugins', action='store', default='', help='plugins which should not be built, ignored when --enable-plugins is set, same format as --enable-plugins', dest='skip_plugins') @@ -272,9 +274,9 @@ Logs.pprint('GREEN', 'The following targets can be chosen with the --enable-plugins option:') Logs.pprint('NORMAL', ' '.join(plugins)) - Logs.pprint('GREEN', \ - '\nTo compile only "%(1)s" and "%(2)s", use "./waf configure --enable-plugins=%(1)s,%(2)s".' % \ - { '1' : plugins[0], '2' : plugins[1] } ) + Logs.pprint('GREEN', + '\nTo compile only "%(1)s" and "%(2)s", use "./waf configure --enable-plugins=%(1)s,%(2)s".' % + {'1': plugins[0], '2': plugins[1]}) exit(0) @@ -299,7 +301,7 @@ if 'LINGUAS' in self.env: files = self.env['LINGUAS'] for po_filename in files.split(' '): - if os.path.exists ('po/%s.po' % po_filename): + if os.path.exists('po/%s.po' % po_filename): linguas += '%s ' % po_filename else: files = os.listdir('%s/po' % self.path.abspath()) @@ -312,27 +314,6 @@ file_h.close() -def create_installer(ctx): - """create the Windows installer (maintainer and Win32 only)""" - # must be called *after* everything has been installed - do_sign = os.path.exists('sign.bat') # private file to sign the binary files, not needed - def sign_binary(filename): - if do_sign: - ctx.exec_command('sign.bat %s' % filename) - - # strip all binaries - Logs.pprint('CYAN', 'Stripping %sfiles' % ('and signing binary ' if do_sign else '')) - install_dir = '%s-%s' % (APPNAME, VERSION) # should be ctx.env['G_PREFIX'] - files = glob(os.path.join(install_dir, 'lib', '*.dll')) - files.append(os.path.join(install_dir, 'lib\geany-plugins\geanylua\libgeanylua.dll')) - for filename in files: # sign the DLL files - ctx.exec_command('strip %s' % filename) - sign_binary(filename) - # create the installer - launch(ctx, 'makensis /V2 /NOCD build/geany-plugins.nsi', 'Creating the installer', 'CYAN') - sign_binary('geany-plugins-%s_setup.exe' % VERSION) - - def updatepo(ctx): """update the message catalogs for internationalization""" potfile = '%s.pot' % APPNAME diff -Nru geany-plugins-1.24.0+20140222+git/xmlsnippets/Makefile.in geany-plugins-1.24.1+dfsg/xmlsnippets/Makefile.in --- geany-plugins-1.24.0+20140222+git/xmlsnippets/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/xmlsnippets/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,825 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.auxfiles.mk \ + $(top_srcdir)/build/vars.docs.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(dist_plugindoc_DATA) AUTHORS COPYING \ + ChangeLog INSTALL NEWS README +subdir = xmlsnippets +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(plugindocdir)" +DATA = $(dist_plugindoc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +plugindocdir = $(docdir)/$(plugin) +htmldocdir = $(plugindocdir) +plugindatadir = $(pkgdatadir)/$(plugin) +pluginlibdir = $(pkglibdir)/$(plugin) +examplesdir = $(plugindatadir) +dist_plugindoc_DATA = \ + README \ + ChangeLog \ + NEWS \ + COPYING \ + AUTHORS \ + $(AUXFILES) + +EXTRA_DIST = \ + wscript_build \ + wscript_configure + +SUBDIRS = src +plugin = xmlsnippets +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign xmlsnippets/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign xmlsnippets/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.auxfiles.mk $(top_srcdir)/build/vars.docs.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-dist_plugindocDATA: $(dist_plugindoc_DATA) + @$(NORMAL_INSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(plugindocdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(plugindocdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(plugindocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(plugindocdir)" || exit $$?; \ + done + +uninstall-dist_plugindocDATA: + @$(NORMAL_UNINSTALL) + @list='$(dist_plugindoc_DATA)'; test -n "$(plugindocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(plugindocdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(plugindocdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-dist_plugindocDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-dist_plugindocDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-dist_plugindocDATA install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am \ + uninstall-dist_plugindocDATA + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -Nru geany-plugins-1.24.0+20140222+git/xmlsnippets/src/Makefile.in geany-plugins-1.24.1+dfsg/xmlsnippets/src/Makefile.in --- geany-plugins-1.24.0+20140222+git/xmlsnippets/src/Makefile.in 1970-01-01 00:00:00.000000000 +0000 +++ geany-plugins-1.24.1+dfsg/xmlsnippets/src/Makefile.in 2014-04-13 17:12:46.000000000 +0000 @@ -0,0 +1,811 @@ +# Makefile.in generated by automake 1.14.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +DIST_COMMON = $(top_srcdir)/build/vars.build.mk \ + $(top_srcdir)/build/cppcheck.mk $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/depcomp +subdir = xmlsnippets/src +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/geanypy/m4/ax_python_library.m4 \ + $(top_srcdir)/build/bundled/gpgme.m4 \ + $(top_srcdir)/build/addons.m4 $(top_srcdir)/build/autoclose.m4 \ + $(top_srcdir)/build/cflags.m4 $(top_srcdir)/build/codenav.m4 \ + $(top_srcdir)/build/commander.m4 $(top_srcdir)/build/common.m4 \ + $(top_srcdir)/build/cppcheck.m4 \ + $(top_srcdir)/build/debugger.m4 \ + $(top_srcdir)/build/defineformat.m4 \ + $(top_srcdir)/build/devhelp.m4 \ + $(top_srcdir)/build/expansions.m4 $(top_srcdir)/build/geany.m4 \ + $(top_srcdir)/build/geanydoc.m4 \ + $(top_srcdir)/build/geanyextrasel.m4 \ + $(top_srcdir)/build/geanygendoc.m4 \ + $(top_srcdir)/build/geanyinsertnum.m4 \ + $(top_srcdir)/build/geanylatex.m4 \ + $(top_srcdir)/build/geanylipsum.m4 \ + $(top_srcdir)/build/geanylua.m4 \ + $(top_srcdir)/build/geanymacro.m4 \ + $(top_srcdir)/build/geanyminiscript.m4 \ + $(top_srcdir)/build/geanynumberedbookmarks.m4 \ + $(top_srcdir)/build/geanypg.m4 $(top_srcdir)/build/geanyprj.m4 \ + $(top_srcdir)/build/geanypy.m4 \ + $(top_srcdir)/build/geanysendmail.m4 \ + $(top_srcdir)/build/geanyvc.m4 \ + $(top_srcdir)/build/geniuspaste.m4 \ + $(top_srcdir)/build/gproject.m4 $(top_srcdir)/build/gtk.m4 \ + $(top_srcdir)/build/i18n.m4 $(top_srcdir)/build/markdown.m4 \ + $(top_srcdir)/build/multiterm.m4 \ + $(top_srcdir)/build/pairtaghighlighter.m4 \ + $(top_srcdir)/build/pohelper.m4 \ + $(top_srcdir)/build/pretty-printer.m4 \ + $(top_srcdir)/build/scope.m4 \ + $(top_srcdir)/build/shiftcolumn.m4 \ + $(top_srcdir)/build/spellcheck.m4 \ + $(top_srcdir)/build/status.m4 \ + $(top_srcdir)/build/tableconvert.m4 \ + $(top_srcdir)/build/treebrowser.m4 \ + $(top_srcdir)/build/unittests.m4 \ + $(top_srcdir)/build/updatechecker.m4 \ + $(top_srcdir)/build/webhelper.m4 \ + $(top_srcdir)/build/xmlsnippets.m4 \ + $(top_srcdir)/build/cache/ax_python_devel.m4 \ + $(top_srcdir)/build/cache/glib-gettext.m4 \ + $(top_srcdir)/build/cache/intltool.m4 \ + $(top_srcdir)/build/cache/libtool.m4 \ + $(top_srcdir)/build/cache/ltoptions.m4 \ + $(top_srcdir)/build/cache/ltsugar.m4 \ + $(top_srcdir)/build/cache/ltversion.m4 \ + $(top_srcdir)/build/cache/lt~obsolete.m4 \ + $(top_srcdir)/build/cache/nls.m4 \ + $(top_srcdir)/build/cache/pkg.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(geanypluginsdir)" +LTLIBRARIES = $(geanyplugins_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +xmlsnippets_la_DEPENDENCIES = $(am__DEPENDENCIES_2) +am_xmlsnippets_la_OBJECTS = plugin.lo tests.lo test-stubs.lo \ + xmlsnippets.lo +xmlsnippets_la_OBJECTS = $(am_xmlsnippets_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(xmlsnippets_la_SOURCES) +DIST_SOURCES = $(xmlsnippets_la_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCLOSE_CFLAGS = @AUTOCLOSE_CFLAGS@ +AUTOCLOSE_LIBS = @AUTOCLOSE_LIBS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CHECK_CFLAGS = @CHECK_CFLAGS@ +CHECK_LIBS = @CHECK_LIBS@ +COMMANDER_CFLAGS = @COMMANDER_CFLAGS@ +COMMANDER_LIBS = @COMMANDER_LIBS@ +CPP = @CPP@ +CPPCHECK = @CPPCHECK@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFINEFORMAT_CFLAGS = @DEFINEFORMAT_CFLAGS@ +DEFINEFORMAT_LIBS = @DEFINEFORMAT_LIBS@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DEVHELP_CFLAGS = @DEVHELP_CFLAGS@ +DEVHELP_LIBS = @DEVHELP_LIBS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENCHANT_CFLAGS = @ENCHANT_CFLAGS@ +ENCHANT_LIBS = @ENCHANT_LIBS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GEANYGENDOC_CFLAGS = @GEANYGENDOC_CFLAGS@ +GEANYGENDOC_LIBS = @GEANYGENDOC_LIBS@ +GEANY_CFLAGS = @GEANY_CFLAGS@ +GEANY_LIBS = @GEANY_LIBS@ +GEANY_VERSION = @GEANY_VERSION@ +GENIUSPASTE_CFLAGS = @GENIUSPASTE_CFLAGS@ +GENIUSPASTE_LIBS = @GENIUSPASTE_LIBS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIO_CFLAGS = @GIO_CFLAGS@ +GIO_LIBS = @GIO_LIBS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GPGME_CFLAGS = @GPGME_CFLAGS@ +GPGME_CONFIG = @GPGME_CONFIG@ +GPGME_LIBS = @GPGME_LIBS@ +GP_CFLAGS = @GP_CFLAGS@ +GP_GTK_PACKAGE = @GP_GTK_PACKAGE@ +GP_GTK_VERSION = @GP_GTK_VERSION@ +GP_GTK_VERSION_MAJOR = @GP_GTK_VERSION_MAJOR@ +GREP = @GREP@ +GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@ +GTKSPELL_LIBS = @GTKSPELL_LIBS@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBMARKDOWN_CFLAGS = @LIBMARKDOWN_CFLAGS@ +LIBMARKDOWN_LIBS = @LIBMARKDOWN_LIBS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_CFLAGS = @LIBXML_CFLAGS@ +LIBXML_LIBS = @LIBXML_LIBS@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LOCALEDIR = @LOCALEDIR@ +LTLIBOBJS = @LTLIBOBJS@ +LUA_CFLAGS = @LUA_CFLAGS@ +LUA_LIBS = @LUA_LIBS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MARKDOWN_CFLAGS = @MARKDOWN_CFLAGS@ +MARKDOWN_LIBS = @MARKDOWN_LIBS@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +MSGMERGE = @MSGMERGE@ +MULTITERM_CFLAGS = @MULTITERM_CFLAGS@ +MULTITERM_LIBS = @MULTITERM_LIBS@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PTY_LIBS = @PTY_LIBS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_CPPFLAGS = @PYTHON_CPPFLAGS@ +PYTHON_EXTRA_LDFLAGS = @PYTHON_EXTRA_LDFLAGS@ +PYTHON_EXTRA_LIBS = @PYTHON_EXTRA_LIBS@ +PYTHON_LDFLAGS = @PYTHON_LDFLAGS@ +PYTHON_LIBRARY = @PYTHON_LIBRARY@ +PYTHON_SITE_PKG = @PYTHON_SITE_PKG@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RST2HTML = @RST2HTML@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +UPDATECHECKER_CFLAGS = @UPDATECHECKER_CFLAGS@ +UPDATECHECKER_LIBS = @UPDATECHECKER_LIBS@ +USE_NLS = @USE_NLS@ +VALAC = @VALAC@ +VERSION = @VERSION@ +VTE_CFLAGS = @VTE_CFLAGS@ +VTE_LIBS = @VTE_LIBS@ +WEBHELPER_CFLAGS = @WEBHELPER_CFLAGS@ +WEBHELPER_LIBS = @WEBHELPER_LIBS@ +XGETTEXT = @XGETTEXT@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +geanypluginsdir = @geanypluginsdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = \ + -DLOCALEDIR=\""$(LOCALEDIR)"\" \ + -DPREFIX=\""$(prefix)"\" \ + -DDOCDIR=\""$(docdir)"\" \ + -DGEANYPLUGINS_DATADIR=\""$(datadir)"\" \ + -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DLIBDIR=\""$(libdir)"\" \ + -DPKGLIBDIR=\""$(pkglibdir)"\" \ + $(GEANY_CFLAGS) \ + $(GP_CFLAGS) + +AM_LDFLAGS = -module -avoid-version +COMMONLIBS = \ + $(GEANY_LIBS) \ + $(INTLLIBS) + +geanyplugins_LTLIBRARIES = xmlsnippets.la +xmlsnippets_la_SOURCES = \ + plugin.c plugin.h \ + tests.c \ + test-stubs.c test-stubs.h \ + xmlsnippets.c xmlsnippets.h + +xmlsnippets_la_LIBADD = $(COMMONLIBS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign xmlsnippets/src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign xmlsnippets/src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/build/vars.build.mk $(top_srcdir)/build/cppcheck.mk: + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +install-geanypluginsLTLIBRARIES: $(geanyplugins_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(geanypluginsdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(geanypluginsdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(geanypluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(geanypluginsdir)"; \ + } + +uninstall-geanypluginsLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(geanyplugins_LTLIBRARIES)'; test -n "$(geanypluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(geanypluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(geanypluginsdir)/$$f"; \ + done + +clean-geanypluginsLTLIBRARIES: + -test -z "$(geanyplugins_LTLIBRARIES)" || rm -f $(geanyplugins_LTLIBRARIES) + @list='$(geanyplugins_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +xmlsnippets.la: $(xmlsnippets_la_OBJECTS) $(xmlsnippets_la_DEPENDENCIES) $(EXTRA_xmlsnippets_la_DEPENDENCIES) + $(AM_V_CCLD)$(LINK) -rpath $(geanypluginsdir) $(xmlsnippets_la_OBJECTS) $(xmlsnippets_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plugin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-stubs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tests.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmlsnippets.Plo@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done +@HAVE_CPPCHECK_FALSE@check-local: +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: + for dir in "$(DESTDIR)$(geanypluginsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-geanypluginsLTLIBRARIES + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-geanypluginsLTLIBRARIES + +.MAKE: check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \ + clean-geanypluginsLTLIBRARIES clean-generic clean-libtool \ + cscopelist-am ctags ctags-am distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-geanypluginsLTLIBRARIES \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-geanypluginsLTLIBRARIES + + +@HAVE_CPPCHECK_TRUE@check-cppcheck: $(srcdir) +@HAVE_CPPCHECK_TRUE@ $(CPPCHECK) \ +@HAVE_CPPCHECK_TRUE@ -q --template gcc --error-exitcode=2 \ +@HAVE_CPPCHECK_TRUE@ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \ +@HAVE_CPPCHECK_TRUE@ $(srcdir) + +@HAVE_CPPCHECK_TRUE@check-local: check-cppcheck + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: